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/english.ts | |
| 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/english.ts')
| -rw-r--r-- | src/lib/Locale/english.ts | 32 |
1 files changed, 32 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' + } + } } }; |