aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-25 04:24:55 +0100
committerLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-25 04:24:55 +0100
commit80fc23b570ef048df55e04ba3e8af695afc6c37b (patch)
tree2329aee86094cb0fc79b1e2fffa7a32e4f301328 /src
parentFix lock at startup (diff)
parentAvoid AppVeyor builds on i18n-only commits (diff)
downloadferdium-app-80fc23b570ef048df55e04ba3e8af695afc6c37b.tar.gz
ferdium-app-80fc23b570ef048df55e04ba3e8af695afc6c37b.tar.zst
ferdium-app-80fc23b570ef048df55e04ba3e8af695afc6c37b.zip
Merge branch 'develop' into refactor/lock
Diffstat (limited to 'src')
-rw-r--r--src/components/settings/settings/EditSettingsForm.js6
-rw-r--r--src/config.js23
-rw-r--r--src/containers/settings/EditSettingsScreen.js36
-rw-r--r--src/features/appearance/index.js29
-rw-r--r--src/features/publishDebugInfo/Component.js18
-rw-r--r--src/i18n/locales/af.json2
-rw-r--r--src/i18n/locales/ar.json2
-rw-r--r--src/i18n/locales/bs.json2
-rw-r--r--src/i18n/locales/ca.json2
-rw-r--r--src/i18n/locales/cs.json2
-rw-r--r--src/i18n/locales/da.json2
-rw-r--r--src/i18n/locales/de.json2
-rw-r--r--src/i18n/locales/defaultMessages.json154
-rw-r--r--src/i18n/locales/el.json2
-rw-r--r--src/i18n/locales/en-US.json2
-rw-r--r--src/i18n/locales/es.json2
-rw-r--r--src/i18n/locales/fi.json2
-rw-r--r--src/i18n/locales/fr.json8
-rw-r--r--src/i18n/locales/ga.json2
-rw-r--r--src/i18n/locales/he.json2
-rw-r--r--src/i18n/locales/hr.json12
-rw-r--r--src/i18n/locales/hu.json2
-rw-r--r--src/i18n/locales/id.json8
-rw-r--r--src/i18n/locales/it.json2
-rw-r--r--src/i18n/locales/ja.json2
-rw-r--r--src/i18n/locales/ka.json2
-rw-r--r--src/i18n/locales/ko.json42
-rw-r--r--src/i18n/locales/nb.json (renamed from src/i18n/locales/nb-NO.json)0
-rw-r--r--src/i18n/locales/nl-BE.json2
-rw-r--r--src/i18n/locales/nl.json2
-rw-r--r--src/i18n/locales/no.json2
-rw-r--r--src/i18n/locales/pl.json2
-rw-r--r--src/i18n/locales/pt-BR.json4
-rw-r--r--src/i18n/locales/pt.json4
-rw-r--r--src/i18n/locales/ro.json2
-rw-r--r--src/i18n/locales/ru.json2
-rw-r--r--src/i18n/locales/sk.json2
-rw-r--r--src/i18n/locales/sl.json2
-rw-r--r--src/i18n/locales/sr.json32
-rw-r--r--src/i18n/locales/sv.json2
-rw-r--r--src/i18n/locales/tr.json4
-rw-r--r--src/i18n/locales/ua.json168
-rw-r--r--src/i18n/locales/uk.json2
-rw-r--r--src/i18n/locales/vi.json2
-rw-r--r--src/i18n/locales/zh-CN.json (renamed from src/i18n/locales/zh.json)2
-rw-r--r--src/i18n/locales/zh-HANT.json2
-rw-r--r--src/i18n/locales/zh-TW.json4
-rw-r--r--src/i18n/messages/src/containers/settings/EditSettingsScreen.json154
48 files changed, 403 insertions, 363 deletions
diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js
index 6017252bc..432a546d9 100644
--- a/src/components/settings/settings/EditSettingsForm.js
+++ b/src/components/settings/settings/EditSettingsForm.js
@@ -468,6 +468,12 @@ export default @observer class EditSettingsForm extends Component {
468 468
469 <Hr /> 469 <Hr />
470 470
471 <Select field={form.$('serviceRibbonWidth')} />
472
473 <Select field={form.$('iconSize')} />
474
475 <Hr />
476
471 <Input 477 <Input
472 placeholder="Accent Color" 478 placeholder="Accent Color"
473 onChange={e => this.submit(e)} 479 onChange={e => this.submit(e)}
diff --git a/src/config.js b/src/config.js
index 895852ed8..9b77aa9a5 100644
--- a/src/config.js
+++ b/src/config.js
@@ -45,6 +45,28 @@ export const HIBERNATION_STRATEGIES = {
45 3600: 'Extemely Slow Hibernation (1hour)', 45 3600: 'Extemely Slow Hibernation (1hour)',
46}; 46};
47 47
48export const SIDEBAR_WIDTH = {
49 35: 'Extemely slim sidebar',
50 45: 'Very slim sidebar',
51 55: 'Slim sidebar',
52 68: 'Normal sidebar',
53 80: 'Wide sidebar',
54 90: 'Very wide sidebar',
55 100: 'Extemely wide sidebar',
56};
57
58export const ICON_SIZES = {
59 0: 'Very small icons',
60 10: 'Small icons',
61 20: 'Normal icons',
62 30: 'Large icons',
63 40: 'Very large icons',
64};
65// We need a bias to push all icon sizes into positive numbers
66// otherwise the settings screen won't sort the sizes correctly.
67// The bias should always be the "Normal icons" value
68export const iconSizeBias = 20;
69
48export const DEFAULT_APP_SETTINGS = { 70export const DEFAULT_APP_SETTINGS = {
49 autoLaunchInBackground: false, 71 autoLaunchInBackground: false,
50 runInBackground: true, 72 runInBackground: true,
@@ -83,6 +105,7 @@ export const DEFAULT_APP_SETTINGS = {
83 adaptableDarkMode: true, 105 adaptableDarkMode: true,
84 accentColor: '#7367f0', 106 accentColor: '#7367f0',
85 serviceRibbonWidth: 68, 107 serviceRibbonWidth: 68,
108 iconSize: iconSizeBias,
86 sentry: false, 109 sentry: false,
87}; 110};
88 111
diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js
index 8eb7c3b82..ee5e3615c 100644
--- a/src/containers/settings/EditSettingsScreen.js
+++ b/src/containers/settings/EditSettingsScreen.js
@@ -10,7 +10,9 @@ import UserStore from '../../stores/UserStore';
10import TodosStore from '../../features/todos/store'; 10import TodosStore from '../../features/todos/store';
11import Form from '../../lib/Form'; 11import Form from '../../lib/Form';
12import { APP_LOCALES, SPELLCHECKER_LOCALES } from '../../i18n/languages'; 12import { APP_LOCALES, SPELLCHECKER_LOCALES } from '../../i18n/languages';
13import { DEFAULT_APP_SETTINGS, HIBERNATION_STRATEGIES } from '../../config'; 13import {
14 DEFAULT_APP_SETTINGS, HIBERNATION_STRATEGIES, SIDEBAR_WIDTH, ICON_SIZES,
15} from '../../config';
14import { config as spellcheckerConfig } from '../../features/spellchecker'; 16import { config as spellcheckerConfig } from '../../features/spellchecker';
15 17
16import { getSelectOptions } from '../../helpers/i18n-helpers'; 18import { getSelectOptions } from '../../helpers/i18n-helpers';
@@ -118,6 +120,14 @@ const messages = defineMessages({
118 id: 'settings.app.form.universalDarkMode', 120 id: 'settings.app.form.universalDarkMode',
119 defaultMessage: '!!!Enable universal Dark Mode', 121 defaultMessage: '!!!Enable universal Dark Mode',
120 }, 122 },
123 serviceRibbonWidth: {
124 id: 'settings.app.form.serviceRibbonWidth',
125 defaultMessage: '!!!Sidebar width',
126 },
127 iconSize: {
128 id: 'settings.app.form.iconSize',
129 defaultMessage: '!!!Service icon size',
130 },
121 accentColor: { 131 accentColor: {
122 id: 'settings.app.form.accentColor', 132 id: 'settings.app.form.accentColor',
123 defaultMessage: '!!!Accent color', 133 defaultMessage: '!!!Accent color',
@@ -201,6 +211,8 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
201 darkMode: settingsData.darkMode, 211 darkMode: settingsData.darkMode,
202 adaptableDarkMode: settingsData.adaptableDarkMode, 212 adaptableDarkMode: settingsData.adaptableDarkMode,
203 universalDarkMode: settingsData.universalDarkMode, 213 universalDarkMode: settingsData.universalDarkMode,
214 serviceRibbonWidth: settingsData.serviceRibbonWidth,
215 iconSize: settingsData.iconSize,
204 accentColor: settingsData.accentColor, 216 accentColor: settingsData.accentColor,
205 showMessageBadgeWhenMuted: settingsData.showMessageBadgeWhenMuted, 217 showMessageBadgeWhenMuted: settingsData.showMessageBadgeWhenMuted,
206 enableSpellchecking: settingsData.enableSpellchecking, 218 enableSpellchecking: settingsData.enableSpellchecking,
@@ -253,6 +265,16 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
253 sort: false, 265 sort: false,
254 }); 266 });
255 267
268 const sidebarWidth = getSelectOptions({
269 locales: SIDEBAR_WIDTH,
270 sort: false,
271 });
272
273 const iconSizes = getSelectOptions({
274 locales: ICON_SIZES,
275 sort: false,
276 });
277
256 const spellcheckingLanguages = getSelectOptions({ 278 const spellcheckingLanguages = getSelectOptions({
257 locales: SPELLCHECKER_LOCALES, 279 locales: SPELLCHECKER_LOCALES,
258 automaticDetectionText: this.context.intl.formatMessage(globalMessages.spellcheckerAutomaticDetection), 280 automaticDetectionText: this.context.intl.formatMessage(globalMessages.spellcheckerAutomaticDetection),
@@ -396,6 +418,18 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
396 value: settings.all.app.universalDarkMode, 418 value: settings.all.app.universalDarkMode,
397 default: DEFAULT_APP_SETTINGS.universalDarkMode, 419 default: DEFAULT_APP_SETTINGS.universalDarkMode,
398 }, 420 },
421 serviceRibbonWidth: {
422 label: intl.formatMessage(messages.serviceRibbonWidth),
423 value: settings.all.app.serviceRibbonWidth,
424 default: DEFAULT_APP_SETTINGS.serviceRibbonWidth,
425 options: sidebarWidth,
426 },
427 iconSize: {
428 label: intl.formatMessage(messages.iconSize),
429 value: settings.all.app.iconSize,
430 default: DEFAULT_APP_SETTINGS.iconSize,
431 options: iconSizes,
432 },
399 accentColor: { 433 accentColor: {
400 label: intl.formatMessage(messages.accentColor), 434 label: intl.formatMessage(messages.accentColor),
401 value: settings.all.app.accentColor, 435 value: settings.all.app.accentColor,
diff --git a/src/features/appearance/index.js b/src/features/appearance/index.js
index 8a81054df..6dcdfc986 100644
--- a/src/features/appearance/index.js
+++ b/src/features/appearance/index.js
@@ -1,6 +1,6 @@
1import { reaction } from 'mobx'; 1import { reaction } from 'mobx';
2import themeInfo from '../../assets/themeInfo.json'; 2import themeInfo from '../../assets/themeInfo.json';
3import { DEFAULT_APP_SETTINGS } from '../../config'; 3import { DEFAULT_APP_SETTINGS, iconSizeBias } from '../../config';
4 4
5const STYLE_ELEMENT_ID = 'custom-appearance-style'; 5const STYLE_ELEMENT_ID = 'custom-appearance-style';
6 6
@@ -42,17 +42,23 @@ function generateAccentStyle(color) {
42 return style; 42 return style;
43} 43}
44 44
45function generateServiceRibbonWidthStyle(width) { 45function generateServiceRibbonWidthStyle(widthStr, iconSizeStr) {
46 const width = Number(widthStr);
47 const iconSize = Number(iconSizeStr) - iconSizeBias;
48
46 return ` 49 return `
47 .sidebar { 50 .sidebar {
48 width: ${width}px !important; 51 width: ${width}px !important;
49 } 52 }
50 .tab-item { 53 .tab-item {
51 width: ${width - 2}px !important; 54 width: ${width - 2}px !important;
52 height: ${width - 5}px !important; 55 height: ${width - 5 + iconSize}px !important;
53 } 56 }
54 .tab-item .tab-item__icon { 57 .tab-item .tab-item__icon {
55 width: ${width / 2}px !important; 58 width: ${(width / 2) + iconSize}px !important;
59 }
60 .sidebar__button {
61 font-size: ${width / 3}px !important;
56 } 62 }
57 `; 63 `;
58} 64}
@@ -63,13 +69,15 @@ function generateStyle(settings) {
63 const { 69 const {
64 accentColor, 70 accentColor,
65 serviceRibbonWidth, 71 serviceRibbonWidth,
72 iconSize,
66 } = settings; 73 } = settings;
67 74
68 if (accentColor !== DEFAULT_APP_SETTINGS.accentColor) { 75 if (accentColor !== DEFAULT_APP_SETTINGS.accentColor) {
69 style += generateAccentStyle(accentColor); 76 style += generateAccentStyle(accentColor);
70 } 77 }
71 if (serviceRibbonWidth !== DEFAULT_APP_SETTINGS.serviceRibbonWidth) { 78 if (serviceRibbonWidth !== DEFAULT_APP_SETTINGS.serviceRibbonWidth
72 style += generateServiceRibbonWidthStyle(serviceRibbonWidth); 79 || iconSize !== DEFAULT_APP_SETTINGS.iconSize) {
80 style += generateServiceRibbonWidthStyle(serviceRibbonWidth, iconSize);
73 } 81 }
74 82
75 return style; 83 return style;
@@ -104,4 +112,13 @@ export default function initAppearance(stores) {
104 updateStyle(settings.all.app); 112 updateStyle(settings.all.app);
105 }, 113 },
106 ); 114 );
115 // Update icon size
116 reaction(
117 () => (
118 settings.all.app.iconSize
119 ),
120 () => {
121 updateStyle(settings.all.app);
122 },
123 );
107} 124}
diff --git a/src/features/publishDebugInfo/Component.js b/src/features/publishDebugInfo/Component.js
index be90a1f99..1f1b0ed45 100644
--- a/src/features/publishDebugInfo/Component.js
+++ b/src/features/publishDebugInfo/Component.js
@@ -1,17 +1,17 @@
1import React, { Component } from 'react'; 1import { H1 } from '@meetfranz/ui';
2import { inject, observer } from 'mobx-react';
2import PropTypes from 'prop-types'; 3import PropTypes from 'prop-types';
3import { observer, inject } from 'mobx-react'; 4import React, { Component } from 'react';
4import { defineMessages, intlShape } from 'react-intl'; 5import { defineMessages, intlShape } from 'react-intl';
5import { H1 } from '@meetfranz/ui';
6import injectSheet from 'react-jss'; 6import injectSheet from 'react-jss';
7 7import { state as ModalState } from '.';
8import Input from '../../components/ui/Input'; 8import { sendAuthRequest } from '../../api/utils/auth';
9import Button from '../../components/ui/Button'; 9import Button from '../../components/ui/Button';
10import Input from '../../components/ui/Input';
10import Modal from '../../components/ui/Modal'; 11import Modal from '../../components/ui/Modal';
11import { state as ModalState } from '.';
12import AppStore from '../../stores/AppStore';
13import { DEBUG_API } from '../../config'; 12import { DEBUG_API } from '../../config';
14import { sendAuthRequest } from '../../api/utils/auth'; 13import AppStore from '../../stores/AppStore';
14
15 15
16const messages = defineMessages({ 16const messages = defineMessages({
17 title: { 17 title: {
@@ -79,7 +79,7 @@ const styles = theme => ({
79 }, 79 },
80}); 80});
81 81
82export default @injectSheet(styles) @inject('stores') @observer class PublishDebugLogModal extends Component { 82export default @injectSheet(styles) @inject('stores', 'actions') @observer class PublishDebugLogModal extends Component {
83 static propTypes = { 83 static propTypes = {
84 classes: PropTypes.object.isRequired, 84 classes: PropTypes.object.isRequired,
85 }; 85 };
diff --git a/src/i18n/locales/af.json b/src/i18n/locales/af.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/af.json
+++ b/src/i18n/locales/af.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json
index 0d5bf2428..43521815f 100644
--- a/src/i18n/locales/ar.json
+++ b/src/i18n/locales/ar.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/bs.json b/src/i18n/locales/bs.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/bs.json
+++ b/src/i18n/locales/bs.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/ca.json b/src/i18n/locales/ca.json
index 8445a24ec..4d34e956b 100644
--- a/src/i18n/locales/ca.json
+++ b/src/i18n/locales/ca.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Idioma", 284 "settings.app.form.language": "Idioma",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Mostra les pestanyes dels serveis desactivats", 296 "settings.app.form.showDisabledServices": "Mostra les pestanyes dels serveis desactivats",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Mostra la insígnia de missatges no llegits quan les notificacions estiguin desactivades", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Mostra la insígnia de missatges no llegits quan les notificacions estiguin desactivades",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/cs.json b/src/i18n/locales/cs.json
index 1b351e61b..02caacf2b 100644
--- a/src/i18n/locales/cs.json
+++ b/src/i18n/locales/cs.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Jazyk", 284 "settings.app.form.language": "Jazyk",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Zobrazit záložky vypnutých služeb", 296 "settings.app.form.showDisabledServices": "Zobrazit záložky vypnutých služeb",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Zobrazit odznak pro nepřečtené zprávy když jsou upozornění vypnutá", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Zobrazit odznak pro nepřečtené zprávy když jsou upozornění vypnutá",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/da.json b/src/i18n/locales/da.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/da.json
+++ b/src/i18n/locales/da.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/de.json b/src/i18n/locales/de.json
index d25b3333f..184bf6604 100644
--- a/src/i18n/locales/de.json
+++ b/src/i18n/locales/de.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Ferdi Todos aktivieren", 278 "settings.app.form.enableTodos": "Ferdi Todos aktivieren",
279 "settings.app.form.hibernate": "\"Service Hibernation\" aktivieren", 279 "settings.app.form.hibernate": "\"Service Hibernation\" aktivieren",
280 "settings.app.form.hibernationStrategy": "\"Service Hibernation\"-Strategie", 280 "settings.app.form.hibernationStrategy": "\"Service Hibernation\"-Strategie",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Alle Arbeitsbereiche geladen lassen", 283 "settings.app.form.keepAllWorkspacesLoaded": "Alle Arbeitsbereiche geladen lassen",
283 "settings.app.form.language": "Sprache", 284 "settings.app.form.language": "Sprache",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "Bis", 292 "settings.app.form.scheduledDNDStart": "Bis",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Deaktivierte Services-Tabs anzeigen", 296 "settings.app.form.showDisabledServices": "Deaktivierte Services-Tabs anzeigen",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Ungelesene Nachrichten zeigen, wenn die Benachrichtigungen deaktiviert sind", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Ungelesene Nachrichten zeigen, wenn die Benachrichtigungen deaktiviert sind",
296 "settings.app.form.showServiceNavigationBar": "Navigationsleiste immer anzeigen", 298 "settings.app.form.showServiceNavigationBar": "Navigationsleiste immer anzeigen",
diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json
index 17f77b609..44411cdad 100644
--- a/src/i18n/locales/defaultMessages.json
+++ b/src/i18n/locales/defaultMessages.json
@@ -4087,416 +4087,442 @@
4087 "defaultMessage": "!!!Launch Ferdi on start", 4087 "defaultMessage": "!!!Launch Ferdi on start",
4088 "end": { 4088 "end": {
4089 "column": 3, 4089 "column": 3,
4090 "line": 32 4090 "line": 34
4091 }, 4091 },
4092 "file": "src/containers/settings/EditSettingsScreen.js", 4092 "file": "src/containers/settings/EditSettingsScreen.js",
4093 "id": "settings.app.form.autoLaunchOnStart", 4093 "id": "settings.app.form.autoLaunchOnStart",
4094 "start": { 4094 "start": {
4095 "column": 21, 4095 "column": 21,
4096 "line": 29 4096 "line": 31
4097 } 4097 }
4098 }, 4098 },
4099 { 4099 {
4100 "defaultMessage": "!!!Open in background", 4100 "defaultMessage": "!!!Open in background",
4101 "end": { 4101 "end": {
4102 "column": 3, 4102 "column": 3,
4103 "line": 36 4103 "line": 38
4104 }, 4104 },
4105 "file": "src/containers/settings/EditSettingsScreen.js", 4105 "file": "src/containers/settings/EditSettingsScreen.js",
4106 "id": "settings.app.form.autoLaunchInBackground", 4106 "id": "settings.app.form.autoLaunchInBackground",
4107 "start": { 4107 "start": {
4108 "column": 26, 4108 "column": 26,
4109 "line": 33 4109 "line": 35
4110 } 4110 }
4111 }, 4111 },
4112 { 4112 {
4113 "defaultMessage": "!!!Keep Ferdi in background when closing the window", 4113 "defaultMessage": "!!!Keep Ferdi in background when closing the window",
4114 "end": { 4114 "end": {
4115 "column": 3, 4115 "column": 3,
4116 "line": 40 4116 "line": 42
4117 }, 4117 },
4118 "file": "src/containers/settings/EditSettingsScreen.js", 4118 "file": "src/containers/settings/EditSettingsScreen.js",
4119 "id": "settings.app.form.runInBackground", 4119 "id": "settings.app.form.runInBackground",
4120 "start": { 4120 "start": {
4121 "column": 19, 4121 "column": 19,
4122 "line": 37 4122 "line": 39
4123 } 4123 }
4124 }, 4124 },
4125 { 4125 {
4126 "defaultMessage": "!!!Start minimized in tray", 4126 "defaultMessage": "!!!Start minimized in tray",
4127 "end": { 4127 "end": {
4128 "column": 3, 4128 "column": 3,
4129 "line": 44 4129 "line": 46
4130 }, 4130 },
4131 "file": "src/containers/settings/EditSettingsScreen.js", 4131 "file": "src/containers/settings/EditSettingsScreen.js",
4132 "id": "settings.app.form.startMinimized", 4132 "id": "settings.app.form.startMinimized",
4133 "start": { 4133 "start": {
4134 "column": 18, 4134 "column": 18,
4135 "line": 41 4135 "line": 43
4136 } 4136 }
4137 }, 4137 },
4138 { 4138 {
4139 "defaultMessage": "!!!Always show Ferdi in system tray", 4139 "defaultMessage": "!!!Always show Ferdi in system tray",
4140 "end": { 4140 "end": {
4141 "column": 3, 4141 "column": 3,
4142 "line": 48 4142 "line": 50
4143 }, 4143 },
4144 "file": "src/containers/settings/EditSettingsScreen.js", 4144 "file": "src/containers/settings/EditSettingsScreen.js",
4145 "id": "settings.app.form.enableSystemTray", 4145 "id": "settings.app.form.enableSystemTray",
4146 "start": { 4146 "start": {
4147 "column": 20, 4147 "column": 20,
4148 "line": 45 4148 "line": 47
4149 } 4149 }
4150 }, 4150 },
4151 { 4151 {
4152 "defaultMessage": "!!!Minimize Ferdi to system tray", 4152 "defaultMessage": "!!!Minimize Ferdi to system tray",
4153 "end": { 4153 "end": {
4154 "column": 3, 4154 "column": 3,
4155 "line": 52 4155 "line": 54
4156 }, 4156 },
4157 "file": "src/containers/settings/EditSettingsScreen.js", 4157 "file": "src/containers/settings/EditSettingsScreen.js",
4158 "id": "settings.app.form.minimizeToSystemTray", 4158 "id": "settings.app.form.minimizeToSystemTray",
4159 "start": { 4159 "start": {
4160 "column": 24, 4160 "column": 24,
4161 "line": 49 4161 "line": 51
4162 } 4162 }
4163 }, 4163 },
4164 { 4164 {
4165 "defaultMessage": "!!!Don't show message content in notifications", 4165 "defaultMessage": "!!!Don't show message content in notifications",
4166 "end": { 4166 "end": {
4167 "column": 3, 4167 "column": 3,
4168 "line": 56 4168 "line": 58
4169 }, 4169 },
4170 "file": "src/containers/settings/EditSettingsScreen.js", 4170 "file": "src/containers/settings/EditSettingsScreen.js",
4171 "id": "settings.app.form.privateNotifications", 4171 "id": "settings.app.form.privateNotifications",
4172 "start": { 4172 "start": {
4173 "column": 24, 4173 "column": 24,
4174 "line": 53 4174 "line": 55
4175 } 4175 }
4176 }, 4176 },
4177 { 4177 {
4178 "defaultMessage": "!!!Always show service navigation bar", 4178 "defaultMessage": "!!!Always show service navigation bar",
4179 "end": { 4179 "end": {
4180 "column": 3, 4180 "column": 3,
4181 "line": 60 4181 "line": 62
4182 }, 4182 },
4183 "file": "src/containers/settings/EditSettingsScreen.js", 4183 "file": "src/containers/settings/EditSettingsScreen.js",
4184 "id": "settings.app.form.showServiceNavigationBar", 4184 "id": "settings.app.form.showServiceNavigationBar",
4185 "start": { 4185 "start": {
4186 "column": 28, 4186 "column": 28,
4187 "line": 57 4187 "line": 59
4188 } 4188 }
4189 }, 4189 },
4190 { 4190 {
4191 "defaultMessage": "!!!Send telemetry data", 4191 "defaultMessage": "!!!Send telemetry data",
4192 "end": { 4192 "end": {
4193 "column": 3, 4193 "column": 3,
4194 "line": 64 4194 "line": 66
4195 }, 4195 },
4196 "file": "src/containers/settings/EditSettingsScreen.js", 4196 "file": "src/containers/settings/EditSettingsScreen.js",
4197 "id": "settings.app.form.sentry", 4197 "id": "settings.app.form.sentry",
4198 "start": { 4198 "start": {
4199 "column": 10, 4199 "column": 10,
4200 "line": 61 4200 "line": 63
4201 } 4201 }
4202 }, 4202 },
4203 { 4203 {
4204 "defaultMessage": "!!!Enable service hibernation", 4204 "defaultMessage": "!!!Enable service hibernation",
4205 "end": { 4205 "end": {
4206 "column": 3, 4206 "column": 3,
4207 "line": 68 4207 "line": 70
4208 }, 4208 },
4209 "file": "src/containers/settings/EditSettingsScreen.js", 4209 "file": "src/containers/settings/EditSettingsScreen.js",
4210 "id": "settings.app.form.hibernate", 4210 "id": "settings.app.form.hibernate",
4211 "start": { 4211 "start": {
4212 "column": 13, 4212 "column": 13,
4213 "line": 65 4213 "line": 67
4214 } 4214 }
4215 }, 4215 },
4216 { 4216 {
4217 "defaultMessage": "!!!Hibernation strategy", 4217 "defaultMessage": "!!!Hibernation strategy",
4218 "end": { 4218 "end": {
4219 "column": 3, 4219 "column": 3,
4220 "line": 72 4220 "line": 74
4221 }, 4221 },
4222 "file": "src/containers/settings/EditSettingsScreen.js", 4222 "file": "src/containers/settings/EditSettingsScreen.js",
4223 "id": "settings.app.form.hibernationStrategy", 4223 "id": "settings.app.form.hibernationStrategy",
4224 "start": { 4224 "start": {
4225 "column": 23, 4225 "column": 23,
4226 "line": 69 4226 "line": 71
4227 } 4227 }
4228 }, 4228 },
4229 { 4229 {
4230 "defaultMessage": "!!!Server", 4230 "defaultMessage": "!!!Server",
4231 "end": { 4231 "end": {
4232 "column": 3, 4232 "column": 3,
4233 "line": 76 4233 "line": 78
4234 }, 4234 },
4235 "file": "src/containers/settings/EditSettingsScreen.js", 4235 "file": "src/containers/settings/EditSettingsScreen.js",
4236 "id": "settings.app.form.server", 4236 "id": "settings.app.form.server",
4237 "start": { 4237 "start": {
4238 "column": 10, 4238 "column": 10,
4239 "line": 73 4239 "line": 75
4240 } 4240 }
4241 }, 4241 },
4242 { 4242 {
4243 "defaultMessage": "!!!Todo Server", 4243 "defaultMessage": "!!!Todo Server",
4244 "end": { 4244 "end": {
4245 "column": 3, 4245 "column": 3,
4246 "line": 80 4246 "line": 82
4247 }, 4247 },
4248 "file": "src/containers/settings/EditSettingsScreen.js", 4248 "file": "src/containers/settings/EditSettingsScreen.js",
4249 "id": "settings.app.form.todoServer", 4249 "id": "settings.app.form.todoServer",
4250 "start": { 4250 "start": {
4251 "column": 14, 4251 "column": 14,
4252 "line": 77 4252 "line": 79
4253 } 4253 }
4254 }, 4254 },
4255 { 4255 {
4256 "defaultMessage": "!!!Enable Password Lock", 4256 "defaultMessage": "!!!Enable Password Lock",
4257 "end": { 4257 "end": {
4258 "column": 3, 4258 "column": 3,
4259 "line": 84 4259 "line": 86
4260 }, 4260 },
4261 "file": "src/containers/settings/EditSettingsScreen.js", 4261 "file": "src/containers/settings/EditSettingsScreen.js",
4262 "id": "settings.app.form.enableLock", 4262 "id": "settings.app.form.enableLock",
4263 "start": { 4263 "start": {
4264 "column": 14, 4264 "column": 14,
4265 "line": 81 4265 "line": 83
4266 } 4266 }
4267 }, 4267 },
4268 { 4268 {
4269 "defaultMessage": "!!!Password", 4269 "defaultMessage": "!!!Password",
4270 "end": { 4270 "end": {
4271 "column": 3, 4271 "column": 3,
4272 "line": 88 4272 "line": 90
4273 }, 4273 },
4274 "file": "src/containers/settings/EditSettingsScreen.js", 4274 "file": "src/containers/settings/EditSettingsScreen.js",
4275 "id": "settings.app.form.lockPassword", 4275 "id": "settings.app.form.lockPassword",
4276 "start": { 4276 "start": {
4277 "column": 16, 4277 "column": 16,
4278 "line": 85 4278 "line": 87
4279 } 4279 }
4280 }, 4280 },
4281 { 4281 {
4282 "defaultMessage": "!!!Lock after inactivity", 4282 "defaultMessage": "!!!Lock after inactivity",
4283 "end": { 4283 "end": {
4284 "column": 3, 4284 "column": 3,
4285 "line": 92 4285 "line": 94
4286 }, 4286 },
4287 "file": "src/containers/settings/EditSettingsScreen.js", 4287 "file": "src/containers/settings/EditSettingsScreen.js",
4288 "id": "settings.app.form.inactivityLock", 4288 "id": "settings.app.form.inactivityLock",
4289 "start": { 4289 "start": {
4290 "column": 18, 4290 "column": 18,
4291 "line": 89 4291 "line": 91
4292 } 4292 }
4293 }, 4293 },
4294 { 4294 {
4295 "defaultMessage": "!!!Enable scheduled Do-not-Disturb", 4295 "defaultMessage": "!!!Enable scheduled Do-not-Disturb",
4296 "end": { 4296 "end": {
4297 "column": 3, 4297 "column": 3,
4298 "line": 96 4298 "line": 98
4299 }, 4299 },
4300 "file": "src/containers/settings/EditSettingsScreen.js", 4300 "file": "src/containers/settings/EditSettingsScreen.js",
4301 "id": "settings.app.form.scheduledDNDEnabled", 4301 "id": "settings.app.form.scheduledDNDEnabled",
4302 "start": { 4302 "start": {
4303 "column": 23, 4303 "column": 23,
4304 "line": 93 4304 "line": 95
4305 } 4305 }
4306 }, 4306 },
4307 { 4307 {
4308 "defaultMessage": "!!!From", 4308 "defaultMessage": "!!!From",
4309 "end": { 4309 "end": {
4310 "column": 3, 4310 "column": 3,
4311 "line": 100 4311 "line": 102
4312 }, 4312 },
4313 "file": "src/containers/settings/EditSettingsScreen.js", 4313 "file": "src/containers/settings/EditSettingsScreen.js",
4314 "id": "settings.app.form.scheduledDNDStart", 4314 "id": "settings.app.form.scheduledDNDStart",
4315 "start": { 4315 "start": {
4316 "column": 21, 4316 "column": 21,
4317 "line": 97 4317 "line": 99
4318 } 4318 }
4319 }, 4319 },
4320 { 4320 {
4321 "defaultMessage": "!!!To", 4321 "defaultMessage": "!!!To",
4322 "end": { 4322 "end": {
4323 "column": 3, 4323 "column": 3,
4324 "line": 104 4324 "line": 106
4325 }, 4325 },
4326 "file": "src/containers/settings/EditSettingsScreen.js", 4326 "file": "src/containers/settings/EditSettingsScreen.js",
4327 "id": "settings.app.form.scheduledDNDEnd", 4327 "id": "settings.app.form.scheduledDNDEnd",
4328 "start": { 4328 "start": {
4329 "column": 19, 4329 "column": 19,
4330 "line": 101 4330 "line": 103
4331 } 4331 }
4332 }, 4332 },
4333 { 4333 {
4334 "defaultMessage": "!!!Language", 4334 "defaultMessage": "!!!Language",
4335 "end": { 4335 "end": {
4336 "column": 3, 4336 "column": 3,
4337 "line": 108 4337 "line": 110
4338 }, 4338 },
4339 "file": "src/containers/settings/EditSettingsScreen.js", 4339 "file": "src/containers/settings/EditSettingsScreen.js",
4340 "id": "settings.app.form.language", 4340 "id": "settings.app.form.language",
4341 "start": { 4341 "start": {
4342 "column": 12, 4342 "column": 12,
4343 "line": 105 4343 "line": 107
4344 } 4344 }
4345 }, 4345 },
4346 { 4346 {
4347 "defaultMessage": "!!!Dark Mode", 4347 "defaultMessage": "!!!Dark Mode",
4348 "end": { 4348 "end": {
4349 "column": 3, 4349 "column": 3,
4350 "line": 112 4350 "line": 114
4351 }, 4351 },
4352 "file": "src/containers/settings/EditSettingsScreen.js", 4352 "file": "src/containers/settings/EditSettingsScreen.js",
4353 "id": "settings.app.form.darkMode", 4353 "id": "settings.app.form.darkMode",
4354 "start": { 4354 "start": {
4355 "column": 12, 4355 "column": 12,
4356 "line": 109 4356 "line": 111
4357 } 4357 }
4358 }, 4358 },
4359 { 4359 {
4360 "defaultMessage": "!!!Synchronize dark mode with my Mac's dark mode setting", 4360 "defaultMessage": "!!!Synchronize dark mode with my Mac's dark mode setting",
4361 "end": { 4361 "end": {
4362 "column": 3, 4362 "column": 3,
4363 "line": 116 4363 "line": 118
4364 }, 4364 },
4365 "file": "src/containers/settings/EditSettingsScreen.js", 4365 "file": "src/containers/settings/EditSettingsScreen.js",
4366 "id": "settings.app.form.adaptableDarkMode", 4366 "id": "settings.app.form.adaptableDarkMode",
4367 "start": { 4367 "start": {
4368 "column": 21, 4368 "column": 21,
4369 "line": 113 4369 "line": 115
4370 } 4370 }
4371 }, 4371 },
4372 { 4372 {
4373 "defaultMessage": "!!!Enable universal Dark Mode", 4373 "defaultMessage": "!!!Enable universal Dark Mode",
4374 "end": { 4374 "end": {
4375 "column": 3, 4375 "column": 3,
4376 "line": 120 4376 "line": 122
4377 }, 4377 },
4378 "file": "src/containers/settings/EditSettingsScreen.js", 4378 "file": "src/containers/settings/EditSettingsScreen.js",
4379 "id": "settings.app.form.universalDarkMode", 4379 "id": "settings.app.form.universalDarkMode",
4380 "start": { 4380 "start": {
4381 "column": 21, 4381 "column": 21,
4382 "line": 117 4382 "line": 119
4383 }
4384 },
4385 {
4386 "defaultMessage": "!!!Sidebar width",
4387 "end": {
4388 "column": 3,
4389 "line": 126
4390 },
4391 "file": "src/containers/settings/EditSettingsScreen.js",
4392 "id": "settings.app.form.serviceRibbonWidth",
4393 "start": {
4394 "column": 22,
4395 "line": 123
4396 }
4397 },
4398 {
4399 "defaultMessage": "!!!Service icon size",
4400 "end": {
4401 "column": 3,
4402 "line": 130
4403 },
4404 "file": "src/containers/settings/EditSettingsScreen.js",
4405 "id": "settings.app.form.iconSize",
4406 "start": {
4407 "column": 12,
4408 "line": 127
4383 } 4409 }
4384 }, 4410 },
4385 { 4411 {
4386 "defaultMessage": "!!!Accent color", 4412 "defaultMessage": "!!!Accent color",
4387 "end": { 4413 "end": {
4388 "column": 3, 4414 "column": 3,
4389 "line": 124 4415 "line": 134
4390 }, 4416 },
4391 "file": "src/containers/settings/EditSettingsScreen.js", 4417 "file": "src/containers/settings/EditSettingsScreen.js",
4392 "id": "settings.app.form.accentColor", 4418 "id": "settings.app.form.accentColor",
4393 "start": { 4419 "start": {
4394 "column": 15, 4420 "column": 15,
4395 "line": 121 4421 "line": 131
4396 } 4422 }
4397 }, 4423 },
4398 { 4424 {
4399 "defaultMessage": "!!!Display disabled services tabs", 4425 "defaultMessage": "!!!Display disabled services tabs",
4400 "end": { 4426 "end": {
4401 "column": 3, 4427 "column": 3,
4402 "line": 128 4428 "line": 138
4403 }, 4429 },
4404 "file": "src/containers/settings/EditSettingsScreen.js", 4430 "file": "src/containers/settings/EditSettingsScreen.js",
4405 "id": "settings.app.form.showDisabledServices", 4431 "id": "settings.app.form.showDisabledServices",
4406 "start": { 4432 "start": {
4407 "column": 24, 4433 "column": 24,
4408 "line": 125 4434 "line": 135
4409 } 4435 }
4410 }, 4436 },
4411 { 4437 {
4412 "defaultMessage": "!!!Show unread message badge when notifications are disabled", 4438 "defaultMessage": "!!!Show unread message badge when notifications are disabled",
4413 "end": { 4439 "end": {
4414 "column": 3, 4440 "column": 3,
4415 "line": 132 4441 "line": 142
4416 }, 4442 },
4417 "file": "src/containers/settings/EditSettingsScreen.js", 4443 "file": "src/containers/settings/EditSettingsScreen.js",
4418 "id": "settings.app.form.showMessagesBadgesWhenMuted", 4444 "id": "settings.app.form.showMessagesBadgesWhenMuted",
4419 "start": { 4445 "start": {
4420 "column": 29, 4446 "column": 29,
4421 "line": 129 4447 "line": 139
4422 } 4448 }
4423 }, 4449 },
4424 { 4450 {
4425 "defaultMessage": "!!!Enable spell checking", 4451 "defaultMessage": "!!!Enable spell checking",
4426 "end": { 4452 "end": {
4427 "column": 3, 4453 "column": 3,
4428 "line": 136 4454 "line": 146
4429 }, 4455 },
4430 "file": "src/containers/settings/EditSettingsScreen.js", 4456 "file": "src/containers/settings/EditSettingsScreen.js",
4431 "id": "settings.app.form.enableSpellchecking", 4457 "id": "settings.app.form.enableSpellchecking",
4432 "start": { 4458 "start": {
4433 "column": 23, 4459 "column": 23,
4434 "line": 133 4460 "line": 143
4435 } 4461 }
4436 }, 4462 },
4437 { 4463 {
4438 "defaultMessage": "!!!Enable GPU Acceleration", 4464 "defaultMessage": "!!!Enable GPU Acceleration",
4439 "end": { 4465 "end": {
4440 "column": 3, 4466 "column": 3,
4441 "line": 140 4467 "line": 150
4442 }, 4468 },
4443 "file": "src/containers/settings/EditSettingsScreen.js", 4469 "file": "src/containers/settings/EditSettingsScreen.js",
4444 "id": "settings.app.form.enableGPUAcceleration", 4470 "id": "settings.app.form.enableGPUAcceleration",
4445 "start": { 4471 "start": {
4446 "column": 25, 4472 "column": 25,
4447 "line": 137 4473 "line": 147
4448 } 4474 }
4449 }, 4475 },
4450 { 4476 {
4451 "defaultMessage": "!!!Include beta versions", 4477 "defaultMessage": "!!!Include beta versions",
4452 "end": { 4478 "end": {
4453 "column": 3, 4479 "column": 3,
4454 "line": 144 4480 "line": 154
4455 }, 4481 },
4456 "file": "src/containers/settings/EditSettingsScreen.js", 4482 "file": "src/containers/settings/EditSettingsScreen.js",
4457 "id": "settings.app.form.beta", 4483 "id": "settings.app.form.beta",
4458 "start": { 4484 "start": {
4459 "column": 8, 4485 "column": 8,
4460 "line": 141 4486 "line": 151
4461 } 4487 }
4462 }, 4488 },
4463 { 4489 {
4464 "defaultMessage": "!!!Disable updates", 4490 "defaultMessage": "!!!Disable updates",
4465 "end": { 4491 "end": {
4466 "column": 3, 4492 "column": 3,
4467 "line": 148 4493 "line": 158
4468 }, 4494 },
4469 "file": "src/containers/settings/EditSettingsScreen.js", 4495 "file": "src/containers/settings/EditSettingsScreen.js",
4470 "id": "settings.app.form.noUpdates", 4496 "id": "settings.app.form.noUpdates",
4471 "start": { 4497 "start": {
4472 "column": 13, 4498 "column": 13,
4473 "line": 145 4499 "line": 155
4474 } 4500 }
4475 }, 4501 },
4476 { 4502 {
4477 "defaultMessage": "!!!Enable Franz Todos", 4503 "defaultMessage": "!!!Enable Franz Todos",
4478 "end": { 4504 "end": {
4479 "column": 3, 4505 "column": 3,
4480 "line": 152 4506 "line": 162
4481 }, 4507 },
4482 "file": "src/containers/settings/EditSettingsScreen.js", 4508 "file": "src/containers/settings/EditSettingsScreen.js",
4483 "id": "settings.app.form.enableTodos", 4509 "id": "settings.app.form.enableTodos",
4484 "start": { 4510 "start": {
4485 "column": 15, 4511 "column": 15,
4486 "line": 149 4512 "line": 159
4487 } 4513 }
4488 }, 4514 },
4489 { 4515 {
4490 "defaultMessage": "!!!Keep all workspaces loaded", 4516 "defaultMessage": "!!!Keep all workspaces loaded",
4491 "end": { 4517 "end": {
4492 "column": 3, 4518 "column": 3,
4493 "line": 156 4519 "line": 166
4494 }, 4520 },
4495 "file": "src/containers/settings/EditSettingsScreen.js", 4521 "file": "src/containers/settings/EditSettingsScreen.js",
4496 "id": "settings.app.form.keepAllWorkspacesLoaded", 4522 "id": "settings.app.form.keepAllWorkspacesLoaded",
4497 "start": { 4523 "start": {
4498 "column": 27, 4524 "column": 27,
4499 "line": 153 4525 "line": 163
4500 } 4526 }
4501 } 4527 }
4502 ], 4528 ],
diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json
index 836d9fd2a..60902dc2f 100644
--- a/src/i18n/locales/el.json
+++ b/src/i18n/locales/el.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Γλώσσα", 284 "settings.app.form.language": "Γλώσσα",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Προβολή καρτελών των απενεργοποιημένων υπηρεσιών", 296 "settings.app.form.showDisabledServices": "Προβολή καρτελών των απενεργοποιημένων υπηρεσιών",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Προβολή του εικονιδίου μη αναγνωσμένου μηνύματος όταν οι ειδοποιήσεις είναι απενεργοποιημένες", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Προβολή του εικονιδίου μη αναγνωσμένου μηνύματος όταν οι ειδοποιήσεις είναι απενεργοποιημένες",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index ce41bb9ce..97be15fed 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json
index a3cb64a52..5663e26c8 100644
--- a/src/i18n/locales/es.json
+++ b/src/i18n/locales/es.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Activar Ferdi Todos", 278 "settings.app.form.enableTodos": "Activar Ferdi Todos",
279 "settings.app.form.hibernate": "Habilitar hibernación del servicio", 279 "settings.app.form.hibernate": "Habilitar hibernación del servicio",
280 "settings.app.form.hibernationStrategy": "Estrategia de hibernación", 280 "settings.app.form.hibernationStrategy": "Estrategia de hibernación",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Mantener todas las Áreas de trabajo cargadas", 283 "settings.app.form.keepAllWorkspacesLoaded": "Mantener todas las Áreas de trabajo cargadas",
283 "settings.app.form.language": "Idioma", 284 "settings.app.form.language": "Idioma",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "De", 292 "settings.app.form.scheduledDNDStart": "De",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Servidor", 294 "settings.app.form.server": "Servidor",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Mostrar pestañas de servicios desactivados", 296 "settings.app.form.showDisabledServices": "Mostrar pestañas de servicios desactivados",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Mostrar la insignia de mensajes sin leer cuando las notificaciones están desactivadas", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Mostrar la insignia de mensajes sin leer cuando las notificaciones están desactivadas",
296 "settings.app.form.showServiceNavigationBar": "Mostrar siempre barra de navegación", 298 "settings.app.form.showServiceNavigationBar": "Mostrar siempre barra de navegación",
diff --git a/src/i18n/locales/fi.json b/src/i18n/locales/fi.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/fi.json
+++ b/src/i18n/locales/fi.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json
index 057d7b11e..96d081602 100644
--- a/src/i18n/locales/fr.json
+++ b/src/i18n/locales/fr.json
@@ -26,11 +26,11 @@
26 "feature.planSelection.personal.text": "Plus de services, pas d'attente - idéal pour un usage personnel.", 26 "feature.planSelection.personal.text": "Plus de services, pas d'attente - idéal pour un usage personnel.",
27 "feature.planSelection.pricesBasedOnAnnualPayment": "Tous les prix basés sur un paiement annuel", 27 "feature.planSelection.pricesBasedOnAnnualPayment": "Tous les prix basés sur un paiement annuel",
28 "feature.planSelection.pro.text": "Des services illimités et des fonctionnalités professionnelles pour vous - et votre équipe.", 28 "feature.planSelection.pro.text": "Des services illimités et des fonctionnalités professionnelles pour vous - et votre équipe.",
29 "feature.publishDebugInfo.error": "There was an error while trying to publish the debug information. Please try again later or view the console for more information.", 29 "feature.publishDebugInfo.error": "Il y a eu une erreur en essayant de publier les informations de débogage. Veuillez réessayer plus tard ou consulter la console pour plus d'informations.",
30 "feature.publishDebugInfo.info": "Publishing your debug information helps us find issues and errors in Ferdi. By publishing your debug information you accept Ferdi Debugger's privacy policy and terms of service", 30 "feature.publishDebugInfo.info": "La publication de vos informations de débogage nous aide à trouver des problèmes et des erreurs dans Ferdi. En publiant vos informations de débogage, vous acceptez la politique de confidentialité et les conditions d'utilisation de Ferdi Debugger",
31 "feature.publishDebugInfo.privacy": "Politique de confidentialité", 31 "feature.publishDebugInfo.privacy": "Politique de confidentialité",
32 "feature.publishDebugInfo.publish": "Accepter et publier", 32 "feature.publishDebugInfo.publish": "Accepter et publier",
33 "feature.publishDebugInfo.published": "Your debug log was published and is now availible at", 33 "feature.publishDebugInfo.published": "Votre journal de débogage a été publié et est maintenant disponible à",
34 "feature.publishDebugInfo.terms": "Conditions d'utilisation", 34 "feature.publishDebugInfo.terms": "Conditions d'utilisation",
35 "feature.publishDebugInfo.title": "Publier les informations de débogage", 35 "feature.publishDebugInfo.title": "Publier les informations de débogage",
36 "feature.quickSwitch.info": "Sélectionner un service avec TAB, ↑ et ↓. Ouvrir un service avec ENTER.", 36 "feature.quickSwitch.info": "Sélectionner un service avec TAB, ↑ et ↓. Ouvrir un service avec ENTER.",
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Activer Ferdi Todos", 278 "settings.app.form.enableTodos": "Activer Ferdi Todos",
279 "settings.app.form.hibernate": "Activer le service d'hibernation", 279 "settings.app.form.hibernate": "Activer le service d'hibernation",
280 "settings.app.form.hibernationStrategy": "Stratégie d'hibernation", 280 "settings.app.form.hibernationStrategy": "Stratégie d'hibernation",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Verrouiller après inactivité", 282 "settings.app.form.inactivityLock": "Verrouiller après inactivité",
282 "settings.app.form.keepAllWorkspacesLoaded": "Garder tous les espaces de travail charger", 283 "settings.app.form.keepAllWorkspacesLoaded": "Garder tous les espaces de travail charger",
283 "settings.app.form.language": "Langue", 284 "settings.app.form.language": "Langue",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "De", 292 "settings.app.form.scheduledDNDStart": "De",
292 "settings.app.form.sentry": "Envoyer des données de télémétrie", 293 "settings.app.form.sentry": "Envoyer des données de télémétrie",
293 "settings.app.form.server": "Serveur", 294 "settings.app.form.server": "Serveur",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Afficher les onglets des services désactivés", 296 "settings.app.form.showDisabledServices": "Afficher les onglets des services désactivés",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Afficher les badges de messages non lus quand les notifications sont désactivées", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Afficher les badges de messages non lus quand les notifications sont désactivées",
296 "settings.app.form.showServiceNavigationBar": "Toujours afficher la barre de navigation du service", 298 "settings.app.form.showServiceNavigationBar": "Toujours afficher la barre de navigation du service",
diff --git a/src/i18n/locales/ga.json b/src/i18n/locales/ga.json
index 4ce3f10f1..274d034ba 100644
--- a/src/i18n/locales/ga.json
+++ b/src/i18n/locales/ga.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Teanga", 284 "settings.app.form.language": "Teanga",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Taispeáin tabanna do sheirbhísí dhíchumasaithe", 296 "settings.app.form.showDisabledServices": "Taispeáin tabanna do sheirbhísí dhíchumasaithe",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Taispeáin teachtaireachtaí neamhléite, nuair a dhíchumasaítear fógraí", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Taispeáin teachtaireachtaí neamhléite, nuair a dhíchumasaítear fógraí",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/he.json b/src/i18n/locales/he.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/he.json
+++ b/src/i18n/locales/he.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/hr.json b/src/i18n/locales/hr.json
index e02942360..942332f56 100644
--- a/src/i18n/locales/hr.json
+++ b/src/i18n/locales/hr.json
@@ -209,13 +209,13 @@
209 "pricing.trial.terms.noCreditCard": "No credit card required", 209 "pricing.trial.terms.noCreditCard": "No credit card required",
210 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)", 210 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
211 "service.crashHandler.action": "Osvježi okvir", 211 "service.crashHandler.action": "Osvježi okvir",
212 "service.crashHandler.autoReload": "Pokušati ću automatski povratiti {ime} u {sekundi} sekundi", 212 "service.crashHandler.autoReload": "Pokušati ću automatski povratiti {name} u {seconds} sekundi",
213 "service.crashHandler.headline": "O, ne! ", 213 "service.crashHandler.headline": "O, ne! ",
214 "service.crashHandler.text": "{name} je izazvalo grešku. ", 214 "service.crashHandler.text": "{name} je izazvalo grešku. ",
215 "service.disabledHandler.action": "Omogući {name}", 215 "service.disabledHandler.action": "Omogući {name}",
216 "service.disabledHandler.headline": "{name} je onemogućen/o", 216 "service.disabledHandler.headline": "{name} je onemogućen/o",
217 "service.errorHandler.action": "Osvježi okvir", 217 "service.errorHandler.action": "Osvježi okvir",
218 "service.errorHandler.editAction": "Uredite {ime}", 218 "service.errorHandler.editAction": "Uredite {name}",
219 "service.errorHandler.headline": "O, ne! ", 219 "service.errorHandler.headline": "O, ne! ",
220 "service.errorHandler.message": "Greška", 220 "service.errorHandler.message": "Greška",
221 "service.errorHandler.text": "{name} has failed to load.", 221 "service.errorHandler.text": "{name} has failed to load.",
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Jezik", 284 "settings.app.form.language": "Jezik",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Prikaži ploče s onemogućenim servisima", 296 "settings.app.form.showDisabledServices": "Prikaži ploče s onemogućenim servisima",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Pokaži nepročitane značke poruka kad se obavještenja onemoguće", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Pokaži nepročitane značke poruka kad se obavještenja onemoguće",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
@@ -348,14 +350,14 @@
348 "settings.service.error.goBack": "Nazad do servisa", 350 "settings.service.error.goBack": "Nazad do servisa",
349 "settings.service.error.headline": "Greška", 351 "settings.service.error.headline": "Greška",
350 "settings.service.error.message": "Nemoguće učitati sadržaj usluge. ", 352 "settings.service.error.message": "Nemoguće učitati sadržaj usluge. ",
351 "settings.service.form.addServiceHeadline": "Dodaj {ime}", 353 "settings.service.form.addServiceHeadline": "Dodaj {name}",
352 "settings.service.form.availableServices": "Dostupne usluge", 354 "settings.service.form.availableServices": "Dostupne usluge",
353 "settings.service.form.customUrl": "Prilagođen server", 355 "settings.service.form.customUrl": "Prilagođen server",
354 "settings.service.form.customUrlPremiumInfo": "Da bi ste dodali samo-hostovane usluge, potreban vam je Premium račun.", 356 "settings.service.form.customUrlPremiumInfo": "Da bi ste dodali samo-hostovane usluge, potreban vam je Premium račun.",
355 "settings.service.form.customUrlUpgradeAccount": "Nadogradite Vaš račun", 357 "settings.service.form.customUrlUpgradeAccount": "Nadogradite Vaš račun",
356 "settings.service.form.customUrlValidationError": "Nije moguće odobriti prilagođeno {ime} servera.", 358 "settings.service.form.customUrlValidationError": "Nije moguće odobriti prilagođeno {name} servera.",
357 "settings.service.form.deleteButton": "Izbriši uslugu", 359 "settings.service.form.deleteButton": "Izbriši uslugu",
358 "settings.service.form.editServiceHeadline": "Uredite {ime}", 360 "settings.service.form.editServiceHeadline": "Uredite {name}",
359 "settings.service.form.enableAudio": "Omogućite zvuk", 361 "settings.service.form.enableAudio": "Omogućite zvuk",
360 "settings.service.form.enableBadge": "Show unread message badges", 362 "settings.service.form.enableBadge": "Show unread message badges",
361 "settings.service.form.enableDarkMode": "Enable Dark Mode", 363 "settings.service.form.enableDarkMode": "Enable Dark Mode",
diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json
index 6cac40355..3f43d40c6 100644
--- a/src/i18n/locales/hu.json
+++ b/src/i18n/locales/hu.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Ferdi Tennivalók bekapcsolása", 278 "settings.app.form.enableTodos": "Ferdi Tennivalók bekapcsolása",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Nyelv", 284 "settings.app.form.language": "Nyelv",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Letiltott szolgáltatások megjelenítése", 296 "settings.app.form.showDisabledServices": "Letiltott szolgáltatások megjelenítése",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Mutassa az 'olvasatlan üzenet' jelzést, amikor az értesítések le vannak tiltva", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Mutassa az 'olvasatlan üzenet' jelzést, amikor az értesítések le vannak tiltva",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/id.json b/src/i18n/locales/id.json
index c4498812e..ac72f3b69 100644
--- a/src/i18n/locales/id.json
+++ b/src/i18n/locales/id.json
@@ -215,7 +215,7 @@
215 "service.disabledHandler.action": "Aktifkan {name}", 215 "service.disabledHandler.action": "Aktifkan {name}",
216 "service.disabledHandler.headline": "{name} dinonaktifkan", 216 "service.disabledHandler.headline": "{name} dinonaktifkan",
217 "service.errorHandler.action": "Muat Ulang {name}", 217 "service.errorHandler.action": "Muat Ulang {name}",
218 "service.errorHandler.editAction": "Edit {nama}", 218 "service.errorHandler.editAction": "Edit {name}",
219 "service.errorHandler.headline": "Ya Ampun!", 219 "service.errorHandler.headline": "Ya Ampun!",
220 "service.errorHandler.message": "Kesalahan", 220 "service.errorHandler.message": "Kesalahan",
221 "service.errorHandler.text": "{name} gagal dimuat", 221 "service.errorHandler.text": "{name} gagal dimuat",
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Bahasa", 284 "settings.app.form.language": "Bahasa",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Tampilkan tab layanan yang dinonaktifkan", 296 "settings.app.form.showDisabledServices": "Tampilkan tab layanan yang dinonaktifkan",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Tampilkan lencana pesan belum dibaca saat pemberitahuan dinonaktifkan", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Tampilkan lencana pesan belum dibaca saat pemberitahuan dinonaktifkan",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
@@ -353,9 +355,9 @@
353 "settings.service.form.customUrl": "Server khusus", 355 "settings.service.form.customUrl": "Server khusus",
354 "settings.service.form.customUrlPremiumInfo": "Untuk menambahkan layanan hosted yang dijalankan mandiri, Anda membutuhkan Ferdi Premium Supporter Account.", 356 "settings.service.form.customUrlPremiumInfo": "Untuk menambahkan layanan hosted yang dijalankan mandiri, Anda membutuhkan Ferdi Premium Supporter Account.",
355 "settings.service.form.customUrlUpgradeAccount": "Tingkatkan akun Anda", 357 "settings.service.form.customUrlUpgradeAccount": "Tingkatkan akun Anda",
356 "settings.service.form.customUrlValidationError": "Gagal memvalidasi server {nama} khusus.", 358 "settings.service.form.customUrlValidationError": "Gagal memvalidasi server {name} khusus.",
357 "settings.service.form.deleteButton": "Hapus layanan", 359 "settings.service.form.deleteButton": "Hapus layanan",
358 "settings.service.form.editServiceHeadline": "Edit {nama}", 360 "settings.service.form.editServiceHeadline": "Edit {name}",
359 "settings.service.form.enableAudio": "Aktifkan audio", 361 "settings.service.form.enableAudio": "Aktifkan audio",
360 "settings.service.form.enableBadge": "Tampilkan lencana pesan belum dibaca", 362 "settings.service.form.enableBadge": "Tampilkan lencana pesan belum dibaca",
361 "settings.service.form.enableDarkMode": "Aktifkan Mode Gelap", 363 "settings.service.form.enableDarkMode": "Aktifkan Mode Gelap",
diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json
index 85e8aae6b..8ec8eba4d 100644
--- a/src/i18n/locales/it.json
+++ b/src/i18n/locales/it.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Abilità le Attività Ferdi", 278 "settings.app.form.enableTodos": "Abilità le Attività Ferdi",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Mantieni tutti i workspace caricati", 283 "settings.app.form.keepAllWorkspacesLoaded": "Mantieni tutti i workspace caricati",
283 "settings.app.form.language": "Lingua", 284 "settings.app.form.language": "Lingua",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Mostra schede servizi disattivati", 296 "settings.app.form.showDisabledServices": "Mostra schede servizi disattivati",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Mostra l'etichetta dei messaggi non letti quando le notifiche sono disattivate", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Mostra l'etichetta dei messaggi non letti quando le notifiche sono disattivate",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json
index 65ea3cd57..bb5abf3ee 100644
--- a/src/i18n/locales/ja.json
+++ b/src/i18n/locales/ja.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "言語", 284 "settings.app.form.language": "言語",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "無効化されたサービスのタブを表示する", 296 "settings.app.form.showDisabledServices": "無効化されたサービスのタブを表示する",
295 "settings.app.form.showMessagesBadgesWhenMuted": "通知の無効時に未読メッセージ件数を表示する", 297 "settings.app.form.showMessagesBadgesWhenMuted": "通知の無効時に未読メッセージ件数を表示する",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/ka.json b/src/i18n/locales/ka.json
index 096718f97..b903809eb 100644
--- a/src/i18n/locales/ka.json
+++ b/src/i18n/locales/ka.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "ენა", 284 "settings.app.form.language": "ენა",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/ko.json b/src/i18n/locales/ko.json
index 7fdfe07fa..7233c3334 100644
--- a/src/i18n/locales/ko.json
+++ b/src/i18n/locales/ko.json
@@ -1,15 +1,15 @@
1{ 1{
2 "app.errorHandler.action": "Reload", 2 "app.errorHandler.action": "새로고침",
3 "app.errorHandler.headline": "Something went wrong", 3 "app.errorHandler.headline": "문제가 발생했습니다.",
4 "feature.announcements.changelog.headline": "Changes in Ferdi {version}", 4 "feature.announcements.changelog.headline": "Ferdi {version} 변경점",
5 "feature.debugger.title": "Publish debugging information", 5 "feature.debugger.title": "디버깅 정보 공개",
6 "feature.delayApp.headline": "Please purchase a Ferdi Supporter License to skip waiting", 6 "feature.delayApp.headline": "Ferdi Supporter License 구매하여 대기시간을 스킵하세요.",
7 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.", 7 "feature.delayApp.text": "Ferdi {seconds} 초 안에 재개합니다.",
8 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional", 8 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
9 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial", 9 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
10 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14 day trial and skip the line", 10 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14 day trial and skip the line",
11 "feature.delayApp.upgrade.action": "Get a Ferdi Supporter License", 11 "feature.delayApp.upgrade.action": "Ferdi Supporter License 얻기",
12 "feature.delayApp.upgrade.actionShort": "Upgrade account", 12 "feature.delayApp.upgrade.actionShort": "계정 업그레이드",
13 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free", 13 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
14 "feature.planSelection.cta.stayOnFree": "Stay on Free", 14 "feature.planSelection.cta.stayOnFree": "Stay on Free",
15 "feature.planSelection.cta.trial": "Start my free 14-days Trial", 15 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
@@ -26,16 +26,16 @@
26 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.", 26 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
27 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment", 27 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
28 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.", 28 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
29 "feature.publishDebugInfo.error": "There was an error while trying to publish the debug information. Please try again later or view the console for more information.", 29 "feature.publishDebugInfo.error": "디버그 정보를 공개하는데 오류가 발생했습니다. 조금 뒤에 다시 시도하거나 콘솔을 통해 정보를 확인하십시오.",
30 "feature.publishDebugInfo.info": "Publishing your debug information helps us find issues and errors in Ferdi. By publishing your debug information you accept Ferdi Debugger's privacy policy and terms of service", 30 "feature.publishDebugInfo.info": "디버그 정보를 공개하는 것은 Ferdi의 오류를 찾는데 도움이 됩니다. 디버그 정보를 공개함으로 Ferdi Debugger의 개인정보보호정책과 이용 약관을 동의하는 것으로 간주합니다.",
31 "feature.publishDebugInfo.privacy": "Privacy policy", 31 "feature.publishDebugInfo.privacy": "개인정보보호정책",
32 "feature.publishDebugInfo.publish": "Accept and publish", 32 "feature.publishDebugInfo.publish": "동의 공개",
33 "feature.publishDebugInfo.published": "Your debug log was published and is now availible at", 33 "feature.publishDebugInfo.published": "디버그 로그가 공개되었고 다음에서 확인 가능합니다.",
34 "feature.publishDebugInfo.terms": "Terms of service", 34 "feature.publishDebugInfo.terms": "Terms of service",
35 "feature.publishDebugInfo.title": "Publish debug information", 35 "feature.publishDebugInfo.title": "디버깅 정보 공개",
36 "feature.quickSwitch.info": "Select a service with TAB, ↑ and ↓. Open a service with ENTER.", 36 "feature.quickSwitch.info": "서비스를 TAB, ↑, ↓을 이용해 선택할 수 있습니다. ENTER를 이용하여 서비스를 열 수 있습니다.",
37 "feature.quickSwitch.search": "Search...", 37 "feature.quickSwitch.search": "검색...",
38 "feature.quickSwitch.title": "QuickSwitch", 38 "feature.quickSwitch.title": "빠른 검색",
39 "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.", 39 "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.",
40 "feature.shareFranz.action.email": "Send as email", 40 "feature.shareFranz.action.email": "Send as email",
41 "feature.shareFranz.action.facebook": "Share on Facebook", 41 "feature.shareFranz.action.facebook": "Share on Facebook",
@@ -171,7 +171,7 @@
171 "password.noUser": "No user with that email address was found", 171 "password.noUser": "No user with that email address was found",
172 "password.submit.label": "Submit", 172 "password.submit.label": "Submit",
173 "password.successInfo": "Please check your email", 173 "password.successInfo": "Please check your email",
174 "premiumFeature.button.upgradeAccount": "Upgrade account", 174 "premiumFeature.button.upgradeAccount": "계정 업그레이드",
175 "pricing.features.accountSync": "Account Synchronisation", 175 "pricing.features.accountSync": "Account Synchronisation",
176 "pricing.features.adFree": "Forever ad-free", 176 "pricing.features.adFree": "Forever ad-free",
177 "pricing.features.appDelays": "No Waiting Screens", 177 "pricing.features.appDelays": "No Waiting Screens",
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
@@ -475,7 +477,7 @@
475 "tabs.item.enableAudio": "Enable audio", 477 "tabs.item.enableAudio": "Enable audio",
476 "tabs.item.enableNotification": "Enable notifications", 478 "tabs.item.enableNotification": "Enable notifications",
477 "tabs.item.enableService": "Enable service", 479 "tabs.item.enableService": "Enable service",
478 "tabs.item.reload": "Reload", 480 "tabs.item.reload": "새로고침",
479 "validation.email": "{field} is not valid", 481 "validation.email": "{field} is not valid",
480 "validation.minLength": "{field} should be at least {length} characters long", 482 "validation.minLength": "{field} should be at least {length} characters long",
481 "validation.oneRequired": "At least one is required", 483 "validation.oneRequired": "At least one is required",
@@ -485,7 +487,7 @@
485 "webControls.forward": "Forward", 487 "webControls.forward": "Forward",
486 "webControls.goHome": "Home", 488 "webControls.goHome": "Home",
487 "webControls.openInBrowser": "Open in Browser", 489 "webControls.openInBrowser": "Open in Browser",
488 "webControls.reload": "Reload", 490 "webControls.reload": "새로고침",
489 "welcome.loginButton": "Login to your account", 491 "welcome.loginButton": "Login to your account",
490 "welcome.signupButton": "Create a free account", 492 "welcome.signupButton": "Create a free account",
491 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace", 493 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
diff --git a/src/i18n/locales/nb-NO.json b/src/i18n/locales/nb.json
index 97f340d59..97f340d59 100644
--- a/src/i18n/locales/nb-NO.json
+++ b/src/i18n/locales/nb.json
diff --git a/src/i18n/locales/nl-BE.json b/src/i18n/locales/nl-BE.json
index 680995851..719470269 100644
--- a/src/i18n/locales/nl-BE.json
+++ b/src/i18n/locales/nl-BE.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Taal", 284 "settings.app.form.language": "Taal",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Toon uitgeschakelde services", 296 "settings.app.form.showDisabledServices": "Toon uitgeschakelde services",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Toon badge met ongelezen berichten wanneer meldingen zijn uitgeschakeld", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Toon badge met ongelezen berichten wanneer meldingen zijn uitgeschakeld",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json
index b1f972f0b..430072202 100644
--- a/src/i18n/locales/nl.json
+++ b/src/i18n/locales/nl.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Taal", 284 "settings.app.form.language": "Taal",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Toon uitgeschakelde services", 296 "settings.app.form.showDisabledServices": "Toon uitgeschakelde services",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Toon badge met ongelezen berichten wanneer meldingen zijn uitgeschakeld", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Toon badge met ongelezen berichten wanneer meldingen zijn uitgeschakeld",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/no.json
+++ b/src/i18n/locales/no.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json
index 1d70c6183..2b8b8cb29 100644
--- a/src/i18n/locales/pl.json
+++ b/src/i18n/locales/pl.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Język", 284 "settings.app.form.language": "Język",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Wyłącz wyświetlanie zakładek z usługami", 296 "settings.app.form.showDisabledServices": "Wyłącz wyświetlanie zakładek z usługami",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Pokaż licznik nieprzeczytanych wiadomości gdy powiadomienia są wyłączone", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Pokaż licznik nieprzeczytanych wiadomości gdy powiadomienia są wyłączone",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/pt-BR.json b/src/i18n/locales/pt-BR.json
index bc9674343..8a033c1fb 100644
--- a/src/i18n/locales/pt-BR.json
+++ b/src/i18n/locales/pt-BR.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Activar Ferdi Todos", 278 "settings.app.form.enableTodos": "Activar Ferdi Todos",
279 "settings.app.form.hibernate": "Activar hibernação do serviço", 279 "settings.app.form.hibernate": "Activar hibernação do serviço",
280 "settings.app.form.hibernationStrategy": "Estratégia de Hibernação", 280 "settings.app.form.hibernationStrategy": "Estratégia de Hibernação",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Mantener todas las Áreas de trabajo cargadas", 283 "settings.app.form.keepAllWorkspacesLoaded": "Mantener todas las Áreas de trabajo cargadas",
283 "settings.app.form.language": "Idioma", 284 "settings.app.form.language": "Idioma",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "Desde", 292 "settings.app.form.scheduledDNDStart": "Desde",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Servidor", 294 "settings.app.form.server": "Servidor",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Mostrar abas de serviços desativados", 296 "settings.app.form.showDisabledServices": "Mostrar abas de serviços desativados",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Mostrar ícone de mensagem não lida quando as notificações estiverem desativadas", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Mostrar ícone de mensagem não lida quando as notificações estiverem desativadas",
296 "settings.app.form.showServiceNavigationBar": "Sempre mostrar a barra de navegação do serviço", 298 "settings.app.form.showServiceNavigationBar": "Sempre mostrar a barra de navegação do serviço",
@@ -384,7 +386,7 @@
384 "settings.service.form.tabHosted": "Hospedado", 386 "settings.service.form.tabHosted": "Hospedado",
385 "settings.service.form.tabOnPremise": "Auto-hospedado ⭐️", 387 "settings.service.form.tabOnPremise": "Auto-hospedado ⭐️",
386 "settings.service.form.team": "Equipe", 388 "settings.service.form.team": "Equipe",
387 "settings.service.form.useHostedService": "Use o serviço {nome} hospedado.", 389 "settings.service.form.useHostedService": "Use o serviço {name} hospedado.",
388 "settings.service.form.yourServices": "Seus serviços", 390 "settings.service.form.yourServices": "Seus serviços",
389 "settings.services.deletedInfo": "Serviço excluído", 391 "settings.services.deletedInfo": "Serviço excluído",
390 "settings.services.discoverServices": "Descobrir serviços", 392 "settings.services.discoverServices": "Descobrir serviços",
diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json
index d55830e67..cc89024a1 100644
--- a/src/i18n/locales/pt.json
+++ b/src/i18n/locales/pt.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Ativar Tarefas", 278 "settings.app.form.enableTodos": "Ativar Tarefas",
279 "settings.app.form.hibernate": "Ativar hibernação de serviço", 279 "settings.app.form.hibernate": "Ativar hibernação de serviço",
280 "settings.app.form.hibernationStrategy": "Estratégia de Hibernação", 280 "settings.app.form.hibernationStrategy": "Estratégia de Hibernação",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Bloquear após", 282 "settings.app.form.inactivityLock": "Bloquear após",
282 "settings.app.form.keepAllWorkspacesLoaded": "Mater todos os workspaces carregados", 283 "settings.app.form.keepAllWorkspacesLoaded": "Mater todos os workspaces carregados",
283 "settings.app.form.language": "Idioma", 284 "settings.app.form.language": "Idioma",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "Desde", 292 "settings.app.form.scheduledDNDStart": "Desde",
292 "settings.app.form.sentry": "Enviar dados de telemetria", 293 "settings.app.form.sentry": "Enviar dados de telemetria",
293 "settings.app.form.server": "Servidor", 294 "settings.app.form.server": "Servidor",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Apresentar separadores de serviços desativados", 296 "settings.app.form.showDisabledServices": "Apresentar separadores de serviços desativados",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Apresentar emblema com o número de mensagens não lidas quando as notificações estão desativadas", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Apresentar emblema com o número de mensagens não lidas quando as notificações estão desativadas",
296 "settings.app.form.showServiceNavigationBar": "Sempre mostrar a barra de navegação do serviço", 298 "settings.app.form.showServiceNavigationBar": "Sempre mostrar a barra de navegação do serviço",
@@ -353,7 +355,7 @@
353 "settings.service.form.customUrl": "Servidor personalizado", 355 "settings.service.form.customUrl": "Servidor personalizado",
354 "settings.service.form.customUrlPremiumInfo": "Para adicionar serviços com domínio próprio, é necessário uma Conta Premium no Ferdi.", 356 "settings.service.form.customUrlPremiumInfo": "Para adicionar serviços com domínio próprio, é necessário uma Conta Premium no Ferdi.",
355 "settings.service.form.customUrlUpgradeAccount": "Atualizar a conta", 357 "settings.service.form.customUrlUpgradeAccount": "Atualizar a conta",
356 "settings.service.form.customUrlValidationError": "Não foi possível validar o servidor {nome}.", 358 "settings.service.form.customUrlValidationError": "Não foi possível validar o servidor {name}.",
357 "settings.service.form.deleteButton": "Apagar serviço", 359 "settings.service.form.deleteButton": "Apagar serviço",
358 "settings.service.form.editServiceHeadline": "Editar {name}", 360 "settings.service.form.editServiceHeadline": "Editar {name}",
359 "settings.service.form.enableAudio": "Ativar áudio", 361 "settings.service.form.enableAudio": "Ativar áudio",
diff --git a/src/i18n/locales/ro.json b/src/i18n/locales/ro.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/ro.json
+++ b/src/i18n/locales/ro.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json
index 6b2233ea9..942002af4 100644
--- a/src/i18n/locales/ru.json
+++ b/src/i18n/locales/ru.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Язык", 284 "settings.app.form.language": "Язык",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Показывать вкладки отключённых служб", 296 "settings.app.form.showDisabledServices": "Показывать вкладки отключённых служб",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Показывать значок непрочитанного сообщения при отключённых уведомлениях", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Показывать значок непрочитанного сообщения при отключённых уведомлениях",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/sk.json b/src/i18n/locales/sk.json
index b7f976bca..b4877decf 100644
--- a/src/i18n/locales/sk.json
+++ b/src/i18n/locales/sk.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Jazyk", 284 "settings.app.form.language": "Jazyk",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Zobraziť záložky vypnutých služieb", 296 "settings.app.form.showDisabledServices": "Zobraziť záložky vypnutých služieb",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Zobraziť symbol pre neprečítané správy, keď sú vypnuté upozornenia", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Zobraziť symbol pre neprečítané správy, keď sú vypnuté upozornenia",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/sl.json
+++ b/src/i18n/locales/sl.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/sr.json b/src/i18n/locales/sr.json
index 0bdcc3eda..79e7d1510 100644
--- a/src/i18n/locales/sr.json
+++ b/src/i18n/locales/sr.json
@@ -208,14 +208,14 @@
208 "pricing.trial.terms.headline": "No strings attached", 208 "pricing.trial.terms.headline": "No strings attached",
209 "pricing.trial.terms.noCreditCard": "No credit card required", 209 "pricing.trial.terms.noCreditCard": "No credit card required",
210 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)", 210 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
211 "service.crashHandler.action": "Osvježi {ime}", 211 "service.crashHandler.action": "Osvježi {name}",
212 "service.crashHandler.autoReload": "Pokušaću automatski povratiti {ime} u {sekundi} sekundi", 212 "service.crashHandler.autoReload": "Pokušaću automatski povratiti {name} u {seconds} sekundi",
213 "service.crashHandler.headline": "O, ne! ", 213 "service.crashHandler.headline": "O, ne! ",
214 "service.crashHandler.text": "{ime} je izazvalo grešku. ", 214 "service.crashHandler.text": "{name} je izazvalo grešku.",
215 "service.disabledHandler.action": "Omogući {ime} ", 215 "service.disabledHandler.action": "Omogući {name}",
216 "service.disabledHandler.headline": "{ime} je onemogućen/o", 216 "service.disabledHandler.headline": "{name} je onemogućen/o",
217 "service.errorHandler.action": "Osvježi {ime}", 217 "service.errorHandler.action": "Osvježi {name}",
218 "service.errorHandler.editAction": "Uredite {ime}", 218 "service.errorHandler.editAction": "Uredite {name}",
219 "service.errorHandler.headline": "O, ne! ", 219 "service.errorHandler.headline": "O, ne! ",
220 "service.errorHandler.message": "Greška ", 220 "service.errorHandler.message": "Greška ",
221 "service.errorHandler.text": "{name} has failed to load.", 221 "service.errorHandler.text": "{name} has failed to load.",
@@ -263,7 +263,7 @@
263 "settings.app.buttonClearAllCache": "Очисти кеш", 263 "settings.app.buttonClearAllCache": "Очисти кеш",
264 "settings.app.buttonInstallUpdate": "Ponovo pokreni i instaliraj ažuriranje ", 264 "settings.app.buttonInstallUpdate": "Ponovo pokreni i instaliraj ažuriranje ",
265 "settings.app.buttonSearchForUpdate": "Potraži ažuriranja", 265 "settings.app.buttonSearchForUpdate": "Potraži ažuriranja",
266 "settings.app.cacheInfo": "Франз кеш тренутно користи {величина} простора на диску.", 266 "settings.app.cacheInfo": "Франз кеш тренутно користи {size} простора на диску.",
267 "settings.app.currentVersion": "Trenutna verzija:", 267 "settings.app.currentVersion": "Trenutna verzija:",
268 "settings.app.form.accentColor": "Accent color", 268 "settings.app.form.accentColor": "Accent color",
269 "settings.app.form.adaptableDarkMode": "Synchronize dark mode with my Mac's dark mode setting", 269 "settings.app.form.adaptableDarkMode": "Synchronize dark mode with my Mac's dark mode setting",
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Jezik", 284 "settings.app.form.language": "Jezik",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Prikaži ploče s onemogućenim servisima", 296 "settings.app.form.showDisabledServices": "Prikaži ploče s onemogućenim servisima",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Покажи беџ за непрочитане поруке када су обавештења онемогућена", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Покажи беџ за непрочитане поруке када су обавештења онемогућена",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
@@ -348,14 +350,14 @@
348 "settings.service.error.goBack": "Nazad do servisa", 350 "settings.service.error.goBack": "Nazad do servisa",
349 "settings.service.error.headline": "Greška ", 351 "settings.service.error.headline": "Greška ",
350 "settings.service.error.message": "Nemoguće učitati sadržaj usluge", 352 "settings.service.error.message": "Nemoguće učitati sadržaj usluge",
351 "settings.service.form.addServiceHeadline": "Dodaj {ime} ", 353 "settings.service.form.addServiceHeadline": "Dodaj {name}",
352 "settings.service.form.availableServices": "Dostupne usluge", 354 "settings.service.form.availableServices": "Dostupne usluge",
353 "settings.service.form.customUrl": "Prilagođen server", 355 "settings.service.form.customUrl": "Prilagođen server",
354 "settings.service.form.customUrlPremiumInfo": "Da bi ste dodali samo-hostovane usluge, potreban vam je Premium račun.", 356 "settings.service.form.customUrlPremiumInfo": "Da bi ste dodali samo-hostovane usluge, potreban vam je Premium račun.",
355 "settings.service.form.customUrlUpgradeAccount": "Nadogradite Vaš račun", 357 "settings.service.form.customUrlUpgradeAccount": "Nadogradite Vaš račun",
356 "settings.service.form.customUrlValidationError": "Nije moguće odobriti prilagođeno {ime} servera.", 358 "settings.service.form.customUrlValidationError": "Nije moguće odobriti prilagođeno {name} servera.",
357 "settings.service.form.deleteButton": "Izbriši uslugu", 359 "settings.service.form.deleteButton": "Izbriši uslugu",
358 "settings.service.form.editServiceHeadline": "Uredite {ime}", 360 "settings.service.form.editServiceHeadline": "Uredite {name}",
359 "settings.service.form.enableAudio": "Omogućite zvuk", 361 "settings.service.form.enableAudio": "Omogućite zvuk",
360 "settings.service.form.enableBadge": "Покажи беџеве за непрочитане поруке", 362 "settings.service.form.enableBadge": "Покажи беџеве за непрочитане поруке",
361 "settings.service.form.enableDarkMode": "Enable Dark Mode", 363 "settings.service.form.enableDarkMode": "Enable Dark Mode",
@@ -384,7 +386,7 @@
384 "settings.service.form.tabHosted": "Hostovano", 386 "settings.service.form.tabHosted": "Hostovano",
385 "settings.service.form.tabOnPremise": "Samo-hostovano ⭐️", 387 "settings.service.form.tabOnPremise": "Samo-hostovano ⭐️",
386 "settings.service.form.team": "Tim", 388 "settings.service.form.team": "Tim",
387 "settings.service.form.useHostedService": "Користи хостовану {име} услугу.", 389 "settings.service.form.useHostedService": "Користи хостовану {name} услугу.",
388 "settings.service.form.yourServices": "Vaše usluge", 390 "settings.service.form.yourServices": "Vaše usluge",
389 "settings.services.deletedInfo": "Usluga je onemogućena", 391 "settings.services.deletedInfo": "Usluga je onemogućena",
390 "settings.services.discoverServices": "Pronađite usluge", 392 "settings.services.discoverServices": "Pronađite usluge",
@@ -476,10 +478,10 @@
476 "tabs.item.enableNotification": "Omogućite obavijesti", 478 "tabs.item.enableNotification": "Omogućite obavijesti",
477 "tabs.item.enableService": "Omogućite usluge", 479 "tabs.item.enableService": "Omogućite usluge",
478 "tabs.item.reload": "Ponovno učitavanje", 480 "tabs.item.reload": "Ponovno učitavanje",
479 "validation.email": "{поље} није валидно", 481 "validation.email": "{field} није валидно",
480 "validation.minLength": "{поље} треба да буде најмање {дужина} карактера дугачко", 482 "validation.minLength": "{field} треба да буде најмање {length} карактера дугачко",
481 "validation.oneRequired": "At least one is required", 483 "validation.oneRequired": "At least one is required",
482 "validation.required": "{поље} је неопходно", 484 "validation.required": "{field} је неопходно",
483 "validation.url": "{field} није валидан УРЛ", 485 "validation.url": "{field} није валидан УРЛ",
484 "webControls.back": "Back", 486 "webControls.back": "Back",
485 "webControls.forward": "Forward", 487 "webControls.forward": "Forward",
diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/sv.json
+++ b/src/i18n/locales/sv.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/tr.json b/src/i18n/locales/tr.json
index 7b683844a..763c817e2 100644
--- a/src/i18n/locales/tr.json
+++ b/src/i18n/locales/tr.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Dil", 284 "settings.app.form.language": "Dil",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "Kimden:", 292 "settings.app.form.scheduledDNDStart": "Kimden:",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Sunucu", 294 "settings.app.form.server": "Sunucu",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Devre dışı bırakılan servis sekmelerini göster", 296 "settings.app.form.showDisabledServices": "Devre dışı bırakılan servis sekmelerini göster",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Bildirimler kapalı iken okunmamış mesaj sayısını göster", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Bildirimler kapalı iken okunmamış mesaj sayısını göster",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
@@ -476,7 +478,7 @@
476 "tabs.item.enableNotification": "Bildirimleri etkinleştir", 478 "tabs.item.enableNotification": "Bildirimleri etkinleştir",
477 "tabs.item.enableService": "Servisi etkinleştir", 479 "tabs.item.enableService": "Servisi etkinleştir",
478 "tabs.item.reload": "Yenile", 480 "tabs.item.reload": "Yenile",
479 "validation.email": "{alan} geçerli değil", 481 "validation.email": "{field} geçerli değil",
480 "validation.minLength": "{field} en az {length} karakter uzunluğunda olmalı", 482 "validation.minLength": "{field} en az {length} karakter uzunluğunda olmalı",
481 "validation.oneRequired": "At least one is required", 483 "validation.oneRequired": "At least one is required",
482 "validation.required": "{field} gereklidir", 484 "validation.required": "{field} gereklidir",
diff --git a/src/i18n/locales/ua.json b/src/i18n/locales/ua.json
deleted file mode 100644
index dfd9b6fa4..000000000
--- a/src/i18n/locales/ua.json
+++ /dev/null
@@ -1,168 +0,0 @@
1{
2 "global.api.unhealthy": "Не можна підключитись до онлайн сервісів Ferdi",
3 "global.notConnectedToTheInternet": "Ви не підключені до Інтернету.",
4 "welcome.signupButton": "Створити безплатний акаунт",
5 "welcome.loginButton": "Увійдіть до свого акаунту",
6 "welcome.slogan": "Обмін повідомленнями, який працює для вас",
7 "login.headline": "Увійти",
8 "login.email.label": "Email адреса",
9 "login.password.label": "Пароль",
10 "login.submit.label": "Увійти",
11 "login.invalidCredentials": "Email або пароль некоректні",
12 "login.tokenExpired": "Ваша сесія закінчилась, будь ласка, зайдіть знову.",
13 "login.serverLogout": "Ваша сесія закінчилась, будь ласка, зайдіть знову.",
14 "login.link.signup": "Створити безплатний акаунт",
15 "login.link.password": "Скинути пароль",
16 "password.headline": "Скинути пароль",
17 "password.email.label": "Email адреса",
18 "password.submit.label": "Подати",
19 "password.noUser": "Не знайдено жодного користувача з цією email адресою",
20 "password.successInfo": "Будь ласка, перевірте ваш email",
21 "password.link.signup": "Створити безплатний акаунт",
22 "password.link.login": "Увійти до вашого акаунту",
23 "signup.headline": "Увійти",
24 "signup.firstname.label": "Ім'я",
25 "signup.lastname.label": "Прізвище",
26 "signup.email.label": "Email адреса",
27 "signup.company.label": "Компанія",
28 "signup.password.label": "Пароль",
29 "signup.submit.label": "Створити акаунт",
30 "signup.link.login": "У вас вже є обліковий запис, увійти?",
31 "signup.emailDuplicate": "Користувач із цією email адресою вже існує",
32 "signup.legal.info": "Створенням акаунту Ferdi ви приймаєте",
33 "signup.legal.terms": "Умови використання",
34 "signup.legal.privacy": "Заява про конфіденційність",
35 "pricing.headline": "Підтримайте Ferdi",
36 "pricing.support.label": "Виберіть свій план підтримки",
37 "pricing.submit.label": "Я хочу підтримати розробку Ferdi",
38 "pricing.link.skipPayment": "Я не хочу підтримувати розробку Ferdi.",
39 "import.headline": "Імпортувати ваші сервіси з Ferdi 4",
40 "import.notSupportedHeadline": "Сервіси ще не підтримуються в Ferdi 5",
41 "import.submit.label": "Імпортувати сервіси",
42 "import.skip.label": "Я хочу додати сервіси вручну",
43 "invite.submit.label": "Відправити запрошення",
44 "invite.headline.friends": "Запросіть 3 ваших друзів або колег",
45 "invite.name.label": "Ім'я",
46 "invite.email.label": "Email адреса",
47 "invite.skip.label": "Я хочу зробити це пізніше",
48 "subscription.submit.label": "Я хочу підтримати розробку Ferdi",
49 "subscription.paymentSessionError": "Не вдалося ініціалізувати форму платежу",
50 "subscription.includedFeatures": "Платний Преміальний Акаунт Прихильника Ferdi включає",
51 "subscription.features.onpremise": "Додайте on-premise / hosted сервіси, такі як Hipchat",
52 "subscription.features.customServices": "Приватні сервіси для вас і вашої команди",
53 "subscription.features.encryptedSync": "Шифрована синхронізація сеансу",
54 "subscription.features.vpn": "Підтримка проксі та VPN",
55 "subscription.features.ads": "Жодної реклами!",
56 "subscription.features.comingSoon": "очікуйте незабаром",
57 "infobar.servicesUpdated": "Ваші сервіси було оновлено.",
58 "infobar.updateAvailable": "Нове оновлення для Ferdi доступне.",
59 "infobar.buttonReloadServices": "Перезавантажити сервіси",
60 "infobar.buttonInstallUpdate": "Перезавантажити і встановити оновлення",
61 "infobar.requiredRequestsFailed": "Не вдалося завантажити сервіси та інформацію користувача",
62 "sidebar.settings": "Налаштування",
63 "sidebar.addNewService": "Add new service",
64 "services.welcome": "Ласкаво просимо в Ferdi",
65 "services.getStarted": "Почати",
66 "settings.account.headline": "Акаунт",
67 "settings.account.headlineSubscription": "Ваша підписка",
68 "settings.account.headlineUpgrade": "Оновити ваш акаунт і підтримати Ferdi",
69 "settings.account.headlineInvoices": "Інвойси",
70 "settings.account.manageSubscription.label": "Керування вашою підпискою",
71 "settings.account.accountType.basic": "Базовий акаунт",
72 "settings.account.accountType.premium": "Преміум Акаунт Прихильника",
73 "settings.account.account.editButton": "Редагувати акаунт",
74 "settings.account.invoiceDownload": "Завантажити",
75 "settings.account.userInfoRequestFailed": "Не вдалося завантажити інформацію користувача",
76 "settings.account.tryReloadUserInfoRequest": "Спробуйте ще раз",
77 "settings.account.headlineProfile": "Оновити профіль",
78 "settings.account.headlineAccount": "Інформація про акаунт",
79 "settings.account.headlinePassword": "Змінити пароль",
80 "settings.account.successInfo": "Ваші зміни були збережені",
81 "settings.account.buttonSave": "Оновити профіль",
82 "settings.account.mining.thankyou": "Дякую, що підтримуєте Ferdi своєю обчислювальною потужністю.",
83 "settings.account.mining.active": "Ви зараз здійснюєте {hashes} розрахунків за секунду.",
84 "settings.account.mining.moreInformation": "Отримати більше інформації",
85 "settings.account.mining.cancel": "Скасувати видобуток",
86 "settings.navigation.availableServices": "Доступні сервіси",
87 "settings.navigation.yourServices": "Ваші сервіси",
88 "settings.navigation.account": "Акаунт",
89 "settings.navigation.settings": "Налаштування",
90 "settings.navigation.logout": "Вийти",
91 "settings.recipes.headline": "Доступні сервіси",
92 "settings.recipes.mostPopular": "Найбільш популярні",
93 "settings.recipes.all": "Всі сервіси",
94 "settings.recipes.dev": "Розробка",
95 "settings.recipes.nothingFound": "Вибачте, але жоден сервіс не відповідає пошуковому терміну.",
96 "settings.recipes.servicesSuccessfulAddedInfo": "Сервіс успішно додано",
97 "settings.service.form.saveButton": "Зберегти сервіс",
98 "settings.service.form.deleteButton": "Видалити сервіс",
99 "settings.service.form.availableServices": "Доступні сервіси",
100 "settings.service.form.yourServices": "Ваші сервіси",
101 "settings.service.form.addServiceHeadline": "Додати {name}",
102 "settings.service.form.editServiceHeadline": "Редагувати {name}",
103 "settings.service.form.tabHosted": "Розміщений",
104 "settings.service.form.tabOnPremise": "Самостійно розміщений ⭐️",
105 "settings.service.form.customUrlValidationError": "Не вдалось підтвердити власний {name} сервер.",
106 "settings.service.form.customUrlPremiumInfo": "Щоб додати самостійно розміщені сервіси, вам потріьно мати Преміумним Акаунт Прихильника Ferdi.",
107 "settings.service.form.customUrlUpgradeAccount": "Оновити ваш обліковий запис",
108 "settings.service.form.indirectMessageInfo": "Ви отримаєте сповіщення про всі нові повідомлення в каналі, а не лише про @username, @channel, @here, ...",
109 "settings.service.error.headline": "Помилка",
110 "settings.service.error.goBack": "Повернутись до сервісів",
111 "settings.service.error.message": "Не вдалось завантажити серверний протокол.",
112 "settings.services.tooltip.isDisabled": "Сервіс відключений",
113 "settings.services.tooltip.notificationsDisabled": "Сповіщення відключені",
114 "settings.services.headline": "Ваші сервіси",
115 "settings.services.noServicesAdded": "Ви ще не додавали жодних сервісів.",
116 "settings.services.discoverServices": "Відкрийте для себе сервіси",
117 "settings.services.updatedInfo": "Ваші зміни були збережені",
118 "settings.services.deletedInfo": "Сервіс було видалено",
119 "settings.app.headline": "Налаштування",
120 "settings.app.headlineGeneral": "Загальні",
121 "settings.app.headlineLanguage": "Мова",
122 "settings.app.headlineUpdates": "Оновлення",
123 "settings.app.buttonSearchForUpdate": "Перевірити наявність оновлень",
124 "settings.app.buttonInstallUpdate": "Перезавантажити і встановити оновлення",
125 "settings.app.updateStatusSearching": "Шукає оновлення",
126 "settings.app.updateStatusAvailable": "Оновлення доступне, завантаження...",
127 "settings.app.updateStatusUpToDate": "Ви використовуєте останню версію Ferdi",
128 "settings.app.form.autoLaunchOnStart": "Запускати Ferdi на початку",
129 "settings.app.form.autoLaunchInBackground": "Відкрити у фоновому режимі",
130 "settings.app.form.minimizeToSystemTray": "Мінімізувати Ferdi до системного лотка",
131 "settings.app.form.runInBackground": "Тримати Ferdi в фоні при закритті вікна",
132 "settings.app.form.language": "Мова",
133 "settings.app.form.beta": "Включити бета-версії",
134 "settings.app.currentVersion": "Поточна версія:",
135 "settings.service.form.name": "Ім'я",
136 "settings.service.form.enableService": "Увімкнути сервіс",
137 "settings.service.form.enableNotification": "Увімкнути сповіщення",
138 "settings.service.form.team": "Команда",
139 "settings.service.form.customUrl": "Користувацький сервер",
140 "settings.service.form.indirectMessages": "Показувати значок повідомлення для всіх нових повідомлень",
141 "settings.user.form.firstname": "Ім'я",
142 "settings.user.form.lastname": "Прізвище",
143 "settings.user.form.email": "Email",
144 "settings.user.form.currentPassword": "Поточний пароль",
145 "settings.user.form.newPassword": "Новий пароль",
146 "settings.user.form.accountType.label": "Тип акаунту",
147 "settings.user.form.accountType.individual": "Індивідуальний",
148 "settings.user.form.accountType.non-profit": "Некомерційний",
149 "settings.user.form.accountType.company": "Компанія",
150 "subscription.type.free": "безплатно",
151 "subscription.type.month": "місяць",
152 "subscription.type.year": "рік",
153 "subscription.type.mining": "Підтримати Ferdi обчислювальною потужністю",
154 "subscription.mining.headline": "Як це працює?",
155 "subscription.mining.experimental": "експериментальний",
156 "subscription.mining.line1": "Вмикаючи \"Підтримати обчислювальною потужністю\", Ferdi буде використовувати приблизно 20-50% вашого процесора щоб майнити криптовалюту Monero, що приблизно рівне $ 5/рік.",
157 "subscription.mining.line2": "Ми адаптуємо використання процесора відповідно до вашої поведінки, щоб не виснажувати акумулятор, не сповільнити вашу роботу і роботу вашої машини.",
158 "subscription.mining.line3": "Поки майнер активний, ви матимете необмежений доступ до всіх особливостей підтримки Ferdi Premium.",
159 "subscription.mining.moreInformation": "Отримати більше інформації про цей план.",
160 "subscriptionPopup.buttonCancel": "Відмінити",
161 "subscriptionPopup.buttonDone": "Готово",
162 "tabs.item.reload": "Перезавантажити",
163 "tabs.item.edit": "Редагувати",
164 "tabs.item.disableNotifications": "Вимкнути сповіщення",
165 "tabs.item.enableNotification": "Увімкнути сповіщення",
166 "tabs.item.disableService": "Вимкнути сервіс",
167 "tabs.item.deleteService": "Видалити сервіс"
168}
diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json
index 88910d8ae..bed752c75 100644
--- a/src/i18n/locales/uk.json
+++ b/src/i18n/locales/uk.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Мова", 284 "settings.app.form.language": "Мова",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Показати вкладку вимкнених сервісів", 296 "settings.app.form.showDisabledServices": "Показати вкладку вимкнених сервісів",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Показувати значок непрочитаних повідомлень коли сповіщення вимкнені", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Показувати значок непрочитаних повідомлень коли сповіщення вимкнені",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/vi.json
+++ b/src/i18n/locales/vi.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh-CN.json
index 7fdfe07fa..c852ebe60 100644
--- a/src/i18n/locales/zh.json
+++ b/src/i18n/locales/zh-CN.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "Language", 284 "settings.app.form.language": "Language",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/zh-HANT.json b/src/i18n/locales/zh-HANT.json
index 48aa9ab3b..21822a8f1 100644
--- a/src/i18n/locales/zh-HANT.json
+++ b/src/i18n/locales/zh-HANT.json
@@ -278,6 +278,7 @@
278 "settings.app.form.enableTodos": "Enable Ferdi Todos", 278 "settings.app.form.enableTodos": "Enable Ferdi Todos",
279 "settings.app.form.hibernate": "Enable service hibernation", 279 "settings.app.form.hibernate": "Enable service hibernation",
280 "settings.app.form.hibernationStrategy": "Hibernation strategy", 280 "settings.app.form.hibernationStrategy": "Hibernation strategy",
281 "settings.app.form.iconSize": "Service icon size",
281 "settings.app.form.inactivityLock": "Lock after inactivity", 282 "settings.app.form.inactivityLock": "Lock after inactivity",
282 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 283 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
283 "settings.app.form.language": "語言", 284 "settings.app.form.language": "語言",
@@ -291,6 +292,7 @@
291 "settings.app.form.scheduledDNDStart": "From", 292 "settings.app.form.scheduledDNDStart": "From",
292 "settings.app.form.sentry": "Send telemetry data", 293 "settings.app.form.sentry": "Send telemetry data",
293 "settings.app.form.server": "Server", 294 "settings.app.form.server": "Server",
295 "settings.app.form.serviceRibbonWidth": "Sidebar width",
294 "settings.app.form.showDisabledServices": "Display disabled services tabs", 296 "settings.app.form.showDisabledServices": "Display disabled services tabs",
295 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled", 297 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
296 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar", 298 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
diff --git a/src/i18n/locales/zh-TW.json b/src/i18n/locales/zh-TW.json
index 6aea92a62..d04b1a326 100644
--- a/src/i18n/locales/zh-TW.json
+++ b/src/i18n/locales/zh-TW.json
@@ -156,7 +156,7 @@
156 "service.disabledHandler.action": "啟用{name}", 156 "service.disabledHandler.action": "啟用{name}",
157 "service.disabledHandler.headline": "{name}已停用", 157 "service.disabledHandler.headline": "{name}已停用",
158 "service.errorHandler.action": "重新載入 {name}", 158 "service.errorHandler.action": "重新載入 {name}",
159 "service.errorHandler.editAction": "編輯{名稱}", 159 "service.errorHandler.editAction": "編輯{name}",
160 "service.errorHandler.headline": "噢不!", 160 "service.errorHandler.headline": "噢不!",
161 "service.errorHandler.message": "錯誤", 161 "service.errorHandler.message": "錯誤",
162 "service.errorHandler.text": "{name} 載入失敗。", 162 "service.errorHandler.text": "{name} 載入失敗。",
@@ -260,7 +260,7 @@
260 "settings.service.form.customUrlUpgradeAccount": "升級您的帳戶", 260 "settings.service.form.customUrlUpgradeAccount": "升級您的帳戶",
261 "settings.service.form.customUrlValidationError": "無法驗證自定義{name}服務器。", 261 "settings.service.form.customUrlValidationError": "無法驗證自定義{name}服務器。",
262 "settings.service.form.deleteButton": "刪除服務", 262 "settings.service.form.deleteButton": "刪除服務",
263 "settings.service.form.editServiceHeadline": "編輯 {名稱}", 263 "settings.service.form.editServiceHeadline": "編輯 {name}",
264 "settings.service.form.enableAudio": "啟用音訊", 264 "settings.service.form.enableAudio": "啟用音訊",
265 "settings.service.form.enableBadge": "顯示未讀訊息圖示", 265 "settings.service.form.enableBadge": "顯示未讀訊息圖示",
266 "settings.service.form.enableDarkMode": "開啟深色模式", 266 "settings.service.form.enableDarkMode": "開啟深色模式",
diff --git a/src/i18n/messages/src/containers/settings/EditSettingsScreen.json b/src/i18n/messages/src/containers/settings/EditSettingsScreen.json
index d2e53d625..98abb0f2b 100644
--- a/src/i18n/messages/src/containers/settings/EditSettingsScreen.json
+++ b/src/i18n/messages/src/containers/settings/EditSettingsScreen.json
@@ -4,11 +4,11 @@
4 "defaultMessage": "!!!Launch Ferdi on start", 4 "defaultMessage": "!!!Launch Ferdi on start",
5 "file": "src/containers/settings/EditSettingsScreen.js", 5 "file": "src/containers/settings/EditSettingsScreen.js",
6 "start": { 6 "start": {
7 "line": 29, 7 "line": 31,
8 "column": 21 8 "column": 21
9 }, 9 },
10 "end": { 10 "end": {
11 "line": 32, 11 "line": 34,
12 "column": 3 12 "column": 3
13 } 13 }
14 }, 14 },
@@ -17,11 +17,11 @@
17 "defaultMessage": "!!!Open in background", 17 "defaultMessage": "!!!Open in background",
18 "file": "src/containers/settings/EditSettingsScreen.js", 18 "file": "src/containers/settings/EditSettingsScreen.js",
19 "start": { 19 "start": {
20 "line": 33, 20 "line": 35,
21 "column": 26 21 "column": 26
22 }, 22 },
23 "end": { 23 "end": {
24 "line": 36, 24 "line": 38,
25 "column": 3 25 "column": 3
26 } 26 }
27 }, 27 },
@@ -30,11 +30,11 @@
30 "defaultMessage": "!!!Keep Ferdi in background when closing the window", 30 "defaultMessage": "!!!Keep Ferdi in background when closing the window",
31 "file": "src/containers/settings/EditSettingsScreen.js", 31 "file": "src/containers/settings/EditSettingsScreen.js",
32 "start": { 32 "start": {
33 "line": 37, 33 "line": 39,
34 "column": 19 34 "column": 19
35 }, 35 },
36 "end": { 36 "end": {
37 "line": 40, 37 "line": 42,
38 "column": 3 38 "column": 3
39 } 39 }
40 }, 40 },
@@ -43,11 +43,11 @@
43 "defaultMessage": "!!!Start minimized in tray", 43 "defaultMessage": "!!!Start minimized in tray",
44 "file": "src/containers/settings/EditSettingsScreen.js", 44 "file": "src/containers/settings/EditSettingsScreen.js",
45 "start": { 45 "start": {
46 "line": 41, 46 "line": 43,
47 "column": 18 47 "column": 18
48 }, 48 },
49 "end": { 49 "end": {
50 "line": 44, 50 "line": 46,
51 "column": 3 51 "column": 3
52 } 52 }
53 }, 53 },
@@ -56,11 +56,11 @@
56 "defaultMessage": "!!!Always show Ferdi in system tray", 56 "defaultMessage": "!!!Always show Ferdi in system tray",
57 "file": "src/containers/settings/EditSettingsScreen.js", 57 "file": "src/containers/settings/EditSettingsScreen.js",
58 "start": { 58 "start": {
59 "line": 45, 59 "line": 47,
60 "column": 20 60 "column": 20
61 }, 61 },
62 "end": { 62 "end": {
63 "line": 48, 63 "line": 50,
64 "column": 3 64 "column": 3
65 } 65 }
66 }, 66 },
@@ -69,11 +69,11 @@
69 "defaultMessage": "!!!Minimize Ferdi to system tray", 69 "defaultMessage": "!!!Minimize Ferdi to system tray",
70 "file": "src/containers/settings/EditSettingsScreen.js", 70 "file": "src/containers/settings/EditSettingsScreen.js",
71 "start": { 71 "start": {
72 "line": 49, 72 "line": 51,
73 "column": 24 73 "column": 24
74 }, 74 },
75 "end": { 75 "end": {
76 "line": 52, 76 "line": 54,
77 "column": 3 77 "column": 3
78 } 78 }
79 }, 79 },
@@ -82,11 +82,11 @@
82 "defaultMessage": "!!!Don't show message content in notifications", 82 "defaultMessage": "!!!Don't show message content in notifications",
83 "file": "src/containers/settings/EditSettingsScreen.js", 83 "file": "src/containers/settings/EditSettingsScreen.js",
84 "start": { 84 "start": {
85 "line": 53, 85 "line": 55,
86 "column": 24 86 "column": 24
87 }, 87 },
88 "end": { 88 "end": {
89 "line": 56, 89 "line": 58,
90 "column": 3 90 "column": 3
91 } 91 }
92 }, 92 },
@@ -95,11 +95,11 @@
95 "defaultMessage": "!!!Always show service navigation bar", 95 "defaultMessage": "!!!Always show service navigation bar",
96 "file": "src/containers/settings/EditSettingsScreen.js", 96 "file": "src/containers/settings/EditSettingsScreen.js",
97 "start": { 97 "start": {
98 "line": 57, 98 "line": 59,
99 "column": 28 99 "column": 28
100 }, 100 },
101 "end": { 101 "end": {
102 "line": 60, 102 "line": 62,
103 "column": 3 103 "column": 3
104 } 104 }
105 }, 105 },
@@ -108,11 +108,11 @@
108 "defaultMessage": "!!!Send telemetry data", 108 "defaultMessage": "!!!Send telemetry data",
109 "file": "src/containers/settings/EditSettingsScreen.js", 109 "file": "src/containers/settings/EditSettingsScreen.js",
110 "start": { 110 "start": {
111 "line": 61, 111 "line": 63,
112 "column": 10 112 "column": 10
113 }, 113 },
114 "end": { 114 "end": {
115 "line": 64, 115 "line": 66,
116 "column": 3 116 "column": 3
117 } 117 }
118 }, 118 },
@@ -121,11 +121,11 @@
121 "defaultMessage": "!!!Enable service hibernation", 121 "defaultMessage": "!!!Enable service hibernation",
122 "file": "src/containers/settings/EditSettingsScreen.js", 122 "file": "src/containers/settings/EditSettingsScreen.js",
123 "start": { 123 "start": {
124 "line": 65, 124 "line": 67,
125 "column": 13 125 "column": 13
126 }, 126 },
127 "end": { 127 "end": {
128 "line": 68, 128 "line": 70,
129 "column": 3 129 "column": 3
130 } 130 }
131 }, 131 },
@@ -134,11 +134,11 @@
134 "defaultMessage": "!!!Hibernation strategy", 134 "defaultMessage": "!!!Hibernation strategy",
135 "file": "src/containers/settings/EditSettingsScreen.js", 135 "file": "src/containers/settings/EditSettingsScreen.js",
136 "start": { 136 "start": {
137 "line": 69, 137 "line": 71,
138 "column": 23 138 "column": 23
139 }, 139 },
140 "end": { 140 "end": {
141 "line": 72, 141 "line": 74,
142 "column": 3 142 "column": 3
143 } 143 }
144 }, 144 },
@@ -147,11 +147,11 @@
147 "defaultMessage": "!!!Server", 147 "defaultMessage": "!!!Server",
148 "file": "src/containers/settings/EditSettingsScreen.js", 148 "file": "src/containers/settings/EditSettingsScreen.js",
149 "start": { 149 "start": {
150 "line": 73, 150 "line": 75,
151 "column": 10 151 "column": 10
152 }, 152 },
153 "end": { 153 "end": {
154 "line": 76, 154 "line": 78,
155 "column": 3 155 "column": 3
156 } 156 }
157 }, 157 },
@@ -160,11 +160,11 @@
160 "defaultMessage": "!!!Todo Server", 160 "defaultMessage": "!!!Todo Server",
161 "file": "src/containers/settings/EditSettingsScreen.js", 161 "file": "src/containers/settings/EditSettingsScreen.js",
162 "start": { 162 "start": {
163 "line": 77, 163 "line": 79,
164 "column": 14 164 "column": 14
165 }, 165 },
166 "end": { 166 "end": {
167 "line": 80, 167 "line": 82,
168 "column": 3 168 "column": 3
169 } 169 }
170 }, 170 },
@@ -173,11 +173,11 @@
173 "defaultMessage": "!!!Enable Password Lock", 173 "defaultMessage": "!!!Enable Password Lock",
174 "file": "src/containers/settings/EditSettingsScreen.js", 174 "file": "src/containers/settings/EditSettingsScreen.js",
175 "start": { 175 "start": {
176 "line": 81, 176 "line": 83,
177 "column": 14 177 "column": 14
178 }, 178 },
179 "end": { 179 "end": {
180 "line": 84, 180 "line": 86,
181 "column": 3 181 "column": 3
182 } 182 }
183 }, 183 },
@@ -186,11 +186,11 @@
186 "defaultMessage": "!!!Password", 186 "defaultMessage": "!!!Password",
187 "file": "src/containers/settings/EditSettingsScreen.js", 187 "file": "src/containers/settings/EditSettingsScreen.js",
188 "start": { 188 "start": {
189 "line": 85, 189 "line": 87,
190 "column": 16 190 "column": 16
191 }, 191 },
192 "end": { 192 "end": {
193 "line": 88, 193 "line": 90,
194 "column": 3 194 "column": 3
195 } 195 }
196 }, 196 },
@@ -199,11 +199,11 @@
199 "defaultMessage": "!!!Lock after inactivity", 199 "defaultMessage": "!!!Lock after inactivity",
200 "file": "src/containers/settings/EditSettingsScreen.js", 200 "file": "src/containers/settings/EditSettingsScreen.js",
201 "start": { 201 "start": {
202 "line": 89, 202 "line": 91,
203 "column": 18 203 "column": 18
204 }, 204 },
205 "end": { 205 "end": {
206 "line": 92, 206 "line": 94,
207 "column": 3 207 "column": 3
208 } 208 }
209 }, 209 },
@@ -212,11 +212,11 @@
212 "defaultMessage": "!!!Enable scheduled Do-not-Disturb", 212 "defaultMessage": "!!!Enable scheduled Do-not-Disturb",
213 "file": "src/containers/settings/EditSettingsScreen.js", 213 "file": "src/containers/settings/EditSettingsScreen.js",
214 "start": { 214 "start": {
215 "line": 93, 215 "line": 95,
216 "column": 23 216 "column": 23
217 }, 217 },
218 "end": { 218 "end": {
219 "line": 96, 219 "line": 98,
220 "column": 3 220 "column": 3
221 } 221 }
222 }, 222 },
@@ -225,11 +225,11 @@
225 "defaultMessage": "!!!From", 225 "defaultMessage": "!!!From",
226 "file": "src/containers/settings/EditSettingsScreen.js", 226 "file": "src/containers/settings/EditSettingsScreen.js",
227 "start": { 227 "start": {
228 "line": 97, 228 "line": 99,
229 "column": 21 229 "column": 21
230 }, 230 },
231 "end": { 231 "end": {
232 "line": 100, 232 "line": 102,
233 "column": 3 233 "column": 3
234 } 234 }
235 }, 235 },
@@ -238,11 +238,11 @@
238 "defaultMessage": "!!!To", 238 "defaultMessage": "!!!To",
239 "file": "src/containers/settings/EditSettingsScreen.js", 239 "file": "src/containers/settings/EditSettingsScreen.js",
240 "start": { 240 "start": {
241 "line": 101, 241 "line": 103,
242 "column": 19 242 "column": 19
243 }, 243 },
244 "end": { 244 "end": {
245 "line": 104, 245 "line": 106,
246 "column": 3 246 "column": 3
247 } 247 }
248 }, 248 },
@@ -251,11 +251,11 @@
251 "defaultMessage": "!!!Language", 251 "defaultMessage": "!!!Language",
252 "file": "src/containers/settings/EditSettingsScreen.js", 252 "file": "src/containers/settings/EditSettingsScreen.js",
253 "start": { 253 "start": {
254 "line": 105, 254 "line": 107,
255 "column": 12 255 "column": 12
256 }, 256 },
257 "end": { 257 "end": {
258 "line": 108, 258 "line": 110,
259 "column": 3 259 "column": 3
260 } 260 }
261 }, 261 },
@@ -264,11 +264,11 @@
264 "defaultMessage": "!!!Dark Mode", 264 "defaultMessage": "!!!Dark Mode",
265 "file": "src/containers/settings/EditSettingsScreen.js", 265 "file": "src/containers/settings/EditSettingsScreen.js",
266 "start": { 266 "start": {
267 "line": 109, 267 "line": 111,
268 "column": 12 268 "column": 12
269 }, 269 },
270 "end": { 270 "end": {
271 "line": 112, 271 "line": 114,
272 "column": 3 272 "column": 3
273 } 273 }
274 }, 274 },
@@ -277,11 +277,11 @@
277 "defaultMessage": "!!!Synchronize dark mode with my Mac's dark mode setting", 277 "defaultMessage": "!!!Synchronize dark mode with my Mac's dark mode setting",
278 "file": "src/containers/settings/EditSettingsScreen.js", 278 "file": "src/containers/settings/EditSettingsScreen.js",
279 "start": { 279 "start": {
280 "line": 113, 280 "line": 115,
281 "column": 21 281 "column": 21
282 }, 282 },
283 "end": { 283 "end": {
284 "line": 116, 284 "line": 118,
285 "column": 3 285 "column": 3
286 } 286 }
287 }, 287 },
@@ -290,11 +290,37 @@
290 "defaultMessage": "!!!Enable universal Dark Mode", 290 "defaultMessage": "!!!Enable universal Dark Mode",
291 "file": "src/containers/settings/EditSettingsScreen.js", 291 "file": "src/containers/settings/EditSettingsScreen.js",
292 "start": { 292 "start": {
293 "line": 117, 293 "line": 119,
294 "column": 21 294 "column": 21
295 }, 295 },
296 "end": { 296 "end": {
297 "line": 120, 297 "line": 122,
298 "column": 3
299 }
300 },
301 {
302 "id": "settings.app.form.serviceRibbonWidth",
303 "defaultMessage": "!!!Sidebar width",
304 "file": "src/containers/settings/EditSettingsScreen.js",
305 "start": {
306 "line": 123,
307 "column": 22
308 },
309 "end": {
310 "line": 126,
311 "column": 3
312 }
313 },
314 {
315 "id": "settings.app.form.iconSize",
316 "defaultMessage": "!!!Service icon size",
317 "file": "src/containers/settings/EditSettingsScreen.js",
318 "start": {
319 "line": 127,
320 "column": 12
321 },
322 "end": {
323 "line": 130,
298 "column": 3 324 "column": 3
299 } 325 }
300 }, 326 },
@@ -303,11 +329,11 @@
303 "defaultMessage": "!!!Accent color", 329 "defaultMessage": "!!!Accent color",
304 "file": "src/containers/settings/EditSettingsScreen.js", 330 "file": "src/containers/settings/EditSettingsScreen.js",
305 "start": { 331 "start": {
306 "line": 121, 332 "line": 131,
307 "column": 15 333 "column": 15
308 }, 334 },
309 "end": { 335 "end": {
310 "line": 124, 336 "line": 134,
311 "column": 3 337 "column": 3
312 } 338 }
313 }, 339 },
@@ -316,11 +342,11 @@
316 "defaultMessage": "!!!Display disabled services tabs", 342 "defaultMessage": "!!!Display disabled services tabs",
317 "file": "src/containers/settings/EditSettingsScreen.js", 343 "file": "src/containers/settings/EditSettingsScreen.js",
318 "start": { 344 "start": {
319 "line": 125, 345 "line": 135,
320 "column": 24 346 "column": 24
321 }, 347 },
322 "end": { 348 "end": {
323 "line": 128, 349 "line": 138,
324 "column": 3 350 "column": 3
325 } 351 }
326 }, 352 },
@@ -329,11 +355,11 @@
329 "defaultMessage": "!!!Show unread message badge when notifications are disabled", 355 "defaultMessage": "!!!Show unread message badge when notifications are disabled",
330 "file": "src/containers/settings/EditSettingsScreen.js", 356 "file": "src/containers/settings/EditSettingsScreen.js",
331 "start": { 357 "start": {
332 "line": 129, 358 "line": 139,
333 "column": 29 359 "column": 29
334 }, 360 },
335 "end": { 361 "end": {
336 "line": 132, 362 "line": 142,
337 "column": 3 363 "column": 3
338 } 364 }
339 }, 365 },
@@ -342,11 +368,11 @@
342 "defaultMessage": "!!!Enable spell checking", 368 "defaultMessage": "!!!Enable spell checking",
343 "file": "src/containers/settings/EditSettingsScreen.js", 369 "file": "src/containers/settings/EditSettingsScreen.js",
344 "start": { 370 "start": {
345 "line": 133, 371 "line": 143,
346 "column": 23 372 "column": 23
347 }, 373 },
348 "end": { 374 "end": {
349 "line": 136, 375 "line": 146,
350 "column": 3 376 "column": 3
351 } 377 }
352 }, 378 },
@@ -355,11 +381,11 @@
355 "defaultMessage": "!!!Enable GPU Acceleration", 381 "defaultMessage": "!!!Enable GPU Acceleration",
356 "file": "src/containers/settings/EditSettingsScreen.js", 382 "file": "src/containers/settings/EditSettingsScreen.js",
357 "start": { 383 "start": {
358 "line": 137, 384 "line": 147,
359 "column": 25 385 "column": 25
360 }, 386 },
361 "end": { 387 "end": {
362 "line": 140, 388 "line": 150,
363 "column": 3 389 "column": 3
364 } 390 }
365 }, 391 },
@@ -368,11 +394,11 @@
368 "defaultMessage": "!!!Include beta versions", 394 "defaultMessage": "!!!Include beta versions",
369 "file": "src/containers/settings/EditSettingsScreen.js", 395 "file": "src/containers/settings/EditSettingsScreen.js",
370 "start": { 396 "start": {
371 "line": 141, 397 "line": 151,
372 "column": 8 398 "column": 8
373 }, 399 },
374 "end": { 400 "end": {
375 "line": 144, 401 "line": 154,
376 "column": 3 402 "column": 3
377 } 403 }
378 }, 404 },
@@ -381,11 +407,11 @@
381 "defaultMessage": "!!!Disable updates", 407 "defaultMessage": "!!!Disable updates",
382 "file": "src/containers/settings/EditSettingsScreen.js", 408 "file": "src/containers/settings/EditSettingsScreen.js",
383 "start": { 409 "start": {
384 "line": 145, 410 "line": 155,
385 "column": 13 411 "column": 13
386 }, 412 },
387 "end": { 413 "end": {
388 "line": 148, 414 "line": 158,
389 "column": 3 415 "column": 3
390 } 416 }
391 }, 417 },
@@ -394,11 +420,11 @@
394 "defaultMessage": "!!!Enable Franz Todos", 420 "defaultMessage": "!!!Enable Franz Todos",
395 "file": "src/containers/settings/EditSettingsScreen.js", 421 "file": "src/containers/settings/EditSettingsScreen.js",
396 "start": { 422 "start": {
397 "line": 149, 423 "line": 159,
398 "column": 15 424 "column": 15
399 }, 425 },
400 "end": { 426 "end": {
401 "line": 152, 427 "line": 162,
402 "column": 3 428 "column": 3
403 } 429 }
404 }, 430 },
@@ -407,11 +433,11 @@
407 "defaultMessage": "!!!Keep all workspaces loaded", 433 "defaultMessage": "!!!Keep all workspaces loaded",
408 "file": "src/containers/settings/EditSettingsScreen.js", 434 "file": "src/containers/settings/EditSettingsScreen.js",
409 "start": { 435 "start": {
410 "line": 153, 436 "line": 163,
411 "column": 27 437 "column": 27
412 }, 438 },
413 "end": { 439 "end": {
414 "line": 156, 440 "line": 166,
415 "column": 3 441 "column": 3
416 } 442 }
417 } 443 }