diff options
| author | Fuwn <[email protected]> | 2024-01-21 00:47:30 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-21 00:47:30 -0800 |
| commit | 9ea039e6907184794c4059e3081aa956a10c5b4b (patch) | |
| tree | 1fa11345bb5c116cd840dcc2b767ffc037fd52c4 /src/lib/Locale | |
| parent | feat(locale): more localisation for display category (diff) | |
| download | due.moe-9ea039e6907184794c4059e3081aa956a10c5b4b.tar.xz due.moe-9ea039e6907184794c4059e3081aa956a10c5b4b.zip | |
feat: disable last activity warning
Diffstat (limited to 'src/lib/Locale')
| -rw-r--r-- | src/lib/Locale/english.ts | 7 | ||||
| -rw-r--r-- | src/lib/Locale/japanese.ts | 7 | ||||
| -rw-r--r-- | src/lib/Locale/layout.ts | 7 |
3 files changed, 18 insertions, 3 deletions
diff --git a/src/lib/Locale/english.ts b/src/lib/Locale/english.ts index 2b4db8f0..80838048 100644 --- a/src/lib/Locale/english.ts +++ b/src/lib/Locale/english.ts @@ -45,7 +45,12 @@ const English: Locale = { } } }, - date_and_time: 'Date & Time', + dateAndTime: { + title: 'Date & Time', + fields: { + disableLastActivityWarning: 'Disable last activity warning' + } + }, motionAndAccessibility: { title: 'Motion & Accessibility', fields: { diff --git a/src/lib/Locale/japanese.ts b/src/lib/Locale/japanese.ts index 76aa0c3b..b4f4d93e 100644 --- a/src/lib/Locale/japanese.ts +++ b/src/lib/Locale/japanese.ts @@ -28,7 +28,12 @@ const Japanese: Locale = { display: { title: '表示', categories: { - date_and_time: '日付と時刻', + dateAndTime: { + title: '日付と時刻', + fields: { + disableLastActivityWarning: '最後のアクティビティ警告を無効にする' + } + }, media: { title: 'メディア', fields: { diff --git a/src/lib/Locale/layout.ts b/src/lib/Locale/layout.ts index 3e86fa8d..01bb3a22 100644 --- a/src/lib/Locale/layout.ts +++ b/src/lib/Locale/layout.ts @@ -49,7 +49,12 @@ export interface Locale { }; }; }; - date_and_time: LocaleValue; + dateAndTime: { + title: LocaleValue; + fields: { + disableLastActivityWarning: LocaleValue; + }; + }; motionAndAccessibility: { title: LocaleValue; fields: { |