diff options
| author | Fuwn <[email protected]> | 2024-01-20 02:00:45 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-20 02:00:45 -0800 |
| commit | 6ad0e36f4d46062db497cf06c882d1423925c998 (patch) | |
| tree | 330695d8060401f3dc1a0f9bb16303586acec6f9 /src/stores | |
| parent | feat: root prefix all links (diff) | |
| download | due.moe-6ad0e36f4d46062db497cf06c882d1423925c998.tar.xz due.moe-6ad0e36f4d46062db497cf06c882d1423925c998.zip | |
feat: localisation
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 4b067c40..3a55d5b6 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -36,6 +36,7 @@ export interface Settings { displayCoverWidth: number; displayShortCountdown: boolean; displayScheduleListMode: boolean; + displayLanguage: 'en' | 'ja'; } const defaultSettings: Settings = { @@ -68,6 +69,7 @@ const defaultSettings: Settings = { displayCoverWidth: 116.609, displayShortCountdown: false, displayScheduleListMode: false, + displayLanguage: 'en', // Calculation calculateChaptersRoundedDown: true, |