aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-02-08 11:32:20 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-02-08 11:32:20 +0100
commite2437f27ccd1c7646accc75b819fff3295c7a2e2 (patch)
treeb291106a314e66fe77f11bb9026e12c1bb5839b0 /src/i18n
parentRemove debugging output (diff)
downloadferdium-app-e2437f27ccd1c7646accc75b819fff3295c7a2e2.tar.gz
ferdium-app-e2437f27ccd1c7646accc75b819fff3295c7a2e2.tar.zst
ferdium-app-e2437f27ccd1c7646accc75b819fff3295c7a2e2.zip
feat(Spell checking): Add option to automatically detect language
Diffstat (limited to 'src/i18n')
-rw-r--r--src/i18n/globalMessages.js16
-rw-r--r--src/i18n/locales/en-US.json4
2 files changed, 20 insertions, 0 deletions
diff --git a/src/i18n/globalMessages.js b/src/i18n/globalMessages.js
index 2c724ff6f..7b1618602 100644
--- a/src/i18n/globalMessages.js
+++ b/src/i18n/globalMessages.js
@@ -13,4 +13,20 @@ export default defineMessages({
13 id: 'global.notConnectedToTheInternet', 13 id: 'global.notConnectedToTheInternet',
14 defaultMessage: '!!!You are not connected to the internet.', 14 defaultMessage: '!!!You are not connected to the internet.',
15 }, 15 },
16 spellcheckerLanguage: {
17 id: 'global.spellchecking.language',
18 defaultMessage: '!!!Spell checking language',
19 },
20 spellcheckerSystemDefault: {
21 id: 'global.spellchecker.useDefault',
22 defaultMessage: '!!!Use System Default ({default})',
23 },
24 spellcheckerAutomaticDetection: {
25 id: 'global.spellchecking.autodetect',
26 defaultMessage: '!!!Detect language automatically',
27 },
28 spellcheckerAutomaticDetectionShort: {
29 id: 'global.spellchecking.autodetect.short',
30 defaultMessage: '!!!Automatic',
31 },
16}); 32});
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index 99df6a0ca..4e0c5575d 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -1,6 +1,10 @@
1{ 1{
2 "global.api.unhealthy": "Can't connect to Franz online services", 2 "global.api.unhealthy": "Can't connect to Franz online services",
3 "global.notConnectedToTheInternet": "You are not connected to the internet.", 3 "global.notConnectedToTheInternet": "You are not connected to the internet.",
4 "global.spellchecking.language": "Spell checking language",
5 "global.spellchecker.useDefault": "Use System Default ({default})",
6 "global.spellchecking.autodetect": "Detect language automatically",
7 "global.spellchecking.autodetect.short": "Automatic",
4 "welcome.signupButton": "Create a free account", 8 "welcome.signupButton": "Create a free account",
5 "welcome.loginButton": "Login to your account", 9 "welcome.loginButton": "Login to your account",
6 "welcome.slogan": "Messaging that works for you", 10 "welcome.slogan": "Messaging that works for you",