diff --git a/locales/index.d.ts b/locales/index.d.ts index 6b36cf8502..95886125ff 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -12236,9 +12236,9 @@ export interface Locale extends ILocale { */ "text": string; /** - * 二次元コード (アカウント) + * 二次元コード */ - "accountQr": string; + "qr": string; /** * 位置 */ @@ -12303,6 +12303,10 @@ export interface Locale extends ILocale { * サブドットの数 */ "polkadotSubDotDivisions": string; + /** + * 空欄にするとアカウントのURLになります + */ + "leaveBlankToAccountUrl": string; }; "_imageEffector": { /** diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 945eea02ee..4ae52990e5 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -3275,7 +3275,7 @@ _watermarkEditor: opacity: "不透明度" scale: "サイズ" text: "テキスト" - accountQr: "二次元コード (アカウント)" + qr: "二次元コード" position: "位置" margin: "マージン" type: "タイプ" @@ -3292,6 +3292,7 @@ _watermarkEditor: polkadotSubDotOpacity: "サブドットの不透明度" polkadotSubDotRadius: "サブドットの大きさ" polkadotSubDotDivisions: "サブドットの数" + leaveBlankToAccountUrl: "空欄にするとアカウントのURLになります" _imageEffector: title: "エフェクト" diff --git a/packages/frontend/src/components/MkWatermarkEditorDialog.Layer.vue b/packages/frontend/src/components/MkWatermarkEditorDialog.Layer.vue index 19b997bea2..7d7523465c 100644 --- a/packages/frontend/src/components/MkWatermarkEditorDialog.Layer.vue +++ b/packages/frontend/src/components/MkWatermarkEditorDialog.Layer.vue @@ -25,7 +25,7 @@ SPDX-License-Identifier: AGPL-3.0-only :step="0.01" :textConverter="(v) => (v * 100).toFixed(1) + '%'" continuousUpdate - @update:modelValue="(v) => (layer as Extract).align.margin = v" + @update:modelValue="(v) => (layer as Extract).align.margin = v" > @@ -85,7 +85,7 @@ SPDX-License-Identifier: AGPL-3.0-only :step="0.01" :textConverter="(v) => (v * 100).toFixed(1) + '%'" continuousUpdate - @update:modelValue="(v) => (layer as Extract).align.margin = v" + @update:modelValue="(v) => (layer as Extract).align.margin = v" > @@ -131,7 +131,12 @@ SPDX-License-Identifier: AGPL-3.0-only -