aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/globalMessages.js
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/globalMessages.js
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/globalMessages.js')
-rw-r--r--src/i18n/globalMessages.js16
1 files changed, 16 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});