diff options
| author | Fuwn <[email protected]> | 2024-02-05 19:23:16 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-05 19:23:16 -0800 |
| commit | 95fa2fb47686512795a7f0088c95c171de2ce75e (patch) | |
| tree | 071977980733bf1b9c03b49735ff4b58c755e024 /src/lib | |
| parent | feat(locale): localise import mode (diff) | |
| download | due.moe-95fa2fb47686512795a7f0088c95c171de2ce75e.tar.xz due.moe-95fa2fb47686512795a7f0088c95c171de2ce75e.zip | |
feat(locale): localise import wait
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/Locale/english.ts | 4 | ||||
| -rw-r--r-- | src/lib/Locale/japanese.ts | 6 | ||||
| -rw-r--r-- | src/lib/Locale/layout.ts | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/Locale/english.ts b/src/lib/Locale/english.ts index c31f79c7..38c9e875 100644 --- a/src/lib/Locale/english.ts +++ b/src/lib/Locale/english.ts @@ -166,7 +166,9 @@ const English: Locale = { hint: 'If your badges are nested in links, enable this option to attach the links to the badges.' }, importReplies: 'Import Replies', - title: 'Import badges from an activity post' + title: 'Import badges from an activity post', + importWait: + 'Please wait until import mode automatically closes, otherwise you risk skipping or duplicating badges.' } }, profile: { diff --git a/src/lib/Locale/japanese.ts b/src/lib/Locale/japanese.ts index cda832f2..f4702a2f 100644 --- a/src/lib/Locale/japanese.ts +++ b/src/lib/Locale/japanese.ts @@ -167,7 +167,11 @@ const Japanese: Locale = { hint: 'バッジがリンク内に入れ子になっている場合、このオプションを有効にしてバッジにリンクを添付してください。' }, importReplies: 'インポートコメントする', - title: 'AniListのアクティビティからバッジをインポートする ' + title: 'AniListのアクティビティからバッジをインポートする ', + // importWait: + // 'Please wait until import mode automatically closes, otherwise you risk skipping or duplicating badges.' + importWait: + 'インポートモードウィンドウが自動的に閉じるまでお待ちください。そうしないと、インポート処理中にバッジがスキップされたり、重複したりする危険性があります。' } }, profile: { diff --git a/src/lib/Locale/layout.ts b/src/lib/Locale/layout.ts index ee94c8ed..44022e0b 100644 --- a/src/lib/Locale/layout.ts +++ b/src/lib/Locale/layout.ts @@ -171,6 +171,7 @@ export interface Locale { }; importReplies: LocaleValue; title: LocaleValue; + importWait: LocaleValue; }; }; profile: { |