diff options
| author | Fuwn <[email protected]> | 2024-01-31 08:09:40 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-31 08:09:40 -0800 |
| commit | a1a9bd7e08397e7a98a33a249024b6a2e7e08b36 (patch) | |
| tree | fe19095cf84b02a346c81e68ddadaa17b952df92 /src/lib/Locale | |
| parent | feat(hovercover): half animation time (diff) | |
| download | due.moe-a1a9bd7e08397e7a98a33a249024b6a2e7e08b36.tar.xz due.moe-a1a9bd7e08397e7a98a33a249024b6a2e7e08b36.zip | |
feat(locale): localise birthdays
Diffstat (limited to 'src/lib/Locale')
| -rw-r--r-- | src/lib/Locale/english.ts | 8 | ||||
| -rw-r--r-- | src/lib/Locale/japanese.ts | 8 | ||||
| -rw-r--r-- | src/lib/Locale/layout.ts | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/src/lib/Locale/english.ts b/src/lib/Locale/english.ts index b1f5f9ea..92a1f608 100644 --- a/src/lib/Locale/english.ts +++ b/src/lib/Locale/english.ts @@ -187,6 +187,14 @@ const English: Locale = { hint: 'Concluded manga and light novels that you have not read all available chapters of' } } + }, + tools: { + tool: { + characterBirthdays: { + short: 'Character Birthdays', + long: "Today's Character Birthdays" + } + } } }; diff --git a/src/lib/Locale/japanese.ts b/src/lib/Locale/japanese.ts index 105b4b9b..2deccb45 100644 --- a/src/lib/Locale/japanese.ts +++ b/src/lib/Locale/japanese.ts @@ -189,6 +189,14 @@ const Japanese: Locale = { hint: '完結したマンガ&ライトノベルで、全章を読んでいないもの' } } + }, + tools: { + tool: { + characterBirthdays: { + short: 'キャラクターの誕生日', + long: '今日のキャラクターの誕生日' + } + } } }; diff --git a/src/lib/Locale/layout.ts b/src/lib/Locale/layout.ts index c2ecc94c..00c19ea9 100644 --- a/src/lib/Locale/layout.ts +++ b/src/lib/Locale/layout.ts @@ -192,4 +192,12 @@ export interface Locale { }; }; }; + tools: { + tool: { + characterBirthdays: { + short: LocaleValue; + long: LocaleValue; + }; + }; + }; } |