fix 18n
This commit is contained in:
parent
09d39d1fcf
commit
bcb36d8b6f
|
@ -12601,6 +12601,14 @@ export interface Locale extends ILocale {
|
||||||
* 端末の画像をスキャン
|
* 端末の画像をスキャン
|
||||||
*/
|
*/
|
||||||
"scanFile": string;
|
"scanFile": string;
|
||||||
|
/**
|
||||||
|
* テキスト
|
||||||
|
*/
|
||||||
|
"raw": string;
|
||||||
|
/**
|
||||||
|
* MFM
|
||||||
|
*/
|
||||||
|
"mfm": string;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
declare const locales: {
|
declare const locales: {
|
||||||
|
|
|
@ -3374,6 +3374,5 @@ _qr:
|
||||||
stopQr: "コードリーダーを停止"
|
stopQr: "コードリーダーを停止"
|
||||||
noQrCodeFound: "QRコードが見つかりません"
|
noQrCodeFound: "QRコードが見つかりません"
|
||||||
scanFile: "端末の画像をスキャン"
|
scanFile: "端末の画像をスキャン"
|
||||||
urls: "URL"
|
raw: "テキスト"
|
||||||
raw: "生データ"
|
|
||||||
mfm: "MFM"
|
mfm: "MFM"
|
||||||
|
|
|
@ -7,12 +7,12 @@
|
||||||
:tabs="[
|
:tabs="[
|
||||||
{
|
{
|
||||||
key: 'mfm',
|
key: 'mfm',
|
||||||
title: 'MFM',
|
title: i18n.ts._qr.mfm,
|
||||||
icon: 'ti ti-align-left',
|
icon: 'ti ti-align-left',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'raw',
|
key: 'raw',
|
||||||
title: 'Raw',
|
title: i18n.ts._qr.raw,
|
||||||
icon: 'ti ti-code',
|
icon: 'ti ti-code',
|
||||||
},
|
},
|
||||||
]"
|
]"
|
||||||
|
@ -37,6 +37,7 @@ import MkTabs from '@/components/MkTabs.vue';
|
||||||
import { extractUrlFromMfm } from '@/utility/extract-url-from-mfm';
|
import { extractUrlFromMfm } from '@/utility/extract-url-from-mfm';
|
||||||
import MkCode from '@/components/MkCode.vue';
|
import MkCode from '@/components/MkCode.vue';
|
||||||
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
||||||
|
import { i18n } from '@/i18n.js';
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
data: string;
|
data: string;
|
||||||
|
|
Loading…
Reference in New Issue