aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-07 00:08:45 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-07 00:08:45 +0100
commit9733eaf85115444718a1f6a32b971d29bd54d0ca (patch)
tree0450747dc6e12f28305a9962bc0b6054f255ba91 /src/config.js
parentfix(Service): Fix transparent service background (diff)
downloadferdium-app-9733eaf85115444718a1f6a32b971d29bd54d0ca.tar.gz
ferdium-app-9733eaf85115444718a1f6a32b971d29bd54d0ca.tar.zst
ferdium-app-9733eaf85115444718a1f6a32b971d29bd54d0ca.zip
fix(i18n): Fallback to system language or english
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index e6d8958e6..e66594c59 100644
--- a/src/config.js
+++ b/src/config.js
@@ -14,7 +14,8 @@ export const DEFAULT_APP_SETTINGS = {
14 showMessageBadgeWhenMuted: true, 14 showMessageBadgeWhenMuted: true,
15 enableSpellchecking: true, 15 enableSpellchecking: true,
16 // spellcheckingLanguage: 'auto', 16 // spellcheckingLanguage: 'auto',
17 locale: 'en-US', 17 locale: '',
18 fallbackLocale: 'en-US',
18 beta: false, 19 beta: false,
19 isAppMuted: false, 20 isAppMuted: false,
20}; 21};