From b0e698520f0be4e054b8f3d1feff694d1ddf1779 Mon Sep 17 00:00:00 2001 From: Steliyan Stoyanov Date: Tue, 29 Oct 2019 20:34:19 +0200 Subject: Add "adaptable dark mode" checkbox --- .../settings/settings/EditSettingsForm.js | 3 + src/containers/settings/EditSettingsScreen.js | 10 ++ src/i18n/locales/defaultMessages.json | 169 +++++++++++---------- src/i18n/locales/en-US.json | 1 + .../settings/settings/EditSettingsForm.json | 116 +++++++------- .../containers/settings/EditSettingsScreen.json | 53 ++++--- src/stores/ServicesStore.js | 5 + 7 files changed, 201 insertions(+), 156 deletions(-) diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js index 2be5c4ed7..d567a47d1 100644 --- a/src/components/settings/settings/EditSettingsForm.js +++ b/src/components/settings/settings/EditSettingsForm.js @@ -12,6 +12,7 @@ import PremiumFeatureContainer from '../../ui/PremiumFeatureContainer'; import Input from '../../ui/Input'; import { FRANZ_TRANSLATION } from '../../../config'; +import { isMac } from '../../../environment'; function escapeHtml(unsafe) { return unsafe @@ -383,8 +384,10 @@ export default @observer class EditSettingsForm extends Component { + {isMac && } {isDarkmodeEnabled && ( <> +

this._shareSettingsWithServiceProcess(), ); + reaction( + () => this.stores.settings.app.adaptableDarkMode, + () => this._shareSettingsWithServiceProcess(), + ); + reaction( () => this.stores.settings.app.universalDarkMode, () => this._shareSettingsWithServiceProcess(), -- cgit v1.2.3-70-g09d2 From b3d2bad9c5a481132d3d4c81b876b6754d684592 Mon Sep 17 00:00:00 2001 From: Steliyan Stoyanov Date: Tue, 29 Oct 2019 22:53:10 +0200 Subject: Respect MacOS current theme --- src/stores/UIStore.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/stores/UIStore.js b/src/stores/UIStore.js index 9680c5bcc..44bc7c974 100644 --- a/src/stores/UIStore.js +++ b/src/stores/UIStore.js @@ -5,12 +5,18 @@ import { reaction, } from 'mobx'; import { theme } from '@meetfranz/theme'; +import { remote } from 'electron'; import Store from './lib/Store'; +import { isMac } from '../environment'; + +const { systemPreferences } = remote; export default class UIStore extends Store { @observable showServicesUpdatedInfoBar = false; + @observable isOsDarkThemeActive = isMac ? systemPreferences.isDarkMode() : false; + constructor(...args) { super(...args); @@ -18,6 +24,13 @@ export default class UIStore extends Store { this.actions.ui.openSettings.listen(this._openSettings.bind(this)); this.actions.ui.closeSettings.listen(this._closeSettings.bind(this)); this.actions.ui.toggleServiceUpdatedInfoBar.listen(this._toggleServiceUpdatedInfoBar.bind(this)); + + // Listen for theme change on MacOS + if (isMac) { + systemPreferences.subscribeNotification('AppleInterfaceThemeChangedNotification', () => { + this.isOsDarkThemeActive = systemPreferences.isDarkMode(); + }); + } } setup() { @@ -35,7 +48,7 @@ export default class UIStore extends Store { } @computed get isDarkThemeActive() { - return this.stores.settings.all.app.darkMode; + return this.stores.settings.all.app.darkMode || (this.stores.settings.all.app.adaptableDarkMode && this.isOsDarkThemeActive); } @computed get theme() { -- cgit v1.2.3-70-g09d2 From cdf783bc156c605b9783b45c952f3464a341667f Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2019 09:02:27 +0000 Subject: docs: update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 38fb8cd47..c2762a498 100644 --- a/README.md +++ b/README.md @@ -196,8 +196,7 @@ When pushing a new tag, the CI builds will create a draft GitHub release and upl Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): - - + @@ -226,11 +225,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d +
Bennett
Bennett

💻 🎨 📖 🤔 🌍 💡 🐛 🖋 🚇 📓 💬 📆 👀
Benjamin Staneck
Benjamin Staneck

🎨
ammarmalhas
ammarmalhas

🐛 🛡️
Steliyan Stoyanov
Steliyan Stoyanov

💻 🤔
- - -- cgit v1.2.3-70-g09d2 From cb355f90b7ee31b55dadcc2bfca24506de940396 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2019 09:02:28 +0000 Subject: docs: update .all-contributorsrc --- .all-contributorsrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index c4378fe4b..832fcd243 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -232,6 +232,16 @@ "bug", "security" ] + }, + { + "login": "steliyan", + "name": "Steliyan Stoyanov", + "avatar_url": "https://avatars1.githubusercontent.com/u/1850292?v=4", + "profile": "https://github.com/steliyan", + "contributions": [ + "code", + "ideas" + ] } ], "contributorsPerLine": 6 -- cgit v1.2.3-70-g09d2 From 78cd61f12f66b3f91f8ac6b902a1ebabb20ecf0d Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:12 +0700 Subject: New translations en-US.json (French) --- src/i18n/locales/fr.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index 66fa17f1e..908e2ace7 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Le cache de Ferdi occupe actuellement {size} en espace disque.", "settings.app.currentVersion": "Version actuelle :", "settings.app.form.accentColor": "Accent de couleur", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Ouvrir en arrière-plan", "settings.app.form.autoLaunchOnStart": "Lancer Ferdi au démarrage", "settings.app.form.beta": "Accepter les versions bêta", -- cgit v1.2.3-70-g09d2 From ef4a107b596757641750333b8be596cab9b78fb3 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:16 +0700 Subject: New translations en-US.json (Romanian) --- src/i18n/locales/ro.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ro.json b/src/i18n/locales/ro.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/ro.json +++ b/src/i18n/locales/ro.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From e40dd97d5aff9f5f6b348f13730b8898ff5da9f7 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:19 +0700 Subject: New translations en-US.json (Japanese) --- src/i18n/locales/ja.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json index b9b6da6c3..0f5a14be1 100644 --- a/src/i18n/locales/ja.json +++ b/src/i18n/locales/ja.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "現在、Ferdiのキャッシュはディスクの{size}分を使用しています。", "settings.app.currentVersion": "現在のバージョン:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "バックグラウンドで開く", "settings.app.form.autoLaunchOnStart": "システム起動時にFerdiを開く", "settings.app.form.beta": "Betaバージョンを含める", -- cgit v1.2.3-70-g09d2 From 43dbf4ab78e07ec7023950c89ac2ac3730a22815 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:21 +0700 Subject: New translations en-US.json (Korean) --- src/i18n/locales/ko.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ko.json b/src/i18n/locales/ko.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/ko.json +++ b/src/i18n/locales/ko.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From 9d4fd22451faab5fe50ccf99c8850f39d5042a01 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:25 +0700 Subject: New translations en-US.json (Norwegian) --- src/i18n/locales/no.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/no.json +++ b/src/i18n/locales/no.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From b99272386b4eef849fefb2946879ecc861bd64b2 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:28 +0700 Subject: New translations en-US.json (Polish) --- src/i18n/locales/pl.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json index 6cc75eaf3..e29e80e9f 100644 --- a/src/i18n/locales/pl.json +++ b/src/i18n/locales/pl.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Pamięć podręczna zajmuje obecnie {size} przestrzeni dyskowej", "settings.app.currentVersion": "Aktualna wersja:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Otwórz w tle", "settings.app.form.autoLaunchOnStart": "Uruchom Ferdi na początku", "settings.app.form.beta": "Uwzględnij wersje beta", -- cgit v1.2.3-70-g09d2 From b64cee65887335164b36c3bfce765ccfc2e9e46a Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:34 +0700 Subject: New translations en-US.json (Portuguese) --- src/i18n/locales/pt-BR.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/pt-BR.json b/src/i18n/locales/pt-BR.json index 9dec7e7a3..af03b302a 100644 --- a/src/i18n/locales/pt-BR.json +++ b/src/i18n/locales/pt-BR.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "O cache do Ferdi está usando {size} de espaço em disco atualmente.", "settings.app.currentVersion": "Versão atual:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Abrir em segundo plano", "settings.app.form.autoLaunchOnStart": "Abrir o Ferdi ao iniciar o sistema", "settings.app.form.beta": "Incluir versões beta", -- cgit v1.2.3-70-g09d2 From 7f88f518f55e1fe4444b8597f1ea0caa37d2a9c5 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:38 +0700 Subject: New translations en-US.json (Portuguese, Brazilian) --- src/i18n/locales/pt.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json index f5beac6b3..3d14d5414 100644 --- a/src/i18n/locales/pt.json +++ b/src/i18n/locales/pt.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "A cache do Ferdi está a usar {size} de espaço em disco.", "settings.app.currentVersion": "Versão atual", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Abrir em segundo plano", "settings.app.form.autoLaunchOnStart": "Iniciar o Ferdi após iniciar o computador", "settings.app.form.beta": "Incluir versões instáveis (beta)", -- cgit v1.2.3-70-g09d2 From ad229e887ebd9605283926dce6ff6d5acf507c6b Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:40 +0700 Subject: New translations en-US.json (Russian) --- src/i18n/locales/ru.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json index b329522f4..5d3636d9e 100644 --- a/src/i18n/locales/ru.json +++ b/src/i18n/locales/ru.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Кэш занимает {size} на диске.", "settings.app.currentVersion": "Текущая версия:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Открывать в фоне", "settings.app.form.autoLaunchOnStart": "Запускать Ferdi при старте", "settings.app.form.beta": "Включая бета версии", -- cgit v1.2.3-70-g09d2 From 204ebcd59bc89fade97150925a9b674eb35f049a Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:43 +0700 Subject: New translations en-US.json (Irish) --- src/i18n/locales/ga.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ga.json b/src/i18n/locales/ga.json index e96d9e14f..ebc7b1dbe 100644 --- a/src/i18n/locales/ga.json +++ b/src/i18n/locales/ga.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Tá taisce Ferdi ag baint úsáid as {size} den spás diosca.", "settings.app.currentVersion": "Leagan reatha:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Oscail sa chúlra", "settings.app.form.autoLaunchOnStart": "Láinseáil Ferdi ón tús", "settings.app.form.beta": "Cuir leagain béite san áireamh", -- cgit v1.2.3-70-g09d2 From ef24f8e6a2e66d79dabdfd7f9d929fe7f1ce2aca Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:47 +0700 Subject: New translations en-US.json (Serbian (Cyrillic)) --- src/i18n/locales/sr.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/sr.json b/src/i18n/locales/sr.json index 1190fee0a..f1257ac1e 100644 --- a/src/i18n/locales/sr.json +++ b/src/i18n/locales/sr.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Франз кеш тренутно користи {величина} простора на диску.", "settings.app.currentVersion": "Trenutna verzija:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Otvori u pozadini", "settings.app.form.autoLaunchOnStart": "Pokreni Ferdi sa sistemom", "settings.app.form.beta": "Obuhvati i beta verzije", -- cgit v1.2.3-70-g09d2 From a8883c984aed3bdec6a285d5c8b69ffa5c204235 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:50 +0700 Subject: New translations en-US.json (Slovak) --- src/i18n/locales/sk.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/sk.json b/src/i18n/locales/sk.json index 0b4c0d3fa..b9805e2a6 100644 --- a/src/i18n/locales/sk.json +++ b/src/i18n/locales/sk.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Vyrovnávacia pamäť Ferdi momentálne používa {size} miesta na disku.", "settings.app.currentVersion": "Súčasná verzia:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Otvoriť na pozadí", "settings.app.form.autoLaunchOnStart": "Spustiť Ferdi pri štarte", "settings.app.form.beta": "Vrátane beta verzií", -- cgit v1.2.3-70-g09d2 From 721bdd2937d631834275d65b44f7e98a8e9e75e6 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:53 +0700 Subject: New translations en-US.json (Slovenian) --- src/i18n/locales/sl.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/sl.json +++ b/src/i18n/locales/sl.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From f3eea4bb8a602869847a36d515b8df589a8211c6 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:10:58 +0700 Subject: New translations en-US.json (Spanish) --- src/i18n/locales/es.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index e3aad888f..462d74d39 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "El cache de Ferdi actualmente usa {size} de espacio en disco.", "settings.app.currentVersion": "Versión actual:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Abrir en segundo plano", "settings.app.form.autoLaunchOnStart": "Iniciar Ferdi al iniciar", "settings.app.form.beta": "Incluir versiones beta", -- cgit v1.2.3-70-g09d2 From 9e2ca728f880b9d67ca18e9edf38f9b15b425b73 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:02 +0700 Subject: New translations en-US.json (Swedish) --- src/i18n/locales/sv.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/sv.json +++ b/src/i18n/locales/sv.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From ab81601ff7666b23cf88a6f444da52d45e8c4678 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:04 +0700 Subject: New translations en-US.json (Turkish) --- src/i18n/locales/tr.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/tr.json b/src/i18n/locales/tr.json index 8e55a66f9..34c406981 100644 --- a/src/i18n/locales/tr.json +++ b/src/i18n/locales/tr.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi önbelleği şu anda {size} disk alanı kullanıyor.", "settings.app.currentVersion": "Geçerli sürüm:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Arka planda aç", "settings.app.form.autoLaunchOnStart": "Ferdi'ı başlangıçta aç", "settings.app.form.beta": "Beta versiyonları dahil et", -- cgit v1.2.3-70-g09d2 From 4eeb3bf5bbbbc7435f0e021b9981454a636823fb Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:07 +0700 Subject: New translations en-US.json (Ukrainian) --- src/i18n/locales/uk.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json index 1deed25fe..c1657b2c0 100644 --- a/src/i18n/locales/uk.json +++ b/src/i18n/locales/uk.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Кеш, який використовує Ferdi, займає {size} дискового простору.", "settings.app.currentVersion": "Поточна версія:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Відкрити у фоновому режимі", "settings.app.form.autoLaunchOnStart": "Запускати Ferdi на початку", "settings.app.form.beta": "Включити бета-версії", -- cgit v1.2.3-70-g09d2 From 4d88e18b44a681d660c3146649dafb14603c94c6 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:09 +0700 Subject: New translations en-US.json (Italian) --- src/i18n/locales/it.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index f3ed42e3a..07a4dc98d 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi sta utilizzando {size} di spazio su disco.", "settings.app.currentVersion": "Versione attuale:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Apri in background", "settings.app.form.autoLaunchOnStart": "Esegui Ferdi all'avvio", "settings.app.form.beta": "Includi versioni beta", -- cgit v1.2.3-70-g09d2 From 1980d71efc49578fe36e4340c211cbbef9e7cb52 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:11 +0700 Subject: New translations en-US.json (Indonesian) --- src/i18n/locales/id.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/id.json b/src/i18n/locales/id.json index 2378bfbad..e48458d07 100644 --- a/src/i18n/locales/id.json +++ b/src/i18n/locales/id.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Singgahan Ferdi sedang menggunakan ruang disk {size}.", "settings.app.currentVersion": "Versi saat ini:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Buka di latar belakang", "settings.app.form.autoLaunchOnStart": "Jalankan Ferdi saat komputer dimulai", "settings.app.form.beta": "Sertakan versi beta", -- cgit v1.2.3-70-g09d2 From 3c2e8001755dbaf71cdb3c1d042772f8789abfb0 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:14 +0700 Subject: New translations en-US.json (Afrikaans) --- src/i18n/locales/af.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/af.json b/src/i18n/locales/af.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/af.json +++ b/src/i18n/locales/af.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From db3fbd0eccd62050edd7759b2890ae8d4c661f6d Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:17 +0700 Subject: New translations en-US.json (Czech) --- src/i18n/locales/cs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/cs.json b/src/i18n/locales/cs.json index e8d3827dd..7ec1ce369 100644 --- a/src/i18n/locales/cs.json +++ b/src/i18n/locales/cs.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi momentálně používá {size} místa na disku.", "settings.app.currentVersion": "Aktuální verze:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Spustit na pozadí", "settings.app.form.autoLaunchOnStart": "Spustit Ferdi při startu", "settings.app.form.beta": "Zahrnout beta verze", -- cgit v1.2.3-70-g09d2 From e0fe5a5a7045339da348e0db26faab905b43648f Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:20 +0700 Subject: New translations en-US.json (Arabic) --- src/i18n/locales/ar.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/ar.json +++ b/src/i18n/locales/ar.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From d84d66583b37b03a426b42a98a5b51e9e0081154 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:23 +0700 Subject: New translations en-US.json (Bosnian) --- src/i18n/locales/bs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/bs.json b/src/i18n/locales/bs.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/bs.json +++ b/src/i18n/locales/bs.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From c42aea3f7c351b6777350011113b4e376bc0f50c Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:26 +0700 Subject: New translations en-US.json (Catalan) --- src/i18n/locales/ca.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ca.json b/src/i18n/locales/ca.json index 5f55f804a..f7de90243 100644 --- a/src/i18n/locales/ca.json +++ b/src/i18n/locales/ca.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "La memòria cau de Ferdi està utilitzant {size} d'espai al disc", "settings.app.currentVersion": "Versió actual:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Obrir en segon plà", "settings.app.form.autoLaunchOnStart": "Iniciar Ferdi a l'inici", "settings.app.form.beta": "Inclou versions beta", -- cgit v1.2.3-70-g09d2 From 702aabf45a4abf67338e12a568b5503876f5fd27 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:28 +0700 Subject: New translations en-US.json (Chinese Simplified) --- src/i18n/locales/zh.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/zh.json +++ b/src/i18n/locales/zh.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From d5b19b5a1fc38042be3f208df31819185cb64bee Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:31 +0700 Subject: New translations en-US.json (Chinese Traditional) --- src/i18n/locales/zh-Hant.json | 486 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 486 insertions(+) create mode 100644 src/i18n/locales/zh-Hant.json diff --git a/src/i18n/locales/zh-Hant.json b/src/i18n/locales/zh-Hant.json new file mode 100644 index 000000000..fd1ea9977 --- /dev/null +++ b/src/i18n/locales/zh-Hant.json @@ -0,0 +1,486 @@ +{ + "app.errorHandler.action": "Reload", + "app.errorHandler.headline": "Something went wrong", + "feature.announcements.changelog.headline": "Changes in Ferdi {version}", + "feature.delayApp.headline": "Please purchase a Ferdi Supporter License to skip waiting", + "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.", + "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional", + "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial", + "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14 day trial and skip the line", + "feature.delayApp.upgrade.action": "Get a Ferdi Supporter License", + "feature.delayApp.upgrade.actionShort": "Upgrade account", + "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free", + "feature.planSelection.cta.stayOnFree": "Stay on Free", + "feature.planSelection.cta.trial": "Start my free 14-days Trial", + "feature.planSelection.cta.upgradePersonal": "Choose Personal", + "feature.planSelection.cta.upgradePro": "Choose Professional", + "feature.planSelection.free.text": "Basic functionality", + "feature.planSelection.fullFeatureList": "Complete comparison of all plans", + "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free", + "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal", + "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", + "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan", + "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.", + "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}", + "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.", + "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment", + "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.", + "feature.quickSwitch.info": "Select a service with TAB, ↑ and ↓. Open a service with ENTER.", + "feature.quickSwitch.search": "Search...", + "feature.quickSwitch.title": "QuickSwitch", + "feature.serviceLimit.limitReached": "You have added {amount} out of {limit} services that are included in your plan. Please upgrade your account to add more services.", + "feature.shareFranz.action.email": "Send as email", + "feature.shareFranz.action.facebook": "Share on Facebook", + "feature.shareFranz.action.twitter": "Share on Twitter", + "feature.shareFranz.headline": "Ferdi is better together!", + "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com", + "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger", + "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.", + "feature.todos.premium.info": "Ferdi Todos are available to premium users now!", + "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.", + "feature.todos.premium.upgrade": "Upgrade Account", + "feature.trialStatusBar.cta": "Upgrade now", + "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.", + "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free", + "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal", + "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", + "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan", + "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.", + "global.api.unhealthy": "無法連接到Ferdi網路服務", + "global.franzProRequired": "Ferdi Professional Required", + "global.notConnectedToTheInternet": "您未連上網際網路", + "global.spellchecker.useDefault": "Use System Default ({default})", + "global.spellchecking.autodetect": "Detect language automatically", + "global.spellchecking.autodetect.short": "Automatic", + "global.spellchecking.language": "Spell checking language", + "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional", + "import.headline": "匯入您的 Ferdi 4 服務", + "import.notSupportedHeadline": "此服務不被 Ferdi 5 支持", + "import.skip.label": "我想手動匯入", + "import.submit.label": "匯入服務", + "infobar.authRequestFailed": "There were errors while trying to perform an authenticated request. Please try logging out and back in if this error persists.", + "infobar.buttonChangelog": "What is new?", + "infobar.buttonInstallUpdate": "重新啟動並且更新", + "infobar.buttonReloadServices": "重新載入", + "infobar.requiredRequestsFailed": "無法載入服務與帳戶資訊", + "infobar.servicesUpdated": "您的服務已更新", + "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!", + "infobar.updateAvailable": "有新的更新可安裝", + "invite.email.label": "電子郵件信箱", + "invite.headline.friends": "邀請三個人", + "invite.name.label": "名子", + "invite.skip.label": "我想晚點進行", + "invite.submit.label": "Send invites", + "invite.successInfo": "Invitations sent successfully", + "locked.headline": "Locked", + "locked.info": "Ferdi is currently locked. Please unlock Ferdi with your password to see your messages.", + "locked.invalidCredentials": "Password invalid", + "locked.password.label": "Password", + "locked.submit.label": "Unlock", + "login.changeServer": "Change server", + "login.customServerQuestion": "Using a custom Ferdi server?", + "login.customServerSuggestion": "Try importing your Franz account", + "login.email.label": "電子郵件信箱", + "login.headline": "登入", + "login.invalidCredentials": "電子郵件帳戶或密碼有誤", + "login.link.password": "密碼重設", + "login.link.signup": "建立一個免費帳戶", + "login.password.label": "Password", + "login.serverLogout": "登入狀態過期,請重新登入", + "login.submit.label": "登入", + "login.tokenExpired": "登入狀態過期,請重新登入", + "menu.Todoss.closeTodosDrawer": "Close Todos drawer", + "menu.Todoss.openTodosDrawer": "Open Todos drawer", + "menu.app.about": "About Ferdi", + "menu.app.announcement": "What's new?", + "menu.app.autohideMenuBar": "Auto-hide menu bar", + "menu.app.checkForUpdates": "Check for updates", + "menu.app.hide": "Hide", + "menu.app.hideOthers": "Hide Others", + "menu.app.quit": "Quit", + "menu.app.settings": "Settings", + "menu.app.unhide": "Unhide", + "menu.edit": "Edit", + "menu.edit.copy": "Copy", + "menu.edit.cut": "Cut", + "menu.edit.delete": "Delete", + "menu.edit.emojiSymbols": "Emoji & Symbols", + "menu.edit.paste": "Paste", + "menu.edit.pasteAndMatchStyle": "Paste And Match Style", + "menu.edit.redo": "Redo", + "menu.edit.selectAll": "Select All", + "menu.edit.speech": "Speech", + "menu.edit.startDictation": "Start Dictation", + "menu.edit.startSpeaking": "Start Speaking", + "menu.edit.stopSpeaking": "Stop Speaking", + "menu.edit.undo": "Undo", + "menu.file": "File", + "menu.help": "Help", + "menu.help.changelog": "Changelog", + "menu.help.debugInfo": "Copy Debug Information", + "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.", + "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information", + "menu.help.learnMore": "Learn More", + "menu.help.privacy": "Privacy Statement", + "menu.help.support": "Support", + "menu.help.tos": "Terms of Service", + "menu.services": "Services", + "menu.services.activatePreviousService": "Activate previous service", + "menu.services.addNewService": "Add New Service...", + "menu.services.goHome": "Home", + "menu.services.setNextServiceActive": "Activate next service", + "menu.todos": "Todos", + "menu.todos.enableTodos": "Enable Todos", + "menu.view": "View", + "menu.view.back": "Back", + "menu.view.enterFullScreen": "Enter Full Screen", + "menu.view.exitFullScreen": "Exit Full Screen", + "menu.view.forward": "Forward", + "menu.view.lockFerdi": "Lock Ferdi", + "menu.view.openQuickSwitch": "Open Quick Switch", + "menu.view.reloadFranz": "Reload Ferdi", + "menu.view.reloadService": "Reload Service", + "menu.view.resetZoom": "Actual Size", + "menu.view.toggleDevTools": "Toggle Developer Tools", + "menu.view.toggleFullScreen": "Toggle Full Screen", + "menu.view.toggleServiceDevTools": "Toggle Service Developer Tools", + "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools", + "menu.view.zoomIn": "Zoom In", + "menu.view.zoomOut": "Zoom Out", + "menu.window": "Window", + "menu.window.close": "Close", + "menu.window.minimize": "Minimize", + "menu.workspaces": "Workspaces", + "menu.workspaces.addNewWorkspace": "Add New Workspace...", + "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer", + "menu.workspaces.defaultWorkspace": "All services", + "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer", + "password.email.label": "電子郵件信箱", + "password.headline": "密碼重設", + "password.link.login": "登入您的帳戶", + "password.link.signup": "建立一個免費帳戶", + "password.noUser": "此電子郵件帳戶不存在", + "password.submit.label": "送出", + "password.successInfo": "請重新確認您的電子郵件信箱", + "premiumFeature.button.upgradeAccount": "Upgrade account", + "pricing.features.accountSync": "Account Synchronisation", + "pricing.features.adFree": "Forever ad-free", + "pricing.features.appDelays": "No Waiting Screens", + "pricing.features.customWebsites": "Add Custom Websites", + "pricing.features.desktopNotifications": "Desktop Notifications", + "pricing.features.onPremise": "On-premise & other Hosted Services", + "pricing.features.recipes": "Choose from more than 70 Services", + "pricing.features.serviceProxies": "Service Proxies", + "pricing.features.spellchecker": "Spellchecker support", + "pricing.features.teamManagement": "Team Management", + "pricing.features.thirdPartyServices": "Install 3rd party services", + "pricing.features.unlimitedServices": "Add unlimited services", + "pricing.features.upToSixServices": "Add up to 6 services", + "pricing.features.upToThreeServices": "Add up to 3 services", + "pricing.features.workspaces": "Workspaces", + "pricing.plan.free": "Ferdi Free", + "pricing.plan.legacy": "Ferdi Premium", + "pricing.plan.personal": "Ferdi Personal", + "pricing.plan.personal-monthly": "Ferdi Personal Monthly", + "pricing.plan.personal-yearly": "Ferdi Personal Yearly", + "pricing.plan.pro": "Ferdi Professional", + "pricing.plan.pro-monthly": "Ferdi Professional Monthly", + "pricing.plan.pro-yearly": "Ferdi Professional Yearly", + "pricing.trial.cta.accept": "Yes, upgrade my account to Ferdi Professional", + "pricing.trial.cta.skip": "Continue to Ferdi", + "pricing.trial.cta.start": "Start using Ferdi", + "pricing.trial.error": "Sorry, we could not activate your trial!", + "pricing.trial.features.headline": "Ferdi Professional includes:", + "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi", + "pricing.trial.intro.happyMessaging": "Happy messaging,", + "pricing.trial.intro.specialTreat": "We have a special treat for you.", + "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.", + "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days", + "pricing.trial.terms.headline": "No strings attached", + "pricing.trial.terms.noCreditCard": "No credit card required", + "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)", + "service.crashHandler.action": "Reload {name}", + "service.crashHandler.autoReload": "Trying to automatically restore {name} in {seconds} seconds", + "service.crashHandler.headline": "Oh no!", + "service.crashHandler.text": "{name} has caused an error.", + "service.disabledHandler.action": "Enable {name}", + "service.disabledHandler.headline": "{name} is disabled", + "service.errorHandler.action": "Reload {name}", + "service.errorHandler.editAction": "Edit {name}", + "service.errorHandler.headline": "Oh no!", + "service.errorHandler.message": "Error", + "service.errorHandler.text": "{name} has failed to load.", + "service.restrictedHandler.action": "Upgrade Account", + "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required", + "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", + "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", + "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", + "service.webviewLoader.loading": "Loading", + "services.getStarted": "開始使用", + "services.login": "Please login to use Ferdi.", + "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", + "services.serverless": "Use Ferdi without an Account", + "services.welcome": "歡迎使用 Ferdi", + "settings.account.account.editButton": "更改帳戶資訊", + "settings.account.accountType.basic": "基本帳戶", + "settings.account.accountType.premium": "Premium Supporter Account", + "settings.account.buttonSave": "更新帳戶資訊", + "settings.account.deleteAccount": "Delete account", + "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", + "settings.account.deleteInfo": "If you don't need your Ferdi account any longer, you can delete your account and all related data here.", + "settings.account.headline": "帳戶", + "settings.account.headlineAccount": "帳戶資訊", + "settings.account.headlineDangerZone": "Danger Zone", + "settings.account.headlineInvoices": "Invoices", + "settings.account.headlinePassword": "更改密碼", + "settings.account.headlineProfile": "更新帳戶資訊", + "settings.account.headlineSubscription": "您的訂閱", + "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial", + "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience", + "settings.account.invoiceDownload": "下載", + "settings.account.manageSubscription.label": "管理訂閱", + "settings.account.successInfo": "您的更改已經儲存", + "settings.account.trial": "Free Trial", + "settings.account.trialEndsIn": "Your free trial ends in {duration}.", + "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.", + "settings.account.tryReloadServices": "Try again", + "settings.account.tryReloadUserInfoRequest": "Try again", + "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", + "settings.account.userInfoRequestFailed": "無法載入帳戶資訊", + "settings.account.yourLicense": "Your Ferdi License", + "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", + "settings.app.buttonClearAllCache": "Clear cache", + "settings.app.buttonInstallUpdate": "重新啟動並且更新", + "settings.app.buttonSearchForUpdate": "Check for updates", + "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", + "settings.app.currentVersion": "當前版本:", + "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", + "settings.app.form.autoLaunchInBackground": "背景啟動", + "settings.app.form.autoLaunchOnStart": "開機時啟動", + "settings.app.form.beta": "包含開發中版本", + "settings.app.form.darkMode": "Join the Dark Side", + "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration", + "settings.app.form.enableLock": "Enable Ferdi password lock", + "settings.app.form.enableSpellchecking": "Enable spell checking", + "settings.app.form.enableSystemTray": "在系統匣上顯示", + "settings.app.form.enableTodos": "Enable Ferdi Todos", + "settings.app.form.hibernate": "Enable service hibernation", + "settings.app.form.hibernationStrategy": "Hibernation strategy", + "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", + "settings.app.form.language": "語言", + "settings.app.form.lockPassword": "Ferdi Lock password", + "settings.app.form.minimizeToSystemTray": "最小化至系統匣", + "settings.app.form.noUpdates": "Disable updates", + "settings.app.form.privateNotifications": "Don't show message content in notifications", + "settings.app.form.runInBackground": "關閉時保持在背景運作", + "settings.app.form.scheduledDNDEnabled": "Enable scheduled Do-not-Disturb", + "settings.app.form.scheduledDNDEnd": "To", + "settings.app.form.scheduledDNDStart": "From", + "settings.app.form.server": "Server", + "settings.app.form.showDisabledServices": "Display disabled services tabs", + "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", + "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", + "settings.app.form.todoServer": "Todo Server", + "settings.app.form.universalDarkMode": "Enable universal Dark Mode", + "settings.app.headline": "Settings", + "settings.app.headlineAdvanced": "Advanced", + "settings.app.headlineAppearance": "Appearance", + "settings.app.headlineGeneral": "一般", + "settings.app.headlineLanguage": "語言", + "settings.app.headlineUpdates": "更新", + "settings.app.hibernateInfo": "By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.", + "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.", + "settings.app.lockInfo": "Ferdi password lock allows you to keep your messages protected.\nUsing Ferdi password lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.", + "settings.app.lockedPassword": "Ferdi Lock Password", + "settings.app.lockedPasswordInfo": "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.", + "settings.app.restartRequired": "Changes require restart", + "settings.app.scheduledDNDInfo": "Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.", + "settings.app.scheduledDNDTimeInfo": "Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.", + "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", + "settings.app.serverMoneyInfo": "You are using the official Franz Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Franz's server resources - which Franz's creator has to pay for.\nPlease still consider [Link 1]paying for a Franz account[/Link] or [Link 2]using a self-hosted ferdi-server[/Link] (if you have the knowledge and resources to do so). \nBy using Ferdi, you still profit greatly from Franz's recipe store, server resources and its development.", + "settings.app.subheadlineCache": "Cache", + "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", + "settings.app.translationHelp": "Help us to translate Ferdi into your language.", + "settings.app.universalDarkModeInfo": "Universal Dark Mode tries to dynamically generate dark mode styles for services that are otherwise not currently supported.", + "settings.app.updateStatusAvailable": "有可用更新,下載中...", + "settings.app.updateStatusSearching": "檢查更新中...", + "settings.app.updateStatusUpToDate": "已經是最新版本了", + "settings.invite.headline": "Invite Friends", + "settings.navigation.account": "帳戶", + "settings.navigation.availableServices": "可用服務", + "settings.navigation.logout": "登出", + "settings.navigation.settings": "Settings", + "settings.navigation.supportFerdi": "Support Ferdi", + "settings.navigation.team": "Manage Team", + "settings.navigation.yourServices": "您的服務", + "settings.navigation.yourWorkspaces": "Your workspaces", + "settings.recipes.all": "All services", + "settings.recipes.custom": "Custom Services", + "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes", + "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes", + "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes", + "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:", + "settings.recipes.customService.openDevDocs": "Developer Documentation", + "settings.recipes.customService.openFolder": "Open folder", + "settings.recipes.headline": "可用服務", + "settings.recipes.missingService": "Missing a service?", + "settings.recipes.mostPopular": "熱門", + "settings.recipes.nothingFound": "抱歉,找不到您所要的服務", + "settings.recipes.servicesSuccessfulAddedInfo": "新增服務成功", + "settings.searchService": "Search service", + "settings.service.error.goBack": "返回", + "settings.service.error.headline": "Error", + "settings.service.error.message": "無法載入服務元件", + "settings.service.form.addServiceHeadline": "新增 {name}", + "settings.service.form.availableServices": "可用服務", + "settings.service.form.customUrl": "Custom server", + "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.", + "settings.service.form.customUrlUpgradeAccount": "升級帳戶", + "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.", + "settings.service.form.deleteButton": "刪除", + "settings.service.form.editServiceHeadline": "Edit {name}", + "settings.service.form.enableAudio": "Enable audio", + "settings.service.form.enableBadge": "Show unread message badges", + "settings.service.form.enableDarkMode": "Enable Dark Mode", + "settings.service.form.enableNotification": "啟用通知", + "settings.service.form.enableService": "啟用服務", + "settings.service.form.headlineBadges": "Unread message badges", + "settings.service.form.headlineGeneral": "一般", + "settings.service.form.headlineNotifications": "Notifications", + "settings.service.form.icon": "Custom icon", + "settings.service.form.iconDelete": "Delete", + "settings.service.form.iconUpload": "Drop your image, or click here", + "settings.service.form.indirectMessageInfo": "除了 @username, @channel, @here 之外,當您參與的頻道有訊息時,就會通知", + "settings.service.form.indirectMessages": "針對全部訊息顯示通知", + "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted", + "settings.service.form.name": "名子", + "settings.service.form.openDarkmodeCss": "Open darkmode.css", + "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings", + "settings.service.form.proxy.host": "Proxy Host/IP", + "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.", + "settings.service.form.proxy.isEnabled": "Use Proxy", + "settings.service.form.proxy.password": "Password (optional)", + "settings.service.form.proxy.port": "Port", + "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.", + "settings.service.form.proxy.user": "User (optional)", + "settings.service.form.saveButton": "儲存", + "settings.service.form.tabHosted": "Hosted", + "settings.service.form.tabOnPremise": "Self hosted ⭐️", + "settings.service.form.team": "Team", + "settings.service.form.useHostedService": "Use the hosted {name} service.", + "settings.service.form.yourServices": "您的服務", + "settings.services.deletedInfo": "服務已刪除", + "settings.services.discoverServices": "服務列表", + "settings.services.headline": "您的服務", + "settings.services.noServicesAdded": "您還沒加入任何服務", + "settings.services.servicesRequestFailed": "Could not load your services", + "settings.services.tooltip.isDisabled": "已停用服務", + "settings.services.tooltip.isMuted": "All sounds are muted", + "settings.services.tooltip.notificationsDisabled": "已停用通知", + "settings.services.updatedInfo": "您的更改已經儲存", + "settings.supportFerdi.github": "Star on GitHub", + "settings.supportFerdi.headline": "Support Ferdi", + "settings.supportFerdi.openCollective": "Support our Open Collective", + "settings.supportFerdi.share": "Tell your Friends", + "settings.supportFerdi.title": "Do you like Ferdi? Spread the love!", + "settings.team.contentHeadline": "Ferdi for Teams", + "settings.team.copy": "Ferdi for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", + "settings.team.headline": "Team", + "settings.team.intro": "You and your team use Ferdi? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", + "settings.team.manageAction": "Manage your Team on getferdi.com", + "settings.team.teamsUnavailable": "Teams are unavailable", + "settings.team.teamsUnavailableInfo": "Teams are currently only available when using the Franz Server and after paying for Franz Professional. Please change your server to https://api.franzinfra.com to use teams.", + "settings.team.upgradeAction": "Upgrade your Account", + "settings.user.form.accountType.company": "公司", + "settings.user.form.accountType.individual": "個人", + "settings.user.form.accountType.label": "帳戶類型", + "settings.user.form.accountType.non-profit": "非營利", + "settings.user.form.currentPassword": "舊密碼", + "settings.user.form.email": "電子郵件信箱", + "settings.user.form.firstname": "名子", + "settings.user.form.lastname": "姓氏", + "settings.user.form.newPassword": "新密碼", + "settings.workspace.add.form.name": "名子", + "settings.workspace.add.form.submitButton": "Create workspace", + "settings.workspace.form.buttonDelete": "Delete workspace", + "settings.workspace.form.buttonSave": "Save workspace", + "settings.workspace.form.keepLoaded": "Keep this workspace loaded*", + "settings.workspace.form.keepLoadedInfo": "*This option will be overwritten by the global \"Keep all workspaces loaded\" option.", + "settings.workspace.form.name": "名子", + "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace", + "settings.workspace.form.yourWorkspaces": "Your workspaces", + "settings.workspaces.deletedInfo": "Workspace has been deleted", + "settings.workspaces.headline": "Your workspaces", + "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.", + "settings.workspaces.tryReloadWorkspaces": "Try again", + "settings.workspaces.updatedInfo": "您的更改已經儲存", + "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces", + "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", + "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces", + "sidebar.addNewService": "Add new service", + "sidebar.closeTodosDrawer": "Close Ferdi Todos", + "sidebar.closeWorkspaceDrawer": "Close workspace drawer", + "sidebar.lockFerdi": "Lock Ferdi", + "sidebar.muteApp": "Disable notifications & audio", + "sidebar.openTodosDrawer": "Open Ferdi Todos", + "sidebar.openWorkspaceDrawer": "Open workspace drawer", + "sidebar.settings": "Settings", + "sidebar.unmuteApp": "Enable notifications & audio", + "signup.email.label": "電子郵件信箱", + "signup.emailDuplicate": "此電子郵件信箱已被註冊", + "signup.firstname.label": "名子", + "signup.headline": "註冊", + "signup.lastname.label": "姓氏", + "signup.legal.info": "在建立帳戶同時,您同意:", + "signup.legal.privacy": "Privacy Statement", + "signup.legal.terms": "服務條款", + "signup.link.login": "您已有一個帳戶,請問是否要登入?", + "signup.password.label": "Password", + "signup.submit.label": "建立帳戶", + "subscription.bestValue": "Best value", + "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial", + "subscription.cta.allOptions": "See all options", + "subscription.cta.choosePlan": "Choose your plan", + "subscription.includedProFeatures": "The Ferdi Professional Plan includes:", + "subscription.interval.per": "per {interval}", + "subscription.interval.perMonth": "per month", + "subscription.interval.perMonthPerUser": "per month & user", + "subscription.planItem.upgradeAccount": "Upgrade Account", + "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:", + "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", + "subscriptionPopup.buttonCancel": "取消", + "subscriptionPopup.buttonDone": "完成", + "tabs.item.deleteService": "刪除", + "tabs.item.disableAudio": "Disable audio", + "tabs.item.disableNotifications": "停用通知", + "tabs.item.disableService": "停用服務", + "tabs.item.edit": "Edit", + "tabs.item.enableAudio": "Enable audio", + "tabs.item.enableNotification": "啟用通知", + "tabs.item.enableService": "啟用服務", + "tabs.item.reload": "Reload", + "validation.email": "{field} is not valid", + "validation.minLength": "{field} should be at least {length} characters long", + "validation.oneRequired": "At least one is required", + "validation.required": "{field} is required", + "validation.url": "{field} is not a valid URL", + "webControls.back": "Back", + "webControls.forward": "Forward", + "webControls.goHome": "Home", + "webControls.openInBrowser": "Open in Browser", + "webControls.reload": "Reload", + "welcome.loginButton": "登入", + "welcome.signupButton": "建立一個免費帳戶", + "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace", + "workspaceDrawer.allServices": "All services", + "workspaceDrawer.headline": "Workspaces", + "workspaceDrawer.item.contextMenuEdit": "edit", + "workspaceDrawer.item.noServicesAddedYet": "No services added yet", + "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace", + "workspaceDrawer.proFeatureBadge": "Premium feature", + "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account", + "workspaceDrawer.workspaceFeatureInfo": "

Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.

You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.

", + "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", + "workspaces.switchingIndicator.switchingTo": "Switching to" +} -- cgit v1.2.3-70-g09d2 From 7756bd8e199d70217ff31389bd1d189892d62778 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:34 +0700 Subject: New translations en-US.json (Croatian) --- src/i18n/locales/hr.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/hr.json b/src/i18n/locales/hr.json index 5ad85cc1a..5d6f353f0 100644 --- a/src/i18n/locales/hr.json +++ b/src/i18n/locales/hr.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi predmemorija trenutno koristi {size} prostora na disku", "settings.app.currentVersion": "Trenutna verzija:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Otvori u pozadini", "settings.app.form.autoLaunchOnStart": "Pokreni Ferdi sa sistemom", "settings.app.form.beta": "Obuhvati i beta verzije", -- cgit v1.2.3-70-g09d2 From b15ae60b42566bd74c1d4252846a0ed949cbefbc Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:38 +0700 Subject: New translations en-US.json (Danish) --- src/i18n/locales/da.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/da.json b/src/i18n/locales/da.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/da.json +++ b/src/i18n/locales/da.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From db6de336a86938e0d21dec62618af380b52a2f4f Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:41 +0700 Subject: New translations en-US.json (Hungarian) --- src/i18n/locales/hu.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json index 940db5dff..7695f5fc4 100644 --- a/src/i18n/locales/hu.json +++ b/src/i18n/locales/hu.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "A Ferdi gyorsítótár jelenleg {size} lemezterületet használ.", "settings.app.currentVersion": "Aktuális verzió:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Megnyitás háttérben", "settings.app.form.autoLaunchOnStart": "Ferdi betöltése indításkor", "settings.app.form.beta": "Béta verziók keresése", -- cgit v1.2.3-70-g09d2 From 8218fb020d30361e1239daee55219bf6a86a749d Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:43 +0700 Subject: New translations en-US.json (Dutch) --- src/i18n/locales/nl.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json index e5467c877..c71954427 100644 --- a/src/i18n/locales/nl.json +++ b/src/i18n/locales/nl.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi gebruikt op dit moment {size} schijfruimte aan tijdelijke bestanden.", "settings.app.currentVersion": "Huidige versie:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open op de achtergrond", "settings.app.form.autoLaunchOnStart": "Open Ferdi bij opstarten", "settings.app.form.beta": "Inclusief bètaversies", -- cgit v1.2.3-70-g09d2 From 4e9b74814239dcbea4fc174fa7b4e84ff2e9a2f9 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:46 +0700 Subject: New translations en-US.json (Finnish) --- src/i18n/locales/fi.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/fi.json b/src/i18n/locales/fi.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/fi.json +++ b/src/i18n/locales/fi.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From c7d8a7f2e7be1b555337d8ae6e88bc4df304fce3 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:49 +0700 Subject: New translations en-US.json (Flemish) --- src/i18n/locales/nl-BE.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/nl-BE.json b/src/i18n/locales/nl-BE.json index ce8a35ce8..80f33d583 100644 --- a/src/i18n/locales/nl-BE.json +++ b/src/i18n/locales/nl-BE.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache gebruikt momenteel {size} schijfruimte.", "settings.app.currentVersion": "Huidige versie:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open op de achtergrond", "settings.app.form.autoLaunchOnStart": "Lanceer Ferdi bij opstarten", "settings.app.form.beta": "Inclusief beta versies", -- cgit v1.2.3-70-g09d2 From f941eb8f8fe815f8443c7d65fb094dc71175cd08 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:53 +0700 Subject: New translations en-US.json (Georgian) --- src/i18n/locales/ka.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/ka.json b/src/i18n/locales/ka.json index 2f0aaa5ae..302b513d2 100644 --- a/src/i18n/locales/ka.json +++ b/src/i18n/locales/ka.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "ამჟამინდელი ვერსია:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "გახსენით ფონზე", "settings.app.form.autoLaunchOnStart": "გაეშვას Ferdi სისტემის ჩატვირთვისას", "settings.app.form.beta": "ჩართეთ ბეტა ვერსიები", -- cgit v1.2.3-70-g09d2 From 4fdca821d0b06bf7c2dd0a61a3e684abc5a42cc1 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:55 +0700 Subject: New translations en-US.json (German) --- src/i18n/locales/de.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/de.json b/src/i18n/locales/de.json index 85dc1925f..01688d5cb 100644 --- a/src/i18n/locales/de.json +++ b/src/i18n/locales/de.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Der Ferdi Cache belegt derzeit {size}.", "settings.app.currentVersion": "Aktuelle Version:", "settings.app.form.accentColor": "Akzentfarbe", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Im Hintergrund öffnen", "settings.app.form.autoLaunchOnStart": "Ferdi beim Systemstart ausführen", "settings.app.form.beta": "Beta-Versionen einbeziehen", -- cgit v1.2.3-70-g09d2 From a8a9df54d445d2ff544708389a69e3478fbc9e38 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:11:57 +0700 Subject: New translations en-US.json (Greek) --- src/i18n/locales/el.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json index 89c0d62b6..c383a18fb 100644 --- a/src/i18n/locales/el.json +++ b/src/i18n/locales/el.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Το Ferdi χρησιμοποιεί αυτήν τη στιγμή {size} χώρου στο δίσκο.", "settings.app.currentVersion": "Τρέχουσα έκδοση:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Άνοιγμα στο παρασκήνιο", "settings.app.form.autoLaunchOnStart": "Εκκίνηση του Ferdi κατά την εκκίνηση του συστήματος", "settings.app.form.beta": "Συμπεριλάβετε εκδόσεις beta", -- cgit v1.2.3-70-g09d2 From 767081ce81aea705f3c6de1ce6ae53feb2300ea0 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:12:00 +0700 Subject: New translations en-US.json (Hebrew) --- src/i18n/locales/he.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/he.json b/src/i18n/locales/he.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/he.json +++ b/src/i18n/locales/he.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2 From 1742ca7aca4cd8d40c58c7db3b99579c13658993 Mon Sep 17 00:00:00 2001 From: Ferdi Bot <56048320+FerdiBot@users.noreply.github.com> Date: Wed, 30 Oct 2019 16:12:04 +0700 Subject: New translations en-US.json (Vietnamese) --- src/i18n/locales/vi.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json index edcc67771..8eb2053bc 100644 --- a/src/i18n/locales/vi.json +++ b/src/i18n/locales/vi.json @@ -255,6 +255,7 @@ "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.", "settings.app.currentVersion": "Current version:", "settings.app.form.accentColor": "Accent color", + "settings.app.form.adaptableDarkMode": "Enable adaptable Dark Mode", "settings.app.form.autoLaunchInBackground": "Open in background", "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start", "settings.app.form.beta": "Include beta versions", -- cgit v1.2.3-70-g09d2