diff options
| author | Fuwn <[email protected]> | 2024-01-25 08:35:33 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-25 08:35:33 -0800 |
| commit | 5e1ac6260f415a35b30ab3006977b4e4a0bf1fdc (patch) | |
| tree | 2d2913d25f7e828405446f3d68e635d7eed32af6 /src/lib/Locale | |
| parent | feat(wrapped): hide loading messages (diff) | |
| download | due.moe-5e1ac6260f415a35b30ab3006977b4e4a0bf1fdc.tar.xz due.moe-5e1ac6260f415a35b30ab3006977b4e4a0bf1fdc.zip | |
feat(locale): localise media lists
Diffstat (limited to 'src/lib/Locale')
| -rw-r--r-- | src/lib/Locale/english.ts | 32 | ||||
| -rw-r--r-- | src/lib/Locale/japanese.ts | 32 | ||||
| -rw-r--r-- | src/lib/Locale/layout.ts | 32 |
3 files changed, 96 insertions, 0 deletions
diff --git a/src/lib/Locale/english.ts b/src/lib/Locale/english.ts index 8deca68b..2af404b7 100644 --- a/src/lib/Locale/english.ts +++ b/src/lib/Locale/english.ts @@ -149,6 +149,38 @@ const English: Locale = { statistics: '{username} has watched {anime} days of anime and read {manga} days of manga.', badges: '{username} has collected {badges} badges using Badge Wall.' } + }, + lists: { + upcoming: { + episodes: { + title: 'Upcoming Episodes', + hint: 'Anime that you have seen all aired episodes of and have at least one scheduled episode left to air' + }, + notYetReleased: { + title: 'Not Yet Released', + hint: 'Anime that have not yet aired any episodes' + } + }, + due: { + episodes: { + title: 'Due Episodes', + hint: 'Airing anime that you have not seen all aired episodes of' + }, + mangaAndLightNovels: { + title: 'Manga & Light Novels', + hint: 'Releasing manga and light novels that you have not read all available chapters of' + } + }, + completed: { + anime: { + title: 'Anime', + hint: 'Concluded anime that you not have seen all aired episodes of' + }, + mangaAndLightNovels: { + title: 'Manga & Light Novels', + hint: 'Concluded manga and light novels that you have not read all available chapters of' + } + } } }; diff --git a/src/lib/Locale/japanese.ts b/src/lib/Locale/japanese.ts index 60fc06e6..ef46bcb1 100644 --- a/src/lib/Locale/japanese.ts +++ b/src/lib/Locale/japanese.ts @@ -151,6 +151,38 @@ const Japanese: Locale = { '{username}はAniListで{anime}日間のアニメ視聴と{manga}日間のマンガ読書を記録している。', badges: '{username}はBadge Wallを使って{badges}個のバッジを収集しました。' } + }, + lists: { + upcoming: { + episodes: { + title: 'これから放送されるエピソード', + hint: '現在放送中のアニメで、放送された全話を見たことがあるもの' + }, + notYetReleased: { + title: 'まだ公開されていない', + hint: 'まだ一話も放送されていない' + } + }, + due: { + episodes: { + title: '視聴すべきエピソード', + hint: '未視聴エピソードのあるアニメ' + }, + mangaAndLightNovels: { + title: 'マンガ&ライトノベル', + hint: '未読の章があるマンガ&ライトノベル' + } + }, + completed: { + anime: { + title: 'アニメ', + hint: '放送が終了したアニメで全話見ていないもの' + }, + mangaAndLightNovels: { + title: 'マンガ&ライトノベル', + hint: '完結したマンガ&ライトノベルで、全章を読んでいないもの' + } + } } }; diff --git a/src/lib/Locale/layout.ts b/src/lib/Locale/layout.ts index 485256ba..fa7acf27 100644 --- a/src/lib/Locale/layout.ts +++ b/src/lib/Locale/layout.ts @@ -154,4 +154,36 @@ export interface Locale { badges: LocaleValue; }; }; + lists: { + upcoming: { + episodes: { + title: LocaleValue; + hint: LocaleValue; + }; + notYetReleased: { + title: LocaleValue; + hint: LocaleValue; + }; + }; + due: { + episodes: { + title: LocaleValue; + hint: LocaleValue; + }; + mangaAndLightNovels: { + title: LocaleValue; + hint: LocaleValue; + }; + }; + completed: { + anime: { + title: LocaleValue; + hint: LocaleValue; + }; + mangaAndLightNovels: { + title: LocaleValue; + hint: LocaleValue; + }; + }; + }; } |