diff options
Diffstat (limited to 'src/lib/Locale/layout.ts')
| -rw-r--r-- | src/lib/Locale/layout.ts | 32 |
1 files changed, 32 insertions, 0 deletions
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; + }; + }; + }; } |