diff --git a/locales/index.d.ts b/locales/index.d.ts index 28d843535e..4b38d9a515 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -12593,6 +12593,14 @@ export interface Locale extends ILocale { * コードリーダーを停止 */ "stopQr": string; + /** + * QRコードが見つかりません + */ + "noQrCodeFound": string; + /** + * 端末の画像をスキャン + */ + "scanFile": string; }; } declare const locales: { diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index a80d4a0b7a..88b8e6a6a3 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -3372,3 +3372,5 @@ _qr: turnOffFlash: "ライトをオフにする" startQr: "コードリーダーを再開" stopQr: "コードリーダーを停止" + noQrCodeFound: "QRコードが見つかりません" + scanFile: "端末の画像をスキャン" diff --git a/packages/frontend/src/pages/qr.read.vue b/packages/frontend/src/pages/qr.read.vue index a9130f01d1..20f9e82c93 100644 --- a/packages/frontend/src/pages/qr.read.vue +++ b/packages/frontend/src/pages/qr.read.vue @@ -18,7 +18,9 @@ SPDX-License-Identifier: AGPL-3.0-only