Skip to content

Commit

Permalink
fix: opacityは不透明度だったので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih committed Dec 20, 2024
1 parent 53b1b32 commit 0b23beb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4549,7 +4549,7 @@ export interface Locale extends ILocale {
/**
* 透明度
*/
"opacity": string;
"transparency": string;
/**
* サーバールール
*/
Expand Down
2 changes: 1 addition & 1 deletion locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ vertical: "縦"
horizontal: ""
position: "位置"
rotate: "回転"
opacity: "透明度"
transparency: "透明度"
serverRules: "サーバールール"
pleaseConfirmBelowBeforeSignup: "このサーバーに登録するには、以下の内容を確認し同意する必要があります。"
pleaseAgreeAllToContinue: "続けるには、全ての「同意する」にチェックが入っている必要があります。"
Expand Down
10 changes: 5 additions & 5 deletions packages/frontend/src/components/MkWatermarkEditorDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #label>{{ i18n.ts.size }}</template>
</MkRange>

<MkRange v-model="opacity" :min="0" :max="1" :step="0.01" :textConverter="(v) => `${Math.floor(v * 100)}%`">
<template #label>{{ i18n.ts.opacity }}</template>
<MkRange v-model="transparency" :min="0" :max="1" :step="0.01" :textConverter="(v) => `${Math.floor(v * 100)}%`">
<template #label>{{ i18n.ts.transparency }}</template>
</MkRange>

<MkRange v-model="rotate" :min="-45" :max="45" :textConverter="(v) => `${Math.floor(v)}°`">
Expand Down Expand Up @@ -158,9 +158,9 @@ const repeat = computed({
get: () => watermarkConfig.value?.repeat ?? true,
set: (v) => watermarkConfig.value = { ...watermarkConfig.value, repeat: v },
});
const opacity = computed({
get: () => watermarkConfig.value?.opacity ?? 0.2,
set: (v) => watermarkConfig.value = { ...watermarkConfig.value, opacity: v },
const transparency = computed({
get: () => 1 - (watermarkConfig.value?.opacity ?? 0.2),
set: (v) => watermarkConfig.value = { ...watermarkConfig.value, opacity: (1 - v) },
});
const rotate = computed({
get: () => watermarkConfig.value?.rotate ?? 15,
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/scripts/watermark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type WatermarkUserConfig = {
fileUrl?: string;
/** 親画像に対するウォーターマークの幅比率。ない場合は1。親画像が縦長の場合は幅の比率として、横長の場合は高さ比率として使用される */
sizeRatio?: number;
/** 透明度 */
/** 不透明度 */
opacity?: number;
/** 回転角度(度数) */
rotate?: number;
Expand Down Expand Up @@ -70,7 +70,7 @@ export type WatermarkConfig = {
fileUrl?: string;
/** 親画像に対するウォーターマークの幅比率。ない場合は1。親画像が縦長の場合は幅の比率として、横長の場合は高さ比率として使用される */
sizeRatio?: number;
/** 透明度 */
/** 不透明度 */
opacity?: number;
/** 回転角度(度数) */
rotate?: number;
Expand Down

0 comments on commit 0b23beb

Please sign in to comment.