aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-05-12 18:48:40 +0200
committerLibravatar GitHub <noreply@github.com>2021-05-12 18:48:40 +0200
commit2a2f6fe945b87f50c95a31efb7c47c664e58a8bf (patch)
treef38165789e3a68b83a91b6882d75885c47579371 /src
parentUpdated the documentation (#1394) (diff)
downloadferdium-app-2a2f6fe945b87f50c95a31efb7c47c664e58a8bf.tar.gz
ferdium-app-2a2f6fe945b87f50c95a31efb7c47c664e58a8bf.tar.zst
ferdium-app-2a2f6fe945b87f50c95a31efb7c47c664e58a8bf.zip
Fix some appearance issues (#1398)
* Fix property spelling in Sidebar component * Fix typo in todos partition name * Use the FerdiDev setting.json in dev mode The app.setPath calls are still a mess and need to be fixed, but this at least allows me to experiment locally. * Make @meetfranz/theme follow the accent color We inject the value of the accent color into the themes, so the buttons show the appropriate color. This allows removing some existing css hacks. In order to do this, the themes had to be turned into functions that take the brand color (accent color) as an argument instead of hard-coding it. The css-based accent color for legacy components is left unchanged. * Remove superfluous scrollbars While overflow: scroll doesn't look ugly on macs, because the system hides scrollbars by default (except on hower), on Linux and Windows, the disabled scrollbars appearing by default look ugly. We set overflow-y: auto instead to display a scrollbar only when needed. * Simplify theme generation in @meetfranz/themes * Remove default accent color code duplication * Apply accent color to styles not in themeInfo.json Some colors are darkened/lightened versions of the primary brand color, so they are not caught by build-theme-info. We create these styles with `color` manually. * Inset shadow on sidebar This creates a more flat look that projecting a shadow over the service, and avoid compositing a shadow over the webview. * Apply accent color to vertical style tab bar * Workspace drawer styling in vertical mode * Fix sidebar layout In vertical mode, the top of the service was clipped by the sidebar Also removes unnecessary whitespace in sidebar * Fix 1px wide line on right when todos are hidden * Fix window menu When building the menu bar, the File / app menu is added later, so we must be careful about indexing the menu bar. * Update locale files * Report the default accent color accurately * Fix inverted button with dark theme * Fix crash with invalid accent color Fall back to the default accent color instead * Darker secondary buttons in dark mode * Vertical workspace drawer style outside debug mode In order to reliably apply the style, we need to add a class name to the drawer manually, as component names only appear in class names in debug mode.
Diffstat (limited to 'src')
-rw-r--r--src/assets/themeInfo.json2
-rw-r--r--src/components/layout/Sidebar.js2
-rw-r--r--src/components/settings/settings/EditSettingsForm.js12
-rw-r--r--src/config.js8
-rw-r--r--src/features/appearance/index.js80
-rw-r--r--src/features/quickSwitch/Component.js3
-rw-r--r--src/features/todos/components/TodosWebview.js10
-rw-r--r--src/features/todos/index.js2
-rw-r--r--src/features/workspaces/components/WorkspaceDrawer.js4
-rw-r--r--src/i18n/locales/af.json2
-rw-r--r--src/i18n/locales/ar.json2
-rw-r--r--src/i18n/locales/be.json2
-rw-r--r--src/i18n/locales/bg.json876
-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.json422
-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/et.json876
-rw-r--r--src/i18n/locales/fa.json876
-rw-r--r--src/i18n/locales/fi.json2
-rw-r--r--src/i18n/locales/fil.json876
-rw-r--r--src/i18n/locales/fr.json2
-rw-r--r--src/i18n/locales/ga.json2
-rw-r--r--src/i18n/locales/he.json2
-rw-r--r--src/i18n/locales/hi.json876
-rw-r--r--src/i18n/locales/hr.json2
-rw-r--r--src/i18n/locales/hu.json2
-rw-r--r--src/i18n/locales/id.json2
-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/kk.json876
-rw-r--r--src/i18n/locales/ko.json2
-rw-r--r--src/i18n/locales/ms.json876
-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.json2
-rw-r--r--src/i18n/locales/pt.json2
-rw-r--r--src/i18n/locales/ro.json2
-rw-r--r--src/i18n/locales/ru.json2
-rw-r--r--src/i18n/locales/si.json876
-rw-r--r--src/i18n/locales/sk.json2
-rw-r--r--src/i18n/locales/sl.json2
-rw-r--r--src/i18n/locales/sq.json876
-rw-r--r--src/i18n/locales/sr.json2
-rw-r--r--src/i18n/locales/sv.json2
-rw-r--r--src/i18n/locales/tr.json2
-rw-r--r--src/i18n/locales/uk.json2
-rw-r--r--src/i18n/locales/vi.json2
-rw-r--r--src/i18n/locales/whitelist_en-US.json3
-rw-r--r--src/i18n/locales/zh-CN.json2
-rw-r--r--src/i18n/locales/zh-HANS.json876
-rw-r--r--src/i18n/locales/zh-HANT.json2
-rw-r--r--src/i18n/locales/zh.json2
-rw-r--r--src/i18n/messages/src/components/settings/settings/EditSettingsForm.json126
-rw-r--r--src/i18n/messages/src/lib/Menu.json296
-rw-r--r--src/index.js7
-rw-r--r--src/lib/Menu.js6
-rw-r--r--src/scripts/build-theme-info.js3
-rw-r--r--src/stores/UIStore.js5
-rw-r--r--src/styles/button.scss8
-rw-r--r--src/styles/colors.scss2
-rw-r--r--src/styles/layout.scss24
-rw-r--r--src/styles/tabs.scss2
-rw-r--r--src/styles/vertical.scss48
72 files changed, 5003 insertions, 4912 deletions
diff --git a/src/assets/themeInfo.json b/src/assets/themeInfo.json
index 8abac2eec..0791cf459 100644
--- a/src/assets/themeInfo.json
+++ b/src/assets/themeInfo.json
@@ -1 +1 @@
{"color":".theme__dark .app .sidebar .sidebar__button.is-muted, .theme__dark .app .sidebar .sidebar__button.is-active, .sidebar .sidebar__button.is-muted, .sidebar .sidebar__button.is-active, .settings .account .invoices .invoices__action button, .settings-navigation .settings-navigation__link.is-active .badge, a.link, button.link, .auth .welcome .button:hover, .auth .welcome .button__inverted, .franz-form .franz-form__radio.is-selected, .theme__dark .franz-form__button.franz-form__button--inverted, .franz-form__button.franz-form__button--inverted","border-left-color":".tab-item.is-active","border-color":".theme__dark .settings .premium-info, .franz-form .franz-form__radio.is-selected","background":".settings .settings__header, .settings .settings__close, .settings .settings__close:hover, .settings-navigation .settings-navigation__link.is-active, a.button, button.button, .info-bar, .info-bar.info-bar--primary, .infobox.infobox--primary, .theme__dark .badge.badge--primary, .theme__dark .badge.badge--premium, .badge.badge--primary, .badge.badge--premium, .content-tabs .content-tabs__tabs .content-tabs__item.is-active, #electron-app-title-bar .toolbar-dropdown:not(.open) > .toolbar-button > button:hover, #electron-app-title-bar .list-item.selected .menu-item, #electron-app-title-bar .list-item.selected:focus .menu-item, .theme__dark .quick-switch .active, .franz-form .franz-form__toggle-wrapper .franz-form__toggle.is-active .franz-form__toggle-button, .theme__dark .franz-form__button, .theme__dark .franz-form__button:hover, .theme__dark .franz-form__button.franz-form__button--inverted:hover, .franz-form__button, .franz-form__button:hover, .franz-form__button.franz-form__button--inverted:hover, .ferdi__fab, .franz-form .franz-form__slider-wrapper .slider::-webkit-slider-thumb","border-right-color":".settings .settings__header .separator"} \ No newline at end of file {"color":".theme__dark .app .sidebar .sidebar__button.is-muted, .theme__dark .app .sidebar .sidebar__button.is-active, .sidebar .sidebar__button.is-muted, .sidebar .sidebar__button.is-active, .tab-item.is-active, .settings .account .invoices .invoices__action button, .settings-navigation .settings-navigation__link.is-active .badge, a.link, button.link, .auth .welcome .button:hover, .auth .welcome .button__inverted, .franz-form .franz-form__radio.is-selected, .theme__dark .franz-form__button.franz-form__button--inverted, .franz-form__button.franz-form__button--inverted","border-color":".theme__dark .settings .premium-info, .franz-form .franz-form__radio.is-selected","background":".settings .settings__header, .settings .settings__close, .settings-navigation .settings-navigation__link.is-active, a.button, button.button, .auth, .info-bar, .info-bar.info-bar--primary, .infobox.infobox--primary, .theme__dark .badge.badge--primary, .theme__dark .badge.badge--premium, .badge.badge--primary, .badge.badge--premium, .content-tabs .content-tabs__tabs .content-tabs__item.is-active, #electron-app-title-bar .toolbar-dropdown:not(.open) > .toolbar-button > button:hover, #electron-app-title-bar .list-item.selected .menu-item, #electron-app-title-bar .list-item.selected:focus .menu-item, .theme__dark .quick-switch .active, .franz-form .franz-form__toggle-wrapper .franz-form__toggle.is-active .franz-form__toggle-button, .theme__dark .franz-form__button, .franz-form__button, .ferdi__fab, .franz-form .franz-form__slider-wrapper .slider::-webkit-slider-thumb","border-right-color":".settings .settings__header .separator"} \ No newline at end of file
diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js
index a47e74db0..ee5699a83 100644
--- a/src/components/layout/Sidebar.js
+++ b/src/components/layout/Sidebar.js
@@ -142,7 +142,7 @@ export default @inject('stores', 'actions') @observer class Sidebar extends Comp
142 todoActions.toggleTodosPanel(); 142 todoActions.toggleTodosPanel();
143 this.updateToolTip(); 143 this.updateToolTip();
144 }} 144 }}
145 disblaed={isTodosServiceActive} 145 disabled={isTodosServiceActive}
146 className={`sidebar__button sidebar__button--todos ${todosStore.isTodosPanelVisible ? 'is-active' : ''}`} 146 className={`sidebar__button sidebar__button--todos ${todosStore.isTodosPanelVisible ? 'is-active' : ''}`}
147 data-tip={`${intl.formatMessage(todosToggleMessage)} (${ctrlKey}+T)`} 147 data-tip={`${intl.formatMessage(todosToggleMessage)} (${ctrlKey}+T)`}
148 > 148 >
diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js
index 092411ec2..f7840c5bb 100644
--- a/src/components/settings/settings/EditSettingsForm.js
+++ b/src/components/settings/settings/EditSettingsForm.js
@@ -12,7 +12,10 @@ import Select from '../../ui/Select';
12import PremiumFeatureContainer from '../../ui/PremiumFeatureContainer'; 12import PremiumFeatureContainer from '../../ui/PremiumFeatureContainer';
13import Input from '../../ui/Input'; 13import Input from '../../ui/Input';
14 14
15import { FRANZ_TRANSLATION } from '../../../config'; 15import {
16 DEFAULT_APP_SETTINGS,
17 FRANZ_TRANSLATION,
18} from '../../../config';
16import { isMac, isWindows } from '../../../environment'; 19import { isMac, isWindows } from '../../../environment';
17 20
18const { 21const {
@@ -82,7 +85,7 @@ const messages = defineMessages({
82 }, 85 },
83 accentColorInfo: { 86 accentColorInfo: {
84 id: 'settings.app.accentColorInfo', 87 id: 'settings.app.accentColorInfo',
85 defaultMessage: '!!!Write your accent color in a CSS-compatible format. (Default: #7367f0)', 88 defaultMessage: '!!!Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})',
86 }, 89 },
87 headlineAdvanced: { 90 headlineAdvanced: {
88 id: 'settings.app.headlineAdvanced', 91 id: 'settings.app.headlineAdvanced',
@@ -518,7 +521,10 @@ export default @observer class EditSettingsForm extends Component {
518 onChange={e => this.submit(e)} 521 onChange={e => this.submit(e)}
519 field={form.$('accentColor')} 522 field={form.$('accentColor')}
520 /> 523 />
521 <p>{intl.formatMessage(messages.accentColorInfo)}</p> 524 <p>
525 {intl.formatMessage(messages.accentColorInfo,
526 { defaultAccentColor: DEFAULT_APP_SETTINGS.accentColor })}
527 </p>
522 </div> 528 </div>
523 )} 529 )}
524 530
diff --git a/src/config.js b/src/config.js
index e6bd83e06..b6a052de7 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,6 +1,8 @@
1import electron from 'electron'; 1import electron from 'electron';
2import isDevMode from 'electron-is-dev';
2import ms from 'ms'; 3import ms from 'ms';
3import path from 'path'; 4import path from 'path';
5import { DEFAULT_ACCENT_COLOR } from '@meetfranz/theme';
4import { asarPath } from './helpers/asar-helpers'; 6import { asarPath } from './helpers/asar-helpers';
5 7
6const app = process.type === 'renderer' ? electron.remote.app : electron.app; 8const app = process.type === 'renderer' ? electron.remote.app : electron.app;
@@ -127,7 +129,7 @@ export const DEFAULT_APP_SETTINGS = {
127 showServiceNavigationBar: false, 129 showServiceNavigationBar: false,
128 universalDarkMode: true, 130 universalDarkMode: true,
129 adaptableDarkMode: true, 131 adaptableDarkMode: true,
130 accentColor: '#7266F0', 132 accentColor: DEFAULT_ACCENT_COLOR,
131 serviceRibbonWidth: 68, 133 serviceRibbonWidth: 68,
132 iconSize: iconSizeBias, 134 iconSize: iconSizeBias,
133 sentry: false, 135 sentry: false,
@@ -184,6 +186,10 @@ if (process.env.FERDI_APPDATA_DIR != null) {
184 app.setPath('userData', path.join(app.getPath('appData'), app.name)); 186 app.setPath('userData', path.join(app.getPath('appData'), app.name));
185} 187}
186 188
189if (isDevMode) {
190 app.setPath('userData', path.join(app.getPath('appData'), `${app.name}Dev`));
191}
192
187export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config'); 193export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config');
188 194
189// Replacing app.asar is not beautiful but unfortunately necessary 195// Replacing app.asar is not beautiful but unfortunately necessary
diff --git a/src/features/appearance/index.js b/src/features/appearance/index.js
index 039ef7711..3bd6a6575 100644
--- a/src/features/appearance/index.js
+++ b/src/features/appearance/index.js
@@ -1,18 +1,10 @@
1import color from 'color';
1import { reaction } from 'mobx'; 2import { reaction } from 'mobx';
2import themeInfo from '../../assets/themeInfo.json'; 3import themeInfo from '../../assets/themeInfo.json';
3import { DEFAULT_APP_SETTINGS, iconSizeBias } from '../../config'; 4import { DEFAULT_APP_SETTINGS, iconSizeBias } from '../../config';
4 5
5const STYLE_ELEMENT_ID = 'custom-appearance-style'; 6const STYLE_ELEMENT_ID = 'custom-appearance-style';
6 7
7// Additional styles needed to make accent colors work properly
8// "[ACCENT]" will be replaced with the accent color
9const ACCENT_ADDITIONAL_STYLES = `
10.franz-form__button {
11 background: inherit !important;
12 border: 2px solid [ACCENT] !important;
13}
14`;
15
16function createStyleElement() { 8function createStyleElement() {
17 const styles = document.createElement('style'); 9 const styles = document.createElement('style');
18 styles.id = STYLE_ELEMENT_ID; 10 styles.id = STYLE_ELEMENT_ID;
@@ -26,18 +18,53 @@ function setAppearance(style) {
26 styleElement.innerHTML = style; 18 styleElement.innerHTML = style;
27} 19}
28 20
29function generateAccentStyle(color) { 21function generateAccentStyle(accentColorStr) {
30 let style = ''; 22 let style = '';
31 23
32 Object.keys(themeInfo).forEach((property) => { 24 Object.keys(themeInfo).forEach((property) => {
33 style += ` 25 style += `
34 ${themeInfo[property]} { 26 ${themeInfo[property]} {
35 ${property}: ${color}; 27 ${property}: ${accentColorStr};
36 } 28 }
37 `; 29 `;
38 }); 30 });
39 31
40 style += ACCENT_ADDITIONAL_STYLES.replace(/\[ACCENT\]/g, color); 32 let accentColor = color(DEFAULT_APP_SETTINGS.accentColor);
33 try {
34 accentColor = color(accentColorStr);
35 } catch (e) {
36 // Ignore invalid accent color.
37 }
38 const darkerColorStr = accentColor.darken(0.05).hex();
39 style += `
40 a.button:hover, button.button:hover {
41 background: ${accentColor.darken(0.1).hex()};
42 }
43
44 .franz-form__button:hover,
45 .franz-form__button.franz-form__button--inverted:hover,
46 .settings .settings__close:hover,
47 .theme__dark .franz-form__button:hover,
48 .theme__dark .franz-form__button.franz-form__button--inverted:hover,
49 .theme__dark .settings .settings__close:hover {
50 background: ${darkerColorStr};
51 }
52
53 .franz-form__button:active,
54 .theme__dark .franz-form__button:active {
55 background: ${darkerColorStr};
56 }
57
58 .theme__dark .franz-form__button.franz-form__button--inverted,
59 .franz-form__button.franz-form__button--inverted {
60 background: none;
61 border-color: ${accentColorStr};
62 }
63
64 .tab-item.is-active {
65 background: ${accentColor.lighten(0.35).hex()};
66 }
67 `;
41 68
42 return style; 69 return style;
43} 70}
@@ -60,7 +87,7 @@ function generateServiceRibbonWidthStyle(widthStr, iconSizeStr, vertical) {
60 } 87 }
61 ` : ` 88 ` : `
62 .sidebar { 89 .sidebar {
63 width: ${width - 1}px !important; 90 width: ${width - 2}px !important;
64 } 91 }
65 .tab-item { 92 .tab-item {
66 width: ${width - 2}px !important; 93 width: ${width - 2}px !important;
@@ -102,22 +129,27 @@ function generateVerticalStyle(widthStr, alwaysShowWorkspaces) {
102 document.head.appendChild(link); 129 document.head.appendChild(link);
103 } 130 }
104 const width = Number(widthStr); 131 const width = Number(widthStr);
132 const sidebarWidthStr = `${width - 4}px`;
105 133
106 return ` 134 return `
107 .app_service { 135 .sidebar {
108 top: ${width}px !important; 136 height: ${sidebarWidthStr} !important;
137 ${alwaysShowWorkspaces ? `
138 width: calc(100% - 300px) !important;
139 ` : ''}
109 } 140 }
110 .darwin .sidebar { 141
111 height: ${width + 19}px !important; 142 .sidebar .sidebar__button {
143 width: ${width}px;
112 } 144 }
113 .darwin .sidebar .sidebar__button--workspaces.is-active { 145
114 height: ${width - 20}px !important; 146 .app .app__content {
147 padding-top: ${sidebarWidthStr} !important;
115 } 148 }
116 ${alwaysShowWorkspaces ? ` 149
117 .sidebar { 150 .workspaces-drawer {
118 width: calc(100% - 300px) !important; 151 maring-top: -${sidebarWidthStr} !important;
119 } 152 }
120 ` : ''}
121 `; 153 `;
122} 154}
123 155
@@ -145,7 +177,7 @@ function generateStyle(settings) {
145 alwaysShowWorkspaces, 177 alwaysShowWorkspaces,
146 } = settings; 178 } = settings;
147 179
148 if (accentColor !== DEFAULT_APP_SETTINGS.accentColor) { 180 if (accentColor.toLowerCase() !== DEFAULT_APP_SETTINGS.accentColor.toLowerCase()) {
149 style += generateAccentStyle(accentColor); 181 style += generateAccentStyle(accentColor);
150 } 182 }
151 if (serviceRibbonWidth !== DEFAULT_APP_SETTINGS.serviceRibbonWidth 183 if (serviceRibbonWidth !== DEFAULT_APP_SETTINGS.serviceRibbonWidth
diff --git a/src/features/quickSwitch/Component.js b/src/features/quickSwitch/Component.js
index cc2775178..58479e7ef 100644
--- a/src/features/quickSwitch/Component.js
+++ b/src/features/quickSwitch/Component.js
@@ -44,7 +44,8 @@ const styles = theme => ({
44 services: { 44 services: {
45 width: '100%', 45 width: '100%',
46 maxHeight: '50vh', 46 maxHeight: '50vh',
47 overflow: 'scroll', 47 overflowX: 'hidden',
48 overflowY: 'auto',
48 }, 49 },
49 service: { 50 service: {
50 background: theme.styleTypes.primary.contrast, 51 background: theme.styleTypes.primary.contrast,
diff --git a/src/features/todos/components/TodosWebview.js b/src/features/todos/components/TodosWebview.js
index 90575ebac..18a900e8a 100644
--- a/src/features/todos/components/TodosWebview.js
+++ b/src/features/todos/components/TodosWebview.js
@@ -235,10 +235,10 @@ class TodosWebview extends Component {
235 isTodoUrlValid = validURL(todoUrl); 235 isTodoUrlValid = validURL(todoUrl);
236 } 236 }
237 237
238 let displayedWidth = isVisible ? width : 0; 238 const todosPanelStyle = {
239 if (isTodosServiceActive) { 239 width: isVisible ? width : 0,
240 displayedWidth = null; 240 borderLeftWidth: isVisible ? '1px' : 0,
241 } 241 };
242 242
243 return ( 243 return (
244 <div 244 <div
@@ -246,7 +246,7 @@ class TodosWebview extends Component {
246 [classes.root]: true, 246 [classes.root]: true,
247 [classes.isTodosServiceActive]: isTodosServiceActive, 247 [classes.isTodosServiceActive]: isTodosServiceActive,
248 })} 248 })}
249 style={{ width: displayedWidth }} 249 style={todosPanelStyle}
250 onMouseUp={() => this.stopResize()} 250 onMouseUp={() => this.stopResize()}
251 ref={(node) => { this.node = node; }} 251 ref={(node) => { this.node = node; }}
252 id="todos-panel" 252 id="todos-panel"
diff --git a/src/features/todos/index.js b/src/features/todos/index.js
index 8ff06f190..ebd2c60ef 100644
--- a/src/features/todos/index.js
+++ b/src/features/todos/index.js
@@ -10,7 +10,7 @@ export const TODOS_MIN_WIDTH = 200;
10export const DEFAULT_TODOS_VISIBLE = true; 10export const DEFAULT_TODOS_VISIBLE = true;
11export const DEFAULT_IS_FEATURE_ENABLED_BY_USER = true; 11export const DEFAULT_IS_FEATURE_ENABLED_BY_USER = true;
12export const TODOS_RECIPE_ID = 'franz-todos'; 12export const TODOS_RECIPE_ID = 'franz-todos';
13export const TODOS_PARTITION_ID = 'persist:todos"'; 13export const TODOS_PARTITION_ID = 'persist:todos';
14 14
15export const TODOS_ROUTES = { 15export const TODOS_ROUTES = {
16 TARGET: '/todos', 16 TARGET: '/todos',
diff --git a/src/features/workspaces/components/WorkspaceDrawer.js b/src/features/workspaces/components/WorkspaceDrawer.js
index baa94f6b3..bf7016e2f 100644
--- a/src/features/workspaces/components/WorkspaceDrawer.js
+++ b/src/features/workspaces/components/WorkspaceDrawer.js
@@ -76,7 +76,7 @@ const styles = theme => ({
76 }, 76 },
77 workspaces: { 77 workspaces: {
78 height: 'auto', 78 height: 'auto',
79 overflowY: 'scroll', 79 overflowY: 'auto',
80 }, 80 },
81 premiumAnnouncement: { 81 premiumAnnouncement: {
82 padding: '20px', 82 padding: '20px',
@@ -142,7 +142,7 @@ class WorkspaceDrawer extends Component {
142 } = workspaceStore; 142 } = workspaceStore;
143 const actualWorkspace = isSwitchingWorkspace ? nextWorkspace : activeWorkspace; 143 const actualWorkspace = isSwitchingWorkspace ? nextWorkspace : activeWorkspace;
144 return ( 144 return (
145 <div className={classes.drawer}> 145 <div className={`${classes.drawer} workspaces-drawer`}>
146 <H1 className={classes.headline}> 146 <H1 className={classes.headline}>
147 {workspaceStore.isPremiumUpgradeRequired && ( 147 {workspaceStore.isPremiumUpgradeRequired && (
148 <span 148 <span
diff --git a/src/i18n/locales/af.json b/src/i18n/locales/af.json
index 866a4ebe4..a0750afcf 100644
--- a/src/i18n/locales/af.json
+++ b/src/i18n/locales/af.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json
index 1b7f4d098..9c256de0c 100644
--- a/src/i18n/locales/ar.json
+++ b/src/i18n/locales/ar.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "الترقية إلى الخطة الإحترافية لفردي", 279 "settings.account.upgradeToPro.label": "الترقية إلى الخطة الإحترافية لفردي",
280 "settings.account.userInfoRequestFailed": "تعذر تحميل معلومات المستخدم", 280 "settings.account.userInfoRequestFailed": "تعذر تحميل معلومات المستخدم",
281 "settings.account.yourLicense": "رخصة فردي الخاصة بك", 281 "settings.account.yourLicense": "رخصة فردي الخاصة بك",
282 "settings.app.accentColorInfo": "اكتب لون التمييز الخاص بك بتنسيق متوافق مع CSS. (الافتراضي: #7367f0)", 282 "settings.app.accentColorInfo": "اكتب لون التمييز الخاص بك بتنسيق متوافق مع CSS. (الافتراضي: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "مسح ذاكرة التخزين المؤقت", 283 "settings.app.buttonClearAllCache": "مسح ذاكرة التخزين المؤقت",
284 "settings.app.buttonInstallUpdate": "إعادة التشغيل وتثبيت التحديث", 284 "settings.app.buttonInstallUpdate": "إعادة التشغيل وتثبيت التحديث",
285 "settings.app.buttonSearchForUpdate": "التحقق من وجود تحديثات", 285 "settings.app.buttonSearchForUpdate": "التحقق من وجود تحديثات",
diff --git a/src/i18n/locales/be.json b/src/i18n/locales/be.json
index bb15485d1..369d9a590 100644
--- a/src/i18n/locales/be.json
+++ b/src/i18n/locales/be.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/bg.json b/src/i18n/locales/bg.json
index 64a1f93c5..a2a28c856 100644
--- a/src/i18n/locales/bg.json
+++ b/src/i18n/locales/bg.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Презареди", 2 "app.errorHandler.action": "Презареди",
3 "app.errorHandler.headline" : "Нещо се обърка", 3 "app.errorHandler.headline": "Нещо се обърка",
4 "connectionLostBanner.cta" : "Презареди услугата", 4 "connectionLostBanner.cta": "Презареди услугата",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "Changes in Franz {version}", 7 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "Franz will continue in {seconds} seconds.", 9 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "Upgrade account", 14 "feature.delayApp.upgrade.actionShort": "Upgrade account",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "Send as email", 32 "feature.shareFranz.action.email": "Send as email",
33 "feature.shareFranz.action.facebook" : "Share on Facebook", 33 "feature.shareFranz.action.facebook": "Share on Facebook",
34 "feature.shareFranz.action.twitter" : "Share on Twitter", 34 "feature.shareFranz.action.twitter": "Share on Twitter",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", 38 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "Няма връзка с онлайн услугите на Франц", 49 "global.api.unhealthy": "Няма връзка с онлайн услугите на Франц",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "Не сте свързани към интернет", 51 "global.notConnectedToTheInternet": "Не сте свързани към интернет",
52 "global.spellchecker.useDefault" : "Use System Default ({default})", 52 "global.spellchecker.useDefault": "Use System Default ({default})",
53 "global.spellchecking.autodetect" : "Detect language automatically", 53 "global.spellchecking.autodetect": "Detect language automatically",
54 "global.spellchecking.autodetect.short" : "Automatic", 54 "global.spellchecking.autodetect.short": "Automatic",
55 "global.spellchecking.language" : "Spell checking language", 55 "global.spellchecking.language": "Spell checking language",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "Вмъкнете вашите услуги на Франц 4", 57 "import.headline": "Вмъкнете вашите услуги на Франц 4",
58 "import.notSupportedHeadline" : "Тези услуги не се подържат все още във Франц 5. ", 58 "import.notSupportedHeadline": "Тези услуги не се подържат все още във Франц 5. ",
59 "import.skip.label" : "Искам да прибавя ръчно услуги", 59 "import.skip.label": "Искам да прибавя ръчно услуги",
60 "import.submit.label" : "Внасяне на услуги", 60 "import.submit.label": "Внасяне на услуги",
61 "infobar.buttonChangelog" : "Кое е новото?", 61 "infobar.buttonChangelog": "Кое е новото?",
62 "infobar.buttonInstallUpdate" : "Рестартиране и инсталиране на обновлението", 62 "infobar.buttonInstallUpdate": "Рестартиране и инсталиране на обновлението",
63 "infobar.buttonReloadServices" : "Презареждане на услугите", 63 "infobar.buttonReloadServices": "Презареждане на услугите",
64 "infobar.requiredRequestsFailed" : "Неуспешно зареждане на услугите и информацията на потребителя. ", 64 "infobar.requiredRequestsFailed": "Неуспешно зареждане на услугите и информацията на потребителя. ",
65 "infobar.servicesUpdated" : "Вашите услуги са обновени.", 65 "infobar.servicesUpdated": "Вашите услуги са обновени.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "Има нова версия на Франц", 67 "infobar.updateAvailable": "Има нова версия на Франц",
68 "invite.email.label" : "Адрес на е-поща:", 68 "invite.email.label": "Адрес на е-поща:",
69 "invite.headline.friends" : "Поканете 3 ваши приятели или колеги", 69 "invite.headline.friends": "Поканете 3 ваши приятели или колеги",
70 "invite.name.label" : "Име", 70 "invite.name.label": "Име",
71 "invite.skip.label" : "Искам да направя това по-късно", 71 "invite.skip.label": "Искам да направя това по-късно",
72 "invite.submit.label" : "Изпращане на поканите", 72 "invite.submit.label": "Изпращане на поканите",
73 "invite.successInfo" : "Поканите бяха изпратени успшно", 73 "invite.successInfo": "Поканите бяха изпратени успшно",
74 "login.email.label" : "Адрес на е-поща", 74 "login.email.label": "Адрес на е-поща",
75 "login.headline" : "Вход", 75 "login.headline": "Вход",
76 "login.invalidCredentials" : "Неправилна е-поща или парола. ", 76 "login.invalidCredentials": "Неправилна е-поща или парола. ",
77 "login.link.password" : "Пренастройване на паролата", 77 "login.link.password": "Пренастройване на паролата",
78 "login.link.signup" : "Създаване на безплатен профил", 78 "login.link.signup": "Създаване на безплатен профил",
79 "login.password.label" : "Парола", 79 "login.password.label": "Парола",
80 "login.serverLogout" : "Вашата сесия изтече, моля влезте отново", 80 "login.serverLogout": "Вашата сесия изтече, моля влезте отново",
81 "login.submit.label" : "Вход", 81 "login.submit.label": "Вход",
82 "login.tokenExpired" : "Вашата сесия изтече, моля влезте отново", 82 "login.tokenExpired": "Вашата сесия изтече, моля влезте отново",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "За Franz", 85 "menu.app.about": "За Ferdi",
86 "menu.app.announcement" : "What's new?", 86 "menu.app.announcement": "What's new?",
87 "menu.app.checkForUpdates" : "Проверка за обновления", 87 "menu.app.checkForUpdates": "Проверка за обновления",
88 "menu.app.hide" : "Скрий", 88 "menu.app.hide": "Скрий",
89 "menu.app.hideOthers" : "Скрий другите", 89 "menu.app.hideOthers": "Скрий другите",
90 "menu.app.quit" : "Изход", 90 "menu.app.quit": "Изход",
91 "menu.app.settings" : "Настройки", 91 "menu.app.settings": "Настройки",
92 "menu.app.unhide" : "Покажи", 92 "menu.app.unhide": "Покажи",
93 "menu.edit" : "Редактиране", 93 "menu.edit": "Редактиране",
94 "menu.edit.copy" : "Копирай", 94 "menu.edit.copy": "Копирай",
95 "menu.edit.cut" : "Отрежи", 95 "menu.edit.cut": "Отрежи",
96 "menu.edit.delete" : "Изтриване", 96 "menu.edit.delete": "Изтриване",
97 "menu.edit.emojiSymbols" : "Емотикони и символи", 97 "menu.edit.emojiSymbols": "Емотикони и символи",
98 "menu.edit.paste" : "Постави", 98 "menu.edit.paste": "Постави",
99 "menu.edit.pasteAndMatchStyle" : "Направи Отново", 99 "menu.edit.pasteAndMatchStyle": "Направи Отново",
100 "menu.edit.redo" : "Направи отново", 100 "menu.edit.redo": "Направи отново",
101 "menu.edit.selectAll" : "Избери всичко", 101 "menu.edit.selectAll": "Избери всичко",
102 "menu.edit.speech" : "Реч", 102 "menu.edit.speech": "Реч",
103 "menu.edit.startDictation" : "Започни диктовка", 103 "menu.edit.startDictation": "Започни диктовка",
104 "menu.edit.startSpeaking" : "Започни да говориш", 104 "menu.edit.startSpeaking": "Започни да говориш",
105 "menu.edit.stopSpeaking" : "Спри да говориш", 105 "menu.edit.stopSpeaking": "Спри да говориш",
106 "menu.edit.undo" : "Отмяна", 106 "menu.edit.undo": "Отмяна",
107 "menu.file" : "Документ", 107 "menu.file": "Документ",
108 "menu.help" : "Помощ", 108 "menu.help": "Помощ",
109 "menu.help.changelog" : "Списък с промените", 109 "menu.help.changelog": "Списък с промените",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "Научете повече", 113 "menu.help.learnMore": "Научете повече",
114 "menu.help.privacy" : "Декларация за поверителност", 114 "menu.help.privacy": "Декларация за поверителност",
115 "menu.help.support" : "Поддръжка", 115 "menu.help.support": "Поддръжка",
116 "menu.help.tos" : "Условия на ползване", 116 "menu.help.tos": "Условия на ползване",
117 "menu.services" : "Услуги", 117 "menu.services": "Услуги",
118 "menu.services.activatePreviousService" : "Activate previous service", 118 "menu.services.activatePreviousService": "Activate previous service",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "Activate next service", 121 "menu.services.setNextServiceActive": "Activate next service",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "Изглед", 124 "menu.view": "Изглед",
125 "menu.view.enterFullScreen" : "Отвории на цял екран", 125 "menu.view.enterFullScreen": "Отвории на цял екран",
126 "menu.view.exitFullScreen" : "Излез от цял екран", 126 "menu.view.exitFullScreen": "Излез от цял екран",
127 "menu.view.reloadFranz" : "Презареди Franz", 127 "menu.view.reloadFranz": "Презареди Ferdi",
128 "menu.view.reloadService" : "Презареди услугата", 128 "menu.view.reloadService": "Презареди услугата",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "Оригинален размер", 130 "menu.view.resetZoom": "Оригинален размер",
131 "menu.view.toggleDevTools" : "Превключи инструментите за разработка", 131 "menu.view.toggleDevTools": "Превключи инструментите за разработка",
132 "menu.view.toggleFullScreen" : "Превключване на пълният екран", 132 "menu.view.toggleFullScreen": "Превключване на пълният екран",
133 "menu.view.toggleServiceDevTools" : "Превключване инструментите за разработка", 133 "menu.view.toggleServiceDevTools": "Превключване инструментите за разработка",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "Приближаване", 135 "menu.view.zoomIn": "Приближаване",
136 "menu.view.zoomOut" : "Отдалечаване", 136 "menu.view.zoomOut": "Отдалечаване",
137 "menu.window" : "Прозорец", 137 "menu.window": "Прозорец",
138 "menu.window.close" : "Затвори", 138 "menu.window.close": "Затвори",
139 "menu.window.minimize" : "Минимизирай", 139 "menu.window.minimize": "Минимизирай",
140 "menu.workspaces" : "Workspaces", 140 "menu.workspaces": "Workspaces",
141 "menu.workspaces.addNewWorkspace" : "Add New Workspace...", 141 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Close workspace drawer", 142 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
143 "menu.workspaces.defaultWorkspace" : "Всички услуги", 143 "menu.workspaces.defaultWorkspace": "Всички услуги",
144 "menu.workspaces.openWorkspaceDrawer" : "Open workspace drawer", 144 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
145 "password.email.label" : "Адрес на е-поща", 145 "password.email.label": "Адрес на е-поща",
146 "password.headline" : "Пренастройване на паролата", 146 "password.headline": "Пренастройване на паролата",
147 "password.link.login" : "Влизте в профила си", 147 "password.link.login": "Влизте в профила си",
148 "password.link.signup" : "Създаване на безплатен профил", 148 "password.link.signup": "Създаване на безплатен профил",
149 "password.noUser" : "Абонат с такава е-поща не бе намерен", 149 "password.noUser": "Абонат с такава е-поща не бе намерен",
150 "password.submit.label" : "Изпращане", 150 "password.submit.label": "Изпращане",
151 "password.successInfo" : "Моля отбележете вашата е-поща", 151 "password.successInfo": "Моля отбележете вашата е-поща",
152 "premiumFeature.button.upgradeAccount" : "Upgrade account", 152 "premiumFeature.button.upgradeAccount": "Upgrade account",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "Презареждане {име}", 190 "service.crashHandler.action": "Презареждане {име}",
191 "service.crashHandler.autoReload" : "Опитва се да възтанови автоматично {name} след {seconds} секунди", 191 "service.crashHandler.autoReload": "Опитва се да възтанови автоматично {name} след {seconds} секунди",
192 "service.crashHandler.headline" : "О не!", 192 "service.crashHandler.headline": "О не!",
193 "service.crashHandler.text" : "{name} създаде грешка.", 193 "service.crashHandler.text": "{name} създаде грешка.",
194 "service.disabledHandler.action" : "Активирай {name}", 194 "service.disabledHandler.action": "Активирай {name}",
195 "service.disabledHandler.headline" : "{name} е изключен", 195 "service.disabledHandler.headline": "{name} е изключен",
196 "service.errorHandler.action" : "Презареждане {име}", 196 "service.errorHandler.action": "Презареждане {име}",
197 "service.errorHandler.editAction" : "Редактира {име}", 197 "service.errorHandler.editAction": "Редактира {име}",
198 "service.errorHandler.headline" : "О не!", 198 "service.errorHandler.headline": "О не!",
199 "service.errorHandler.message" : "Грешка", 199 "service.errorHandler.message": "Грешка",
200 "service.errorHandler.text" : "{name} has failed to load.", 200 "service.errorHandler.text": "{name} has failed to load.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "Loading", 206 "service.webviewLoader.loading": "Loading",
207 "services.getStarted" : "Започване", 207 "services.getStarted": "Започване",
208 "services.welcome" : "Добре дошли във Франц", 208 "services.welcome": "Добре дошли във Франц",
209 "settings.account.account.editButton" : "Редактиране на профила", 209 "settings.account.account.editButton": "Редактиране на профила",
210 "settings.account.accountType.basic" : "Профил за начинаещи", 210 "settings.account.accountType.basic": "Профил за начинаещи",
211 "settings.account.accountType.premium" : "Профил за напреднали подръжници", 211 "settings.account.accountType.premium": "Профил за напреднали подръжници",
212 "settings.account.buttonSave" : "Обновление на профила", 212 "settings.account.buttonSave": "Обновление на профила",
213 "settings.account.deleteAccount" : "Изтриване на профила", 213 "settings.account.deleteAccount": "Изтриване на профила",
214 "settings.account.deleteEmailSent" : "Имате получено е-писмо с линк за потвърждаване на изтриването. Профилът и данните ви не могат дъдат възтановени. ", 214 "settings.account.deleteEmailSent": "Имате получено е-писмо с линк за потвърждаване на изтриването. Профилът и данните ви не могат дъдат възтановени. ",
215 "settings.account.deleteInfo" : "Ако профилът ви във Франц вече не ви е необходим, можете да го изтриете заедно с всичките данни към него тук. ", 215 "settings.account.deleteInfo": "Ако профилът ви във Франц вече не ви е необходим, можете да го изтриете заедно с всичките данни към него тук. ",
216 "settings.account.headline" : "Профил", 216 "settings.account.headline": "Профил",
217 "settings.account.headlineAccount" : "Информация на профила", 217 "settings.account.headlineAccount": "Информация на профила",
218 "settings.account.headlineDangerZone" : "Опасна зона", 218 "settings.account.headlineDangerZone": "Опасна зона",
219 "settings.account.headlineInvoices" : "Фактури", 219 "settings.account.headlineInvoices": "Фактури",
220 "settings.account.headlinePassword" : "Смяна на парола", 220 "settings.account.headlinePassword": "Смяна на парола",
221 "settings.account.headlineProfile" : "Обновление на профила", 221 "settings.account.headlineProfile": "Обновление на профила",
222 "settings.account.headlineSubscription" : "Вашият абонамент", 222 "settings.account.headlineSubscription": "Вашият абонамент",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "Изтегляне", 225 "settings.account.invoiceDownload": "Изтегляне",
226 "settings.account.manageSubscription.label" : "Управление на абонамена", 226 "settings.account.manageSubscription.label": "Управление на абонамена",
227 "settings.account.successInfo" : "Промените бяха запазени", 227 "settings.account.successInfo": "Промените бяха запазени",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "Опитайте отново", 231 "settings.account.tryReloadServices": "Опитайте отново",
232 "settings.account.tryReloadUserInfoRequest" : "Опитайте отново", 232 "settings.account.tryReloadUserInfoRequest": "Опитайте отново",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "Не може да зареди информацията на абоната", 234 "settings.account.userInfoRequestFailed": "Не може да зареди информацията на абоната",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "Изчистване на буфера", 236 "settings.app.buttonClearAllCache": "Изчистване на буфера",
237 "settings.app.buttonInstallUpdate" : "Рестартирай и инсталирай обновлението", 237 "settings.app.buttonInstallUpdate": "Рестартирай и инсталирай обновлението",
238 "settings.app.buttonSearchForUpdate" : "Проверка за обновления", 238 "settings.app.buttonSearchForUpdate": "Проверка за обновления",
239 "settings.app.cacheInfo" : "Буферът на Франц в момента използва {size} от вашия диск.", 239 "settings.app.cacheInfo": "Буферът на Франц в момента използва {size} от вашия диск.",
240 "settings.app.currentVersion" : "Текуща версия:", 240 "settings.app.currentVersion": "Текуща версия:",
241 "settings.app.form.autoLaunchInBackground" : "Отворено на заден план", 241 "settings.app.form.autoLaunchInBackground": "Отворено на заден план",
242 "settings.app.form.autoLaunchOnStart" : "Отваряне на Франц при включване", 242 "settings.app.form.autoLaunchOnStart": "Отваряне на Франц при включване",
243 "settings.app.form.beta" : "Включване на бета версии", 243 "settings.app.form.beta": "Включване на бета версии",
244 "settings.app.form.darkMode" : "Join the Dark Side", 244 "settings.app.form.darkMode": "Join the Dark Side",
245 "settings.app.form.enableGPUAcceleration" : "Включи графичният ускорител", 245 "settings.app.form.enableGPUAcceleration": "Включи графичният ускорител",
246 "settings.app.form.enableSpellchecking" : "Включване на проверката на правописа", 246 "settings.app.form.enableSpellchecking": "Включване на проверката на правописа",
247 "settings.app.form.enableSystemTray" : "Показване на мениджъра в системния панел", 247 "settings.app.form.enableSystemTray": "Показване на мениджъра в системния панел",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "Език", 250 "settings.app.form.language": "Език",
251 "settings.app.form.minimizeToSystemTray" : "Минимизиране на Франц в системния панел", 251 "settings.app.form.minimizeToSystemTray": "Минимизиране на Франц в системния панел",
252 "settings.app.form.runInBackground" : "Дръж Франж влючен в задния план когато прозореца е затворен", 252 "settings.app.form.runInBackground": "Дръж Франж влючен в задния план когато прозореца е затворен",
253 "settings.app.form.showDisabledServices" : "Покажи панели на изключени услуги", 253 "settings.app.form.showDisabledServices": "Покажи панели на изключени услуги",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Покажи непрочетени съобщения когато известията са изключени", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Покажи непрочетени съобщения когато известията са изключени",
255 "settings.app.headline" : "Настройки", 255 "settings.app.headline": "Настройки",
256 "settings.app.headlineAdvanced" : "Допълнителни", 256 "settings.app.headlineAdvanced": "Допълнителни",
257 "settings.app.headlineAppearance" : "Изглед", 257 "settings.app.headlineAppearance": "Изглед",
258 "settings.app.headlineGeneral" : "Общи", 258 "settings.app.headlineGeneral": "Общи",
259 "settings.app.headlineLanguage" : "Език", 259 "settings.app.headlineLanguage": "Език",
260 "settings.app.headlineUpdates" : "Обновления", 260 "settings.app.headlineUpdates": "Обновления",
261 "settings.app.languageDisclaimer" : "Official translations are English & German. All other languages are community based translations.", 261 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
262 "settings.app.restartRequired" : "Промените изискват резстартиране", 262 "settings.app.restartRequired": "Промените изискват резстартиране",
263 "settings.app.subheadlineCache" : "Буферна памет", 263 "settings.app.subheadlineCache": "Буферна памет",
264 "settings.app.translationHelp" : "Помогнете ни да преведем Франц на вашия език.", 264 "settings.app.translationHelp": "Помогнете ни да преведем Франц на вашия език.",
265 "settings.app.updateStatusAvailable" : "Налично обновление, изтеглпне...", 265 "settings.app.updateStatusAvailable": "Налично обновление, изтеглпне...",
266 "settings.app.updateStatusSearching" : "Търсене на обновление", 266 "settings.app.updateStatusSearching": "Търсене на обновление",
267 "settings.app.updateStatusUpToDate" : "Използвате най-новата версия на Франц", 267 "settings.app.updateStatusUpToDate": "Използвате най-новата версия на Франц",
268 "settings.invite.headline" : "Поканете приятели", 268 "settings.invite.headline": "Поканете приятели",
269 "settings.navigation.account" : "Регистрация", 269 "settings.navigation.account": "Регистрация",
270 "settings.navigation.availableServices" : "Налични услуги", 270 "settings.navigation.availableServices": "Налични услуги",
271 "settings.navigation.inviteFriends" : "Поканете приятели", 271 "settings.navigation.inviteFriends": "Поканете приятели",
272 "settings.navigation.logout" : "Изход", 272 "settings.navigation.logout": "Изход",
273 "settings.navigation.settings" : "Настройки", 273 "settings.navigation.settings": "Настройки",
274 "settings.navigation.team" : "Manage Team", 274 "settings.navigation.team": "Manage Team",
275 "settings.navigation.yourServices" : "Вашите услуги", 275 "settings.navigation.yourServices": "Вашите услуги",
276 "settings.navigation.yourWorkspaces" : "Your workspaces", 276 "settings.navigation.yourWorkspaces": "Your workspaces",
277 "settings.recipes.all" : "Всички услуги", 277 "settings.recipes.all": "Всички услуги",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "Налични услуги", 285 "settings.recipes.headline": "Налични услуги",
286 "settings.recipes.missingService" : "Липсващи услуги?", 286 "settings.recipes.missingService": "Липсващи услуги?",
287 "settings.recipes.mostPopular" : "Най-разпространените", 287 "settings.recipes.mostPopular": "Най-разпространените",
288 "settings.recipes.nothingFound" : "За съжаление няма услуги съвпадащи с вашето търсене.", 288 "settings.recipes.nothingFound": "За съжаление няма услуги съвпадащи с вашето търсене.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Услугата беше прибавена успешно", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Услугата беше прибавена успешно",
290 "settings.searchService" : "Търсене на услуга", 290 "settings.searchService": "Търсене на услуга",
291 "settings.service.error.goBack" : "Обратно към услугите", 291 "settings.service.error.goBack": "Обратно към услугите",
292 "settings.service.error.headline" : "Грешка", 292 "settings.service.error.headline": "Грешка",
293 "settings.service.error.message" : "Услугата не може да бъде заредена.", 293 "settings.service.error.message": "Услугата не може да бъде заредена.",
294 "settings.service.form.addServiceHeadline" : "Прибави {name}", 294 "settings.service.form.addServiceHeadline": "Прибави {name}",
295 "settings.service.form.availableServices" : "Налични услуги", 295 "settings.service.form.availableServices": "Налични услуги",
296 "settings.service.form.customUrl" : "Клиентски сървър", 296 "settings.service.form.customUrl": "Клиентски сървър",
297 "settings.service.form.customUrlPremiumInfo" : "За да добавите услуги, разположени на ваш сървър, трябва да имате Franz Premium Supporter профил", 297 "settings.service.form.customUrlPremiumInfo": "За да добавите услуги, разположени на ваш сървър, трябва да имате Ferdi Premium Supporter профил",
298 "settings.service.form.customUrlUpgradeAccount" : "Надградете вашия профил", 298 "settings.service.form.customUrlUpgradeAccount": "Надградете вашия профил",
299 "settings.service.form.customUrlValidationError" : "Не може да се валидира стандартния {name} сървър", 299 "settings.service.form.customUrlValidationError": "Не може да се валидира стандартния {name} сървър",
300 "settings.service.form.deleteButton" : "Изтрий услугата", 300 "settings.service.form.deleteButton": "Изтрий услугата",
301 "settings.service.form.editServiceHeadline" : "Редактира {име}", 301 "settings.service.form.editServiceHeadline": "Редактира {име}",
302 "settings.service.form.enableAudio" : "Включване на звука", 302 "settings.service.form.enableAudio": "Включване на звука",
303 "settings.service.form.enableBadge" : "Покажи списък с непрочетените съобщения", 303 "settings.service.form.enableBadge": "Покажи списък с непрочетените съобщения",
304 "settings.service.form.enableDarkMode" : "Enable Dark Mode", 304 "settings.service.form.enableDarkMode": "Enable Dark Mode",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "Включване на известяванията", 306 "settings.service.form.enableNotification": "Включване на известяванията",
307 "settings.service.form.enableService" : "Разрешаване на услугата", 307 "settings.service.form.enableService": "Разрешаване на услугата",
308 "settings.service.form.headlineBadges" : "Списък на непрочетените съобщения", 308 "settings.service.form.headlineBadges": "Списък на непрочетените съобщения",
309 "settings.service.form.headlineGeneral" : "Общи", 309 "settings.service.form.headlineGeneral": "Общи",
310 "settings.service.form.headlineNotifications" : "Известия", 310 "settings.service.form.headlineNotifications": "Известия",
311 "settings.service.form.icon" : "Стандартна икона", 311 "settings.service.form.icon": "Стандартна икона",
312 "settings.service.form.iconDelete" : "Изтрий", 312 "settings.service.form.iconDelete": "Изтрий",
313 "settings.service.form.iconUpload" : "Премести тук изображението или натисни тук", 313 "settings.service.form.iconUpload": "Премести тук изображението или натисни тук",
314 "settings.service.form.indirectMessageInfo" : "Ще бъдете известени за всички нови съобщения в даден канале не само @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "Ще бъдете известени за всички нови съобщения в даден канале не само @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "Покажи известие със списък на всички нови съобщения", 315 "settings.service.form.indirectMessages": "Покажи известие със списък на всички нови съобщения",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "Когато са дезактивирани, всички звукови известия и възпроизвеждане на аудио са заглушени", 317 "settings.service.form.isMutedInfo": "Когато са дезактивирани, всички звукови известия и възпроизвеждане на аудио са заглушени",
318 "settings.service.form.name" : "Име", 318 "settings.service.form.name": "Име",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS Proxy Settings", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
320 "settings.service.form.proxy.host" : "Proxy Host\/IP", 320 "settings.service.form.proxy.host": "Proxy Host/IP",
321 "settings.service.form.proxy.info" : "Proxy settings will not synced with the Franz servers.", 321 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
322 "settings.service.form.proxy.isEnabled" : "Use Proxy", 322 "settings.service.form.proxy.isEnabled": "Use Proxy",
323 "settings.service.form.proxy.password" : "Password (optional)", 323 "settings.service.form.proxy.password": "Password (optional)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Please restart Franz after changing proxy Settings.", 325 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
326 "settings.service.form.proxy.user" : "User (optional)", 326 "settings.service.form.proxy.user": "User (optional)",
327 "settings.service.form.saveButton" : "Запази услугата", 327 "settings.service.form.saveButton": "Запази услугата",
328 "settings.service.form.tabHosted" : "Собствен", 328 "settings.service.form.tabHosted": "Собствен",
329 "settings.service.form.tabOnPremise" : "Хостван самостоятелно", 329 "settings.service.form.tabOnPremise": "Хостван самостоятелно",
330 "settings.service.form.team" : "Екип", 330 "settings.service.form.team": "Екип",
331 "settings.service.form.useHostedService" : "Използвай хостинг {name} услугата", 331 "settings.service.form.useHostedService": "Използвай хостинг {name} услугата",
332 "settings.service.form.yourServices" : "Вашите услуги", 332 "settings.service.form.yourServices": "Вашите услуги",
333 "settings.services.deletedInfo" : "Услугата е изтрита", 333 "settings.services.deletedInfo": "Услугата е изтрита",
334 "settings.services.discoverServices" : "Намери услуги", 334 "settings.services.discoverServices": "Намери услуги",
335 "settings.services.headline" : "Вашите услуги", 335 "settings.services.headline": "Вашите услуги",
336 "settings.services.noServicesAdded" : "Не сте добавили услуги все още", 336 "settings.services.noServicesAdded": "Не сте добавили услуги все още",
337 "settings.services.servicesRequestFailed" : "Could not load your services", 337 "settings.services.servicesRequestFailed": "Could not load your services",
338 "settings.services.tooltip.isDisabled" : "Услугата е дезактивирана", 338 "settings.services.tooltip.isDisabled": "Услугата е дезактивирана",
339 "settings.services.tooltip.isMuted" : "Всички звуци са заглушени", 339 "settings.services.tooltip.isMuted": "Всички звуци са заглушени",
340 "settings.services.tooltip.notificationsDisabled" : "Известията са дезактивирани", 340 "settings.services.tooltip.notificationsDisabled": "Известията са дезактивирани",
341 "settings.services.updatedInfo" : "Промените ви са запазени", 341 "settings.services.updatedInfo": "Промените ви са запазени",
342 "settings.team.contentHeadline" : "Franz for Teams", 342 "settings.team.contentHeadline": "Franz for Teams",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "Екип", 344 "settings.team.headline": "Екип",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "Manage your Team on meetfranz.com", 346 "settings.team.manageAction": "Manage your Team on meetfranz.com",
347 "settings.team.upgradeAction" : "Upgrade your Account", 347 "settings.team.upgradeAction": "Upgrade your Account",
348 "settings.user.form.accountType.company" : "Фирма", 348 "settings.user.form.accountType.company": "Фирма",
349 "settings.user.form.accountType.individual" : "Индивидуално", 349 "settings.user.form.accountType.individual": "Индивидуално",
350 "settings.user.form.accountType.label" : "Вид регистрация", 350 "settings.user.form.accountType.label": "Вид регистрация",
351 "settings.user.form.accountType.non-profit" : "нестопански", 351 "settings.user.form.accountType.non-profit": "нестопански",
352 "settings.user.form.currentPassword" : "Текуща парола", 352 "settings.user.form.currentPassword": "Текуща парола",
353 "settings.user.form.email" : "Електронна поща", 353 "settings.user.form.email": "Електронна поща",
354 "settings.user.form.firstname" : "Собствено име", 354 "settings.user.form.firstname": "Собствено име",
355 "settings.user.form.lastname" : "Фамилно име", 355 "settings.user.form.lastname": "Фамилно име",
356 "settings.user.form.newPassword" : "Нова парола", 356 "settings.user.form.newPassword": "Нова парола",
357 "settings.workspace.add.form.name" : "Име", 357 "settings.workspace.add.form.name": "Име",
358 "settings.workspace.add.form.submitButton" : "Create workspace", 358 "settings.workspace.add.form.submitButton": "Create workspace",
359 "settings.workspace.form.buttonDelete" : "Delete workspace", 359 "settings.workspace.form.buttonDelete": "Delete workspace",
360 "settings.workspace.form.buttonSave" : "Save workspace", 360 "settings.workspace.form.buttonSave": "Save workspace",
361 "settings.workspace.form.name" : "Име", 361 "settings.workspace.form.name": "Име",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Services in this Workspace", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
363 "settings.workspace.form.yourWorkspaces" : "Your workspaces", 363 "settings.workspace.form.yourWorkspaces": "Your workspaces",
364 "settings.workspaces.deletedInfo" : "Workspace has been deleted", 364 "settings.workspaces.deletedInfo": "Workspace has been deleted",
365 "settings.workspaces.headline" : "Your workspaces", 365 "settings.workspaces.headline": "Your workspaces",
366 "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", 366 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
367 "settings.workspaces.tryReloadWorkspaces" : "Опитайте отново", 367 "settings.workspaces.tryReloadWorkspaces": "Опитайте отново",
368 "settings.workspaces.updatedInfo" : "Your changes have been saved", 368 "settings.workspaces.updatedInfo": "Your changes have been saved",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", 371 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "Добавяне на услуга", 375 "sidebar.addNewService": "Добавяне на услуга",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", 377 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
378 "sidebar.muteApp" : "Дезактивирай известията и звуците", 378 "sidebar.muteApp": "Дезактивирай известията и звуците",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "Open workspace drawer", 380 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
381 "sidebar.settings" : "Настройки", 381 "sidebar.settings": "Настройки",
382 "sidebar.unmuteApp" : "Активирай известията и звуците", 382 "sidebar.unmuteApp": "Активирай известията и звуците",
383 "signup.email.label" : "Адрес на ел. поща:", 383 "signup.email.label": "Адрес на ел. поща:",
384 "signup.emailDuplicate" : "Вече съществува потребител с този имейл адрес", 384 "signup.emailDuplicate": "Вече съществува потребител с този имейл адрес",
385 "signup.firstname.label" : "Име", 385 "signup.firstname.label": "Име",
386 "signup.headline" : "Регистриране", 386 "signup.headline": "Регистриране",
387 "signup.lastname.label" : "Фамилно име", 387 "signup.lastname.label": "Фамилно име",
388 "signup.legal.info" : "Със регистрирането за профил във програмата Franz вие приемате", 388 "signup.legal.info": "Със регистрирането за профил във програмата Ferdi вие приемате",
389 "signup.legal.privacy" : "Декларация за поверителност", 389 "signup.legal.privacy": "Декларация за поверителност",
390 "signup.legal.terms" : "Общи условия", 390 "signup.legal.terms": "Общи условия",
391 "signup.link.login" : "Вече сте регистриран, впишете се?", 391 "signup.link.login": "Вече сте регистриран, впишете се?",
392 "signup.password.label" : "Парола", 392 "signup.password.label": "Парола",
393 "signup.submit.label" : "Създаване на акаунт", 393 "signup.submit.label": "Създаване на акаунт",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "Отказ", 405 "subscriptionPopup.buttonCancel": "Отказ",
406 "subscriptionPopup.buttonDone" : "Готово", 406 "subscriptionPopup.buttonDone": "Готово",
407 "tabs.item.deleteService" : "Изтрий услугата", 407 "tabs.item.deleteService": "Изтрий услугата",
408 "tabs.item.disableAudio" : "Изключване на звука", 408 "tabs.item.disableAudio": "Изключване на звука",
409 "tabs.item.disableNotifications" : "Изключване на известията", 409 "tabs.item.disableNotifications": "Изключване на известията",
410 "tabs.item.disableService" : "Спиране на услугата", 410 "tabs.item.disableService": "Спиране на услугата",
411 "tabs.item.edit" : "Редакция", 411 "tabs.item.edit": "Редакция",
412 "tabs.item.enableAudio" : "Включване на звука", 412 "tabs.item.enableAudio": "Включване на звука",
413 "tabs.item.enableNotification" : "Включване на известяванията", 413 "tabs.item.enableNotification": "Включване на известяванията",
414 "tabs.item.enableService" : "Разрешаване на услугата", 414 "tabs.item.enableService": "Разрешаване на услугата",
415 "tabs.item.reload" : "Презареди", 415 "tabs.item.reload": "Презареди",
416 "validation.email" : "{field} не е валидно поле", 416 "validation.email": "{field} не е валидно поле",
417 "validation.minLength" : "Полето {field} трябва да бъде дълго, поне {length} знака", 417 "validation.minLength": "Полето {field} трябва да бъде дълго, поне {length} знака",
418 "validation.oneRequired" : "At least one is required", 418 "validation.oneRequired": "At least one is required",
419 "validation.required" : "{field} е задължително", 419 "validation.required": "{field} е задължително",
420 "validation.url" : "{field} не е валиден адрес", 420 "validation.url": "{field} не е валиден адрес",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "Презареди", 425 "webControls.reload": "Презареди",
426 "welcome.loginButton" : "Впишете се в акаунта си", 426 "welcome.loginButton": "Впишете се в акаунта си",
427 "welcome.signupButton" : "Създай безплатен акаунт", 427 "welcome.signupButton": "Създай безплатен акаунт",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "Всички услуги", 429 "workspaceDrawer.allServices": "Всички услуги",
430 "workspaceDrawer.headline" : "Workspaces", 430 "workspaceDrawer.headline": "Workspaces",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/bs.json b/src/i18n/locales/bs.json
index 866a4ebe4..a0750afcf 100644
--- a/src/i18n/locales/bs.json
+++ b/src/i18n/locales/bs.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/ca.json b/src/i18n/locales/ca.json
index 260d12165..4fa0bd603 100644
--- a/src/i18n/locales/ca.json
+++ b/src/i18n/locales/ca.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Actualitza a Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Actualitza a Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "No s'ha pogut carregar la informació de l'usuari", 280 "settings.account.userInfoRequestFailed": "No s'ha pogut carregar la informació de l'usuari",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Buida la memòria cau", 283 "settings.app.buttonClearAllCache": "Buida la memòria cau",
284 "settings.app.buttonInstallUpdate": "Reinicia i instal·la l'actualització", 284 "settings.app.buttonInstallUpdate": "Reinicia i instal·la l'actualització",
285 "settings.app.buttonSearchForUpdate": "Comprova si hi ha actualitzacions", 285 "settings.app.buttonSearchForUpdate": "Comprova si hi ha actualitzacions",
diff --git a/src/i18n/locales/cs.json b/src/i18n/locales/cs.json
index c9dd38207..0efd8b04a 100644
--- a/src/i18n/locales/cs.json
+++ b/src/i18n/locales/cs.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Nelze načíst informace o uživateli.", 280 "settings.account.userInfoRequestFailed": "Nelze načíst informace o uživateli.",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Vyprázdnit mezipaměti", 283 "settings.app.buttonClearAllCache": "Vyprázdnit mezipaměti",
284 "settings.app.buttonInstallUpdate": "Restartovat a nainstalovat aktualizace", 284 "settings.app.buttonInstallUpdate": "Restartovat a nainstalovat aktualizace",
285 "settings.app.buttonSearchForUpdate": "Zkontrolovat aktualizace", 285 "settings.app.buttonSearchForUpdate": "Zkontrolovat aktualizace",
diff --git a/src/i18n/locales/da.json b/src/i18n/locales/da.json
index 52f896085..92e719c57 100644
--- a/src/i18n/locales/da.json
+++ b/src/i18n/locales/da.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Opgrader til Ferdi Professionel", 279 "settings.account.upgradeToPro.label": "Opgrader til Ferdi Professionel",
280 "settings.account.userInfoRequestFailed": "Kunne ikke indlæse brugerinformation", 280 "settings.account.userInfoRequestFailed": "Kunne ikke indlæse brugerinformation",
281 "settings.account.yourLicense": "Din Ferdi-licens", 281 "settings.account.yourLicense": "Din Ferdi-licens",
282 "settings.app.accentColorInfo": "Skriv din fremhævelsesfarve i et CSS-kompatibelt format. (Standard: #7367f0)", 282 "settings.app.accentColorInfo": "Skriv din fremhævelsesfarve i et CSS-kompatibelt format. (Standard: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Ryd cache", 283 "settings.app.buttonClearAllCache": "Ryd cache",
284 "settings.app.buttonInstallUpdate": "Genstart og installer opdatering", 284 "settings.app.buttonInstallUpdate": "Genstart og installer opdatering",
285 "settings.app.buttonSearchForUpdate": "Søg efter opdateringer", 285 "settings.app.buttonSearchForUpdate": "Søg efter opdateringer",
diff --git a/src/i18n/locales/de.json b/src/i18n/locales/de.json
index 8e0994d82..1b9da6fbc 100644
--- a/src/i18n/locales/de.json
+++ b/src/i18n/locales/de.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade zu Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade zu Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Benutzerinformationen konnten nicht geladen werden", 280 "settings.account.userInfoRequestFailed": "Benutzerinformationen konnten nicht geladen werden",
281 "settings.account.yourLicense": "Deine Ferdi Lizenz", 281 "settings.account.yourLicense": "Deine Ferdi Lizenz",
282 "settings.app.accentColorInfo": "Schreibe deine Akzentfarbe in einem CSS-kompatiblen Format. (Standard: #7367f0)", 282 "settings.app.accentColorInfo": "Schreibe deine Akzentfarbe in einem CSS-kompatiblen Format. (Standard: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Cache leeren", 283 "settings.app.buttonClearAllCache": "Cache leeren",
284 "settings.app.buttonInstallUpdate": "Neu starten & Update installieren", 284 "settings.app.buttonInstallUpdate": "Neu starten & Update installieren",
285 "settings.app.buttonSearchForUpdate": "Nach Updates suchen", 285 "settings.app.buttonSearchForUpdate": "Nach Updates suchen",
diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json
index bf1840ef9..8f595b27a 100644
--- a/src/i18n/locales/defaultMessages.json
+++ b/src/i18n/locales/defaultMessages.json
@@ -3241,403 +3241,403 @@
3241 "defaultMessage": "!!!Settings", 3241 "defaultMessage": "!!!Settings",
3242 "end": { 3242 "end": {
3243 "column": 3, 3243 "column": 3,
3244 "line": 26 3244 "line": 29
3245 }, 3245 },
3246 "file": "src/components/settings/settings/EditSettingsForm.js", 3246 "file": "src/components/settings/settings/EditSettingsForm.js",
3247 "id": "settings.app.headline", 3247 "id": "settings.app.headline",
3248 "start": { 3248 "start": {
3249 "column": 12, 3249 "column": 12,
3250 "line": 23 3250 "line": 26
3251 } 3251 }
3252 }, 3252 },
3253 { 3253 {
3254 "defaultMessage": "!!!General", 3254 "defaultMessage": "!!!General",
3255 "end": { 3255 "end": {
3256 "column": 3, 3256 "column": 3,
3257 "line": 30 3257 "line": 33
3258 }, 3258 },
3259 "file": "src/components/settings/settings/EditSettingsForm.js", 3259 "file": "src/components/settings/settings/EditSettingsForm.js",
3260 "id": "settings.app.headlineGeneral", 3260 "id": "settings.app.headlineGeneral",
3261 "start": { 3261 "start": {
3262 "column": 19, 3262 "column": 19,
3263 "line": 27 3263 "line": 30
3264 } 3264 }
3265 }, 3265 },
3266 { 3266 {
3267 "defaultMessage": "!!!Sending telemetry data allows us to find errors in Ferdi - we will not send any personal information like your message data! Changing this option requires you to restart Ferdi.", 3267 "defaultMessage": "!!!Sending telemetry data allows us to find errors in Ferdi - we will not send any personal information like your message data! Changing this option requires you to restart Ferdi.",
3268 "end": { 3268 "end": {
3269 "column": 3, 3269 "column": 3,
3270 "line": 34 3270 "line": 37
3271 }, 3271 },
3272 "file": "src/components/settings/settings/EditSettingsForm.js", 3272 "file": "src/components/settings/settings/EditSettingsForm.js",
3273 "id": "settings.app.sentryInfo", 3273 "id": "settings.app.sentryInfo",
3274 "start": { 3274 "start": {
3275 "column": 14, 3275 "column": 14,
3276 "line": 31 3276 "line": 34
3277 } 3277 }
3278 }, 3278 },
3279 { 3279 {
3280 "defaultMessage": "!!!By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.", 3280 "defaultMessage": "!!!By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.",
3281 "end": { 3281 "end": {
3282 "column": 3, 3282 "column": 3,
3283 "line": 38 3283 "line": 41
3284 }, 3284 },
3285 "file": "src/components/settings/settings/EditSettingsForm.js", 3285 "file": "src/components/settings/settings/EditSettingsForm.js",
3286 "id": "settings.app.hibernateInfo", 3286 "id": "settings.app.hibernateInfo",
3287 "start": { 3287 "start": {
3288 "column": 17, 3288 "column": 17,
3289 "line": 35 3289 "line": 38
3290 } 3290 }
3291 }, 3291 },
3292 { 3292 {
3293 "defaultMessage": "!!!Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable", 3293 "defaultMessage": "!!!Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable",
3294 "end": { 3294 "end": {
3295 "column": 3, 3295 "column": 3,
3296 "line": 42 3296 "line": 45
3297 }, 3297 },
3298 "file": "src/components/settings/settings/EditSettingsForm.js", 3298 "file": "src/components/settings/settings/EditSettingsForm.js",
3299 "id": "settings.app.inactivityLockInfo", 3299 "id": "settings.app.inactivityLockInfo",
3300 "start": { 3300 "start": {
3301 "column": 22, 3301 "column": 22,
3302 "line": 39 3302 "line": 42
3303 } 3303 }
3304 }, 3304 },
3305 { 3305 {
3306 "defaultMessage": "!!!This server will be used for the \"Franz Todo\" feature. (default: https://app.franztodos.com)", 3306 "defaultMessage": "!!!This server will be used for the \"Franz Todo\" feature. (default: https://app.franztodos.com)",
3307 "end": { 3307 "end": {
3308 "column": 3, 3308 "column": 3,
3309 "line": 46 3309 "line": 49
3310 }, 3310 },
3311 "file": "src/components/settings/settings/EditSettingsForm.js", 3311 "file": "src/components/settings/settings/EditSettingsForm.js",
3312 "id": "settings.app.todoServerInfo", 3312 "id": "settings.app.todoServerInfo",
3313 "start": { 3313 "start": {
3314 "column": 18, 3314 "column": 18,
3315 "line": 43 3315 "line": 46
3316 } 3316 }
3317 }, 3317 },
3318 { 3318 {
3319 "defaultMessage": "!!!Password", 3319 "defaultMessage": "!!!Password",
3320 "end": { 3320 "end": {
3321 "column": 3, 3321 "column": 3,
3322 "line": 50 3322 "line": 53
3323 }, 3323 },
3324 "file": "src/components/settings/settings/EditSettingsForm.js", 3324 "file": "src/components/settings/settings/EditSettingsForm.js",
3325 "id": "settings.app.lockedPassword", 3325 "id": "settings.app.lockedPassword",
3326 "start": { 3326 "start": {
3327 "column": 18, 3327 "column": 18,
3328 "line": 47 3328 "line": 50
3329 } 3329 }
3330 }, 3330 },
3331 { 3331 {
3332 "defaultMessage": "!!!Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.", 3332 "defaultMessage": "!!!Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.",
3333 "end": { 3333 "end": {
3334 "column": 3, 3334 "column": 3,
3335 "line": 54 3335 "line": 57
3336 }, 3336 },
3337 "file": "src/components/settings/settings/EditSettingsForm.js", 3337 "file": "src/components/settings/settings/EditSettingsForm.js",
3338 "id": "settings.app.lockedPasswordInfo", 3338 "id": "settings.app.lockedPasswordInfo",
3339 "start": { 3339 "start": {
3340 "column": 22, 3340 "column": 22,
3341 "line": 51 3341 "line": 54
3342 } 3342 }
3343 }, 3343 },
3344 { 3344 {
3345 "defaultMessage": "!!!Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.", 3345 "defaultMessage": "!!!Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.",
3346 "end": { 3346 "end": {
3347 "column": 3, 3347 "column": 3,
3348 "line": 58 3348 "line": 61
3349 }, 3349 },
3350 "file": "src/components/settings/settings/EditSettingsForm.js", 3350 "file": "src/components/settings/settings/EditSettingsForm.js",
3351 "id": "settings.app.lockInfo", 3351 "id": "settings.app.lockInfo",
3352 "start": { 3352 "start": {
3353 "column": 12, 3353 "column": 12,
3354 "line": 55 3354 "line": 58
3355 } 3355 }
3356 }, 3356 },
3357 { 3357 {
3358 "defaultMessage": "!!!Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.", 3358 "defaultMessage": "!!!Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.",
3359 "end": { 3359 "end": {
3360 "column": 3, 3360 "column": 3,
3361 "line": 62 3361 "line": 65
3362 }, 3362 },
3363 "file": "src/components/settings/settings/EditSettingsForm.js", 3363 "file": "src/components/settings/settings/EditSettingsForm.js",
3364 "id": "settings.app.scheduledDNDTimeInfo", 3364 "id": "settings.app.scheduledDNDTimeInfo",
3365 "start": { 3365 "start": {
3366 "column": 24, 3366 "column": 24,
3367 "line": 59 3367 "line": 62
3368 } 3368 }
3369 }, 3369 },
3370 { 3370 {
3371 "defaultMessage": "!!!Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.", 3371 "defaultMessage": "!!!Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.",
3372 "end": { 3372 "end": {
3373 "column": 3, 3373 "column": 3,
3374 "line": 66 3374 "line": 69
3375 }, 3375 },
3376 "file": "src/components/settings/settings/EditSettingsForm.js", 3376 "file": "src/components/settings/settings/EditSettingsForm.js",
3377 "id": "settings.app.scheduledDNDInfo", 3377 "id": "settings.app.scheduledDNDInfo",
3378 "start": { 3378 "start": {
3379 "column": 20, 3379 "column": 20,
3380 "line": 63 3380 "line": 66
3381 } 3381 }
3382 }, 3382 },
3383 { 3383 {
3384 "defaultMessage": "!!!Language", 3384 "defaultMessage": "!!!Language",
3385 "end": { 3385 "end": {
3386 "column": 3, 3386 "column": 3,
3387 "line": 70 3387 "line": 73
3388 }, 3388 },
3389 "file": "src/components/settings/settings/EditSettingsForm.js", 3389 "file": "src/components/settings/settings/EditSettingsForm.js",
3390 "id": "settings.app.headlineLanguage", 3390 "id": "settings.app.headlineLanguage",
3391 "start": { 3391 "start": {
3392 "column": 20, 3392 "column": 20,
3393 "line": 67 3393 "line": 70
3394 } 3394 }
3395 }, 3395 },
3396 { 3396 {
3397 "defaultMessage": "!!!Updates", 3397 "defaultMessage": "!!!Updates",
3398 "end": { 3398 "end": {
3399 "column": 3, 3399 "column": 3,
3400 "line": 74 3400 "line": 77
3401 }, 3401 },
3402 "file": "src/components/settings/settings/EditSettingsForm.js", 3402 "file": "src/components/settings/settings/EditSettingsForm.js",
3403 "id": "settings.app.headlineUpdates", 3403 "id": "settings.app.headlineUpdates",
3404 "start": { 3404 "start": {
3405 "column": 19, 3405 "column": 19,
3406 "line": 71 3406 "line": 74
3407 } 3407 }
3408 }, 3408 },
3409 { 3409 {
3410 "defaultMessage": "!!!Appearance", 3410 "defaultMessage": "!!!Appearance",
3411 "end": { 3411 "end": {
3412 "column": 3, 3412 "column": 3,
3413 "line": 78 3413 "line": 81
3414 }, 3414 },
3415 "file": "src/components/settings/settings/EditSettingsForm.js", 3415 "file": "src/components/settings/settings/EditSettingsForm.js",
3416 "id": "settings.app.headlineAppearance", 3416 "id": "settings.app.headlineAppearance",
3417 "start": { 3417 "start": {
3418 "column": 22, 3418 "column": 22,
3419 "line": 75 3419 "line": 78
3420 } 3420 }
3421 }, 3421 },
3422 { 3422 {
3423 "defaultMessage": "!!!Universal Dark Mode tries to dynamically generate dark mode styles for services that are otherwise not currently supported.", 3423 "defaultMessage": "!!!Universal Dark Mode tries to dynamically generate dark mode styles for services that are otherwise not currently supported.",
3424 "end": { 3424 "end": {
3425 "column": 3, 3425 "column": 3,
3426 "line": 82 3426 "line": 85
3427 }, 3427 },
3428 "file": "src/components/settings/settings/EditSettingsForm.js", 3428 "file": "src/components/settings/settings/EditSettingsForm.js",
3429 "id": "settings.app.universalDarkModeInfo", 3429 "id": "settings.app.universalDarkModeInfo",
3430 "start": { 3430 "start": {
3431 "column": 25, 3431 "column": 25,
3432 "line": 79 3432 "line": 82
3433 } 3433 }
3434 }, 3434 },
3435 { 3435 {
3436 "defaultMessage": "!!!Write your accent color in a CSS-compatible format. (Default: #7367f0)", 3436 "defaultMessage": "!!!Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
3437 "end": { 3437 "end": {
3438 "column": 3, 3438 "column": 3,
3439 "line": 86 3439 "line": 89
3440 }, 3440 },
3441 "file": "src/components/settings/settings/EditSettingsForm.js", 3441 "file": "src/components/settings/settings/EditSettingsForm.js",
3442 "id": "settings.app.accentColorInfo", 3442 "id": "settings.app.accentColorInfo",
3443 "start": { 3443 "start": {
3444 "column": 19, 3444 "column": 19,
3445 "line": 83 3445 "line": 86
3446 } 3446 }
3447 }, 3447 },
3448 { 3448 {
3449 "defaultMessage": "!!!Advanced", 3449 "defaultMessage": "!!!Advanced",
3450 "end": { 3450 "end": {
3451 "column": 3, 3451 "column": 3,
3452 "line": 90 3452 "line": 93
3453 }, 3453 },
3454 "file": "src/components/settings/settings/EditSettingsForm.js", 3454 "file": "src/components/settings/settings/EditSettingsForm.js",
3455 "id": "settings.app.headlineAdvanced", 3455 "id": "settings.app.headlineAdvanced",
3456 "start": { 3456 "start": {
3457 "column": 20, 3457 "column": 20,
3458 "line": 87 3458 "line": 90
3459 } 3459 }
3460 }, 3460 },
3461 { 3461 {
3462 "defaultMessage": "!!!Help us to translate Ferdi into your language.", 3462 "defaultMessage": "!!!Help us to translate Ferdi into your language.",
3463 "end": { 3463 "end": {
3464 "column": 3, 3464 "column": 3,
3465 "line": 94 3465 "line": 97
3466 }, 3466 },
3467 "file": "src/components/settings/settings/EditSettingsForm.js", 3467 "file": "src/components/settings/settings/EditSettingsForm.js",
3468 "id": "settings.app.translationHelp", 3468 "id": "settings.app.translationHelp",
3469 "start": { 3469 "start": {
3470 "column": 19, 3470 "column": 19,
3471 "line": 91 3471 "line": 94
3472 } 3472 }
3473 }, 3473 },
3474 { 3474 {
3475 "defaultMessage": "!!!Ferdi uses your Mac's build-in spellchecker to check for typos. If you want to change the languages the spellchecker checks for, you can do so in your Mac's System Preferences.", 3475 "defaultMessage": "!!!Ferdi uses your Mac's build-in spellchecker to check for typos. If you want to change the languages the spellchecker checks for, you can do so in your Mac's System Preferences.",
3476 "end": { 3476 "end": {
3477 "column": 3, 3477 "column": 3,
3478 "line": 98 3478 "line": 101
3479 }, 3479 },
3480 "file": "src/components/settings/settings/EditSettingsForm.js", 3480 "file": "src/components/settings/settings/EditSettingsForm.js",
3481 "id": "settings.app.spellCheckerLanguageInfo", 3481 "id": "settings.app.spellCheckerLanguageInfo",
3482 "start": { 3482 "start": {
3483 "column": 28, 3483 "column": 28,
3484 "line": 95 3484 "line": 98
3485 } 3485 }
3486 }, 3486 },
3487 { 3487 {
3488 "defaultMessage": "!!!Cache", 3488 "defaultMessage": "!!!Cache",
3489 "end": { 3489 "end": {
3490 "column": 3, 3490 "column": 3,
3491 "line": 102 3491 "line": 105
3492 }, 3492 },
3493 "file": "src/components/settings/settings/EditSettingsForm.js", 3493 "file": "src/components/settings/settings/EditSettingsForm.js",
3494 "id": "settings.app.subheadlineCache", 3494 "id": "settings.app.subheadlineCache",
3495 "start": { 3495 "start": {
3496 "column": 20, 3496 "column": 20,
3497 "line": 99 3497 "line": 102
3498 } 3498 }
3499 }, 3499 },
3500 { 3500 {
3501 "defaultMessage": "!!!Ferdi cache is currently using {size} of disk space.", 3501 "defaultMessage": "!!!Ferdi cache is currently using {size} of disk space.",
3502 "end": { 3502 "end": {
3503 "column": 3, 3503 "column": 3,
3504 "line": 106 3504 "line": 109
3505 }, 3505 },
3506 "file": "src/components/settings/settings/EditSettingsForm.js", 3506 "file": "src/components/settings/settings/EditSettingsForm.js",
3507 "id": "settings.app.cacheInfo", 3507 "id": "settings.app.cacheInfo",
3508 "start": { 3508 "start": {
3509 "column": 13, 3509 "column": 13,
3510 "line": 103 3510 "line": 106
3511 } 3511 }
3512 }, 3512 },
3513 { 3513 {
3514 "defaultMessage": "!!!Couldn't clear all cache", 3514 "defaultMessage": "!!!Couldn't clear all cache",
3515 "end": { 3515 "end": {
3516 "column": 3, 3516 "column": 3,
3517 "line": 110 3517 "line": 113
3518 }, 3518 },
3519 "file": "src/components/settings/settings/EditSettingsForm.js", 3519 "file": "src/components/settings/settings/EditSettingsForm.js",
3520 "id": "settings.app.cacheNotCleared", 3520 "id": "settings.app.cacheNotCleared",
3521 "start": { 3521 "start": {
3522 "column": 19, 3522 "column": 19,
3523 "line": 107 3523 "line": 110
3524 } 3524 }
3525 }, 3525 },
3526 { 3526 {
3527 "defaultMessage": "!!!Clear cache", 3527 "defaultMessage": "!!!Clear cache",
3528 "end": { 3528 "end": {
3529 "column": 3, 3529 "column": 3,
3530 "line": 114 3530 "line": 117
3531 }, 3531 },
3532 "file": "src/components/settings/settings/EditSettingsForm.js", 3532 "file": "src/components/settings/settings/EditSettingsForm.js",
3533 "id": "settings.app.buttonClearAllCache", 3533 "id": "settings.app.buttonClearAllCache",
3534 "start": { 3534 "start": {
3535 "column": 23, 3535 "column": 23,
3536 "line": 111 3536 "line": 114
3537 } 3537 }
3538 }, 3538 },
3539 { 3539 {
3540 "defaultMessage": "!!!Check for updates", 3540 "defaultMessage": "!!!Check for updates",
3541 "end": { 3541 "end": {
3542 "column": 3, 3542 "column": 3,
3543 "line": 118 3543 "line": 121
3544 }, 3544 },
3545 "file": "src/components/settings/settings/EditSettingsForm.js", 3545 "file": "src/components/settings/settings/EditSettingsForm.js",
3546 "id": "settings.app.buttonSearchForUpdate", 3546 "id": "settings.app.buttonSearchForUpdate",
3547 "start": { 3547 "start": {
3548 "column": 25, 3548 "column": 25,
3549 "line": 115 3549 "line": 118
3550 } 3550 }
3551 }, 3551 },
3552 { 3552 {
3553 "defaultMessage": "!!!Restart & install update", 3553 "defaultMessage": "!!!Restart & install update",
3554 "end": { 3554 "end": {
3555 "column": 3, 3555 "column": 3,
3556 "line": 122 3556 "line": 125
3557 }, 3557 },
3558 "file": "src/components/settings/settings/EditSettingsForm.js", 3558 "file": "src/components/settings/settings/EditSettingsForm.js",
3559 "id": "settings.app.buttonInstallUpdate", 3559 "id": "settings.app.buttonInstallUpdate",
3560 "start": { 3560 "start": {
3561 "column": 23, 3561 "column": 23,
3562 "line": 119 3562 "line": 122
3563 } 3563 }
3564 }, 3564 },
3565 { 3565 {
3566 "defaultMessage": "!!!Is searching for update", 3566 "defaultMessage": "!!!Is searching for update",
3567 "end": { 3567 "end": {
3568 "column": 3, 3568 "column": 3,
3569 "line": 126 3569 "line": 129
3570 }, 3570 },
3571 "file": "src/components/settings/settings/EditSettingsForm.js", 3571 "file": "src/components/settings/settings/EditSettingsForm.js",
3572 "id": "settings.app.updateStatusSearching", 3572 "id": "settings.app.updateStatusSearching",
3573 "start": { 3573 "start": {
3574 "column": 25, 3574 "column": 25,
3575 "line": 123 3575 "line": 126
3576 } 3576 }
3577 }, 3577 },
3578 { 3578 {
3579 "defaultMessage": "!!!Update available, downloading...", 3579 "defaultMessage": "!!!Update available, downloading...",
3580 "end": { 3580 "end": {
3581 "column": 3, 3581 "column": 3,
3582 "line": 130 3582 "line": 133
3583 }, 3583 },
3584 "file": "src/components/settings/settings/EditSettingsForm.js", 3584 "file": "src/components/settings/settings/EditSettingsForm.js",
3585 "id": "settings.app.updateStatusAvailable", 3585 "id": "settings.app.updateStatusAvailable",
3586 "start": { 3586 "start": {
3587 "column": 25, 3587 "column": 25,
3588 "line": 127 3588 "line": 130
3589 } 3589 }
3590 }, 3590 },
3591 { 3591 {
3592 "defaultMessage": "!!!You are using the latest version of Ferdi", 3592 "defaultMessage": "!!!You are using the latest version of Ferdi",
3593 "end": { 3593 "end": {
3594 "column": 3, 3594 "column": 3,
3595 "line": 134 3595 "line": 137
3596 }, 3596 },
3597 "file": "src/components/settings/settings/EditSettingsForm.js", 3597 "file": "src/components/settings/settings/EditSettingsForm.js",
3598 "id": "settings.app.updateStatusUpToDate", 3598 "id": "settings.app.updateStatusUpToDate",
3599 "start": { 3599 "start": {
3600 "column": 24, 3600 "column": 24,
3601 "line": 131 3601 "line": 134
3602 } 3602 }
3603 }, 3603 },
3604 { 3604 {
3605 "defaultMessage": "!!!Current version:", 3605 "defaultMessage": "!!!Current version:",
3606 "end": { 3606 "end": {
3607 "column": 3, 3607 "column": 3,
3608 "line": 138 3608 "line": 141
3609 }, 3609 },
3610 "file": "src/components/settings/settings/EditSettingsForm.js", 3610 "file": "src/components/settings/settings/EditSettingsForm.js",
3611 "id": "settings.app.currentVersion", 3611 "id": "settings.app.currentVersion",
3612 "start": { 3612 "start": {
3613 "column": 18, 3613 "column": 18,
3614 "line": 135 3614 "line": 138
3615 } 3615 }
3616 }, 3616 },
3617 { 3617 {
3618 "defaultMessage": "!!!Changes require restart", 3618 "defaultMessage": "!!!Changes require restart",
3619 "end": { 3619 "end": {
3620 "column": 3, 3620 "column": 3,
3621 "line": 142 3621 "line": 145
3622 }, 3622 },
3623 "file": "src/components/settings/settings/EditSettingsForm.js", 3623 "file": "src/components/settings/settings/EditSettingsForm.js",
3624 "id": "settings.app.restartRequired", 3624 "id": "settings.app.restartRequired",
3625 "start": { 3625 "start": {
3626 "column": 29, 3626 "column": 29,
3627 "line": 139 3627 "line": 142
3628 } 3628 }
3629 }, 3629 },
3630 { 3630 {
3631 "defaultMessage": "!!!Official translations are English & German. All other languages are community based translations.", 3631 "defaultMessage": "!!!Official translations are English & German. All other languages are community based translations.",
3632 "end": { 3632 "end": {
3633 "column": 3, 3633 "column": 3,
3634 "line": 146 3634 "line": 149
3635 }, 3635 },
3636 "file": "src/components/settings/settings/EditSettingsForm.js", 3636 "file": "src/components/settings/settings/EditSettingsForm.js",
3637 "id": "settings.app.languageDisclaimer", 3637 "id": "settings.app.languageDisclaimer",
3638 "start": { 3638 "start": {
3639 "column": 22, 3639 "column": 22,
3640 "line": 143 3640 "line": 146
3641 } 3641 }
3642 } 3642 }
3643 ], 3643 ],
@@ -7314,962 +7314,962 @@
7314 "defaultMessage": "!!!Edit", 7314 "defaultMessage": "!!!Edit",
7315 "end": { 7315 "end": {
7316 "column": 3, 7316 "column": 3,
7317 "line": 21 7317 "line": 25
7318 }, 7318 },
7319 "file": "src/lib/Menu.js", 7319 "file": "src/lib/Menu.js",
7320 "id": "menu.edit", 7320 "id": "menu.edit",
7321 "start": { 7321 "start": {
7322 "column": 8, 7322 "column": 8,
7323 "line": 18 7323 "line": 22
7324 } 7324 }
7325 }, 7325 },
7326 { 7326 {
7327 "defaultMessage": "!!!Undo", 7327 "defaultMessage": "!!!Undo",
7328 "end": { 7328 "end": {
7329 "column": 3, 7329 "column": 3,
7330 "line": 25 7330 "line": 29
7331 }, 7331 },
7332 "file": "src/lib/Menu.js", 7332 "file": "src/lib/Menu.js",
7333 "id": "menu.edit.undo", 7333 "id": "menu.edit.undo",
7334 "start": { 7334 "start": {
7335 "column": 8, 7335 "column": 8,
7336 "line": 22 7336 "line": 26
7337 } 7337 }
7338 }, 7338 },
7339 { 7339 {
7340 "defaultMessage": "!!!Redo", 7340 "defaultMessage": "!!!Redo",
7341 "end": { 7341 "end": {
7342 "column": 3, 7342 "column": 3,
7343 "line": 29 7343 "line": 33
7344 }, 7344 },
7345 "file": "src/lib/Menu.js", 7345 "file": "src/lib/Menu.js",
7346 "id": "menu.edit.redo", 7346 "id": "menu.edit.redo",
7347 "start": { 7347 "start": {
7348 "column": 8, 7348 "column": 8,
7349 "line": 26 7349 "line": 30
7350 } 7350 }
7351 }, 7351 },
7352 { 7352 {
7353 "defaultMessage": "!!!Cut", 7353 "defaultMessage": "!!!Cut",
7354 "end": { 7354 "end": {
7355 "column": 3, 7355 "column": 3,
7356 "line": 33 7356 "line": 37
7357 }, 7357 },
7358 "file": "src/lib/Menu.js", 7358 "file": "src/lib/Menu.js",
7359 "id": "menu.edit.cut", 7359 "id": "menu.edit.cut",
7360 "start": { 7360 "start": {
7361 "column": 7, 7361 "column": 7,
7362 "line": 30 7362 "line": 34
7363 } 7363 }
7364 }, 7364 },
7365 { 7365 {
7366 "defaultMessage": "!!!Copy", 7366 "defaultMessage": "!!!Copy",
7367 "end": { 7367 "end": {
7368 "column": 3, 7368 "column": 3,
7369 "line": 37 7369 "line": 41
7370 }, 7370 },
7371 "file": "src/lib/Menu.js", 7371 "file": "src/lib/Menu.js",
7372 "id": "menu.edit.copy", 7372 "id": "menu.edit.copy",
7373 "start": { 7373 "start": {
7374 "column": 8, 7374 "column": 8,
7375 "line": 34 7375 "line": 38
7376 } 7376 }
7377 }, 7377 },
7378 { 7378 {
7379 "defaultMessage": "!!!Paste", 7379 "defaultMessage": "!!!Paste",
7380 "end": { 7380 "end": {
7381 "column": 3, 7381 "column": 3,
7382 "line": 41 7382 "line": 45
7383 }, 7383 },
7384 "file": "src/lib/Menu.js", 7384 "file": "src/lib/Menu.js",
7385 "id": "menu.edit.paste", 7385 "id": "menu.edit.paste",
7386 "start": { 7386 "start": {
7387 "column": 9, 7387 "column": 9,
7388 "line": 38 7388 "line": 42
7389 } 7389 }
7390 }, 7390 },
7391 { 7391 {
7392 "defaultMessage": "!!!Paste And Match Style", 7392 "defaultMessage": "!!!Paste And Match Style",
7393 "end": { 7393 "end": {
7394 "column": 3, 7394 "column": 3,
7395 "line": 45 7395 "line": 49
7396 }, 7396 },
7397 "file": "src/lib/Menu.js", 7397 "file": "src/lib/Menu.js",
7398 "id": "menu.edit.pasteAndMatchStyle", 7398 "id": "menu.edit.pasteAndMatchStyle",
7399 "start": { 7399 "start": {
7400 "column": 22, 7400 "column": 22,
7401 "line": 42 7401 "line": 46
7402 } 7402 }
7403 }, 7403 },
7404 { 7404 {
7405 "defaultMessage": "!!!Delete", 7405 "defaultMessage": "!!!Delete",
7406 "end": { 7406 "end": {
7407 "column": 3, 7407 "column": 3,
7408 "line": 49 7408 "line": 53
7409 }, 7409 },
7410 "file": "src/lib/Menu.js", 7410 "file": "src/lib/Menu.js",
7411 "id": "menu.edit.delete", 7411 "id": "menu.edit.delete",
7412 "start": { 7412 "start": {
7413 "column": 10, 7413 "column": 10,
7414 "line": 46 7414 "line": 50
7415 } 7415 }
7416 }, 7416 },
7417 { 7417 {
7418 "defaultMessage": "!!!Select All", 7418 "defaultMessage": "!!!Select All",
7419 "end": { 7419 "end": {
7420 "column": 3, 7420 "column": 3,
7421 "line": 53 7421 "line": 57
7422 }, 7422 },
7423 "file": "src/lib/Menu.js", 7423 "file": "src/lib/Menu.js",
7424 "id": "menu.edit.selectAll", 7424 "id": "menu.edit.selectAll",
7425 "start": { 7425 "start": {
7426 "column": 13, 7426 "column": 13,
7427 "line": 50 7427 "line": 54
7428 } 7428 }
7429 }, 7429 },
7430 { 7430 {
7431 "defaultMessage": "!!!Find in Page", 7431 "defaultMessage": "!!!Find in Page",
7432 "end": { 7432 "end": {
7433 "column": 3, 7433 "column": 3,
7434 "line": 57 7434 "line": 61
7435 }, 7435 },
7436 "file": "src/lib/Menu.js", 7436 "file": "src/lib/Menu.js",
7437 "id": "menu.edit.findInPage", 7437 "id": "menu.edit.findInPage",
7438 "start": { 7438 "start": {
7439 "column": 14, 7439 "column": 14,
7440 "line": 54 7440 "line": 58
7441 } 7441 }
7442 }, 7442 },
7443 { 7443 {
7444 "defaultMessage": "!!!Speech", 7444 "defaultMessage": "!!!Speech",
7445 "end": { 7445 "end": {
7446 "column": 3, 7446 "column": 3,
7447 "line": 61 7447 "line": 65
7448 }, 7448 },
7449 "file": "src/lib/Menu.js", 7449 "file": "src/lib/Menu.js",
7450 "id": "menu.edit.speech", 7450 "id": "menu.edit.speech",
7451 "start": { 7451 "start": {
7452 "column": 10, 7452 "column": 10,
7453 "line": 58 7453 "line": 62
7454 } 7454 }
7455 }, 7455 },
7456 { 7456 {
7457 "defaultMessage": "!!!Start Speaking", 7457 "defaultMessage": "!!!Start Speaking",
7458 "end": { 7458 "end": {
7459 "column": 3, 7459 "column": 3,
7460 "line": 65 7460 "line": 69
7461 }, 7461 },
7462 "file": "src/lib/Menu.js", 7462 "file": "src/lib/Menu.js",
7463 "id": "menu.edit.startSpeaking", 7463 "id": "menu.edit.startSpeaking",
7464 "start": { 7464 "start": {
7465 "column": 17, 7465 "column": 17,
7466 "line": 62 7466 "line": 66
7467 } 7467 }
7468 }, 7468 },
7469 { 7469 {
7470 "defaultMessage": "!!!Stop Speaking", 7470 "defaultMessage": "!!!Stop Speaking",
7471 "end": { 7471 "end": {
7472 "column": 3, 7472 "column": 3,
7473 "line": 69 7473 "line": 73
7474 }, 7474 },
7475 "file": "src/lib/Menu.js", 7475 "file": "src/lib/Menu.js",
7476 "id": "menu.edit.stopSpeaking", 7476 "id": "menu.edit.stopSpeaking",
7477 "start": { 7477 "start": {
7478 "column": 16, 7478 "column": 16,
7479 "line": 66 7479 "line": 70
7480 } 7480 }
7481 }, 7481 },
7482 { 7482 {
7483 "defaultMessage": "!!!Start Dictation", 7483 "defaultMessage": "!!!Start Dictation",
7484 "end": { 7484 "end": {
7485 "column": 3, 7485 "column": 3,
7486 "line": 73 7486 "line": 77
7487 }, 7487 },
7488 "file": "src/lib/Menu.js", 7488 "file": "src/lib/Menu.js",
7489 "id": "menu.edit.startDictation", 7489 "id": "menu.edit.startDictation",
7490 "start": { 7490 "start": {
7491 "column": 18, 7491 "column": 18,
7492 "line": 70 7492 "line": 74
7493 } 7493 }
7494 }, 7494 },
7495 { 7495 {
7496 "defaultMessage": "!!!Emoji & Symbols", 7496 "defaultMessage": "!!!Emoji & Symbols",
7497 "end": { 7497 "end": {
7498 "column": 3, 7498 "column": 3,
7499 "line": 77 7499 "line": 81
7500 }, 7500 },
7501 "file": "src/lib/Menu.js", 7501 "file": "src/lib/Menu.js",
7502 "id": "menu.edit.emojiSymbols", 7502 "id": "menu.edit.emojiSymbols",
7503 "start": { 7503 "start": {
7504 "column": 16, 7504 "column": 16,
7505 "line": 74 7505 "line": 78
7506 } 7506 }
7507 }, 7507 },
7508 { 7508 {
7509 "defaultMessage": "!!!Open Quick Switch", 7509 "defaultMessage": "!!!Open Quick Switch",
7510 "end": { 7510 "end": {
7511 "column": 3, 7511 "column": 3,
7512 "line": 81 7512 "line": 85
7513 }, 7513 },
7514 "file": "src/lib/Menu.js", 7514 "file": "src/lib/Menu.js",
7515 "id": "menu.view.openQuickSwitch", 7515 "id": "menu.view.openQuickSwitch",
7516 "start": { 7516 "start": {
7517 "column": 19, 7517 "column": 19,
7518 "line": 78 7518 "line": 82
7519 } 7519 }
7520 }, 7520 },
7521 { 7521 {
7522 "defaultMessage": "!!!Back", 7522 "defaultMessage": "!!!Back",
7523 "end": { 7523 "end": {
7524 "column": 3, 7524 "column": 3,
7525 "line": 85 7525 "line": 89
7526 }, 7526 },
7527 "file": "src/lib/Menu.js", 7527 "file": "src/lib/Menu.js",
7528 "id": "menu.view.back", 7528 "id": "menu.view.back",
7529 "start": { 7529 "start": {
7530 "column": 8, 7530 "column": 8,
7531 "line": 82 7531 "line": 86
7532 } 7532 }
7533 }, 7533 },
7534 { 7534 {
7535 "defaultMessage": "!!!Forward", 7535 "defaultMessage": "!!!Forward",
7536 "end": { 7536 "end": {
7537 "column": 3, 7537 "column": 3,
7538 "line": 89 7538 "line": 93
7539 }, 7539 },
7540 "file": "src/lib/Menu.js", 7540 "file": "src/lib/Menu.js",
7541 "id": "menu.view.forward", 7541 "id": "menu.view.forward",
7542 "start": { 7542 "start": {
7543 "column": 11, 7543 "column": 11,
7544 "line": 86 7544 "line": 90
7545 } 7545 }
7546 }, 7546 },
7547 { 7547 {
7548 "defaultMessage": "!!!Actual Size", 7548 "defaultMessage": "!!!Actual Size",
7549 "end": { 7549 "end": {
7550 "column": 3, 7550 "column": 3,
7551 "line": 93 7551 "line": 97
7552 }, 7552 },
7553 "file": "src/lib/Menu.js", 7553 "file": "src/lib/Menu.js",
7554 "id": "menu.view.resetZoom", 7554 "id": "menu.view.resetZoom",
7555 "start": { 7555 "start": {
7556 "column": 13, 7556 "column": 13,
7557 "line": 90 7557 "line": 94
7558 } 7558 }
7559 }, 7559 },
7560 { 7560 {
7561 "defaultMessage": "!!!Zoom In", 7561 "defaultMessage": "!!!Zoom In",
7562 "end": { 7562 "end": {
7563 "column": 3, 7563 "column": 3,
7564 "line": 97 7564 "line": 101
7565 }, 7565 },
7566 "file": "src/lib/Menu.js", 7566 "file": "src/lib/Menu.js",
7567 "id": "menu.view.zoomIn", 7567 "id": "menu.view.zoomIn",
7568 "start": { 7568 "start": {
7569 "column": 10, 7569 "column": 10,
7570 "line": 94 7570 "line": 98
7571 } 7571 }
7572 }, 7572 },
7573 { 7573 {
7574 "defaultMessage": "!!!Zoom Out", 7574 "defaultMessage": "!!!Zoom Out",
7575 "end": { 7575 "end": {
7576 "column": 3, 7576 "column": 3,
7577 "line": 101 7577 "line": 105
7578 }, 7578 },
7579 "file": "src/lib/Menu.js", 7579 "file": "src/lib/Menu.js",
7580 "id": "menu.view.zoomOut", 7580 "id": "menu.view.zoomOut",
7581 "start": { 7581 "start": {
7582 "column": 11, 7582 "column": 11,
7583 "line": 98 7583 "line": 102
7584 } 7584 }
7585 }, 7585 },
7586 { 7586 {
7587 "defaultMessage": "!!!Enter Full Screen", 7587 "defaultMessage": "!!!Enter Full Screen",
7588 "end": { 7588 "end": {
7589 "column": 3, 7589 "column": 3,
7590 "line": 105 7590 "line": 109
7591 }, 7591 },
7592 "file": "src/lib/Menu.js", 7592 "file": "src/lib/Menu.js",
7593 "id": "menu.view.enterFullScreen", 7593 "id": "menu.view.enterFullScreen",
7594 "start": { 7594 "start": {
7595 "column": 19, 7595 "column": 19,
7596 "line": 102 7596 "line": 106
7597 } 7597 }
7598 }, 7598 },
7599 { 7599 {
7600 "defaultMessage": "!!!Exit Full Screen", 7600 "defaultMessage": "!!!Exit Full Screen",
7601 "end": { 7601 "end": {
7602 "column": 3, 7602 "column": 3,
7603 "line": 109 7603 "line": 113
7604 }, 7604 },
7605 "file": "src/lib/Menu.js", 7605 "file": "src/lib/Menu.js",
7606 "id": "menu.view.exitFullScreen", 7606 "id": "menu.view.exitFullScreen",
7607 "start": { 7607 "start": {
7608 "column": 18, 7608 "column": 18,
7609 "line": 106 7609 "line": 110
7610 } 7610 }
7611 }, 7611 },
7612 { 7612 {
7613 "defaultMessage": "!!!Toggle Full Screen", 7613 "defaultMessage": "!!!Toggle Full Screen",
7614 "end": { 7614 "end": {
7615 "column": 3, 7615 "column": 3,
7616 "line": 113 7616 "line": 117
7617 }, 7617 },
7618 "file": "src/lib/Menu.js", 7618 "file": "src/lib/Menu.js",
7619 "id": "menu.view.toggleFullScreen", 7619 "id": "menu.view.toggleFullScreen",
7620 "start": { 7620 "start": {
7621 "column": 20, 7621 "column": 20,
7622 "line": 110 7622 "line": 114
7623 } 7623 }
7624 }, 7624 },
7625 { 7625 {
7626 "defaultMessage": "!!!Toggle Dark Mode", 7626 "defaultMessage": "!!!Toggle Dark Mode",
7627 "end": { 7627 "end": {
7628 "column": 3, 7628 "column": 3,
7629 "line": 117 7629 "line": 121
7630 }, 7630 },
7631 "file": "src/lib/Menu.js", 7631 "file": "src/lib/Menu.js",
7632 "id": "menu.view.toggleDarkMode", 7632 "id": "menu.view.toggleDarkMode",
7633 "start": { 7633 "start": {
7634 "column": 18, 7634 "column": 18,
7635 "line": 114 7635 "line": 118
7636 } 7636 }
7637 }, 7637 },
7638 { 7638 {
7639 "defaultMessage": "!!!Toggle Developer Tools", 7639 "defaultMessage": "!!!Toggle Developer Tools",
7640 "end": { 7640 "end": {
7641 "column": 3, 7641 "column": 3,
7642 "line": 121 7642 "line": 125
7643 }, 7643 },
7644 "file": "src/lib/Menu.js", 7644 "file": "src/lib/Menu.js",
7645 "id": "menu.view.toggleDevTools", 7645 "id": "menu.view.toggleDevTools",
7646 "start": { 7646 "start": {
7647 "column": 18, 7647 "column": 18,
7648 "line": 118 7648 "line": 122
7649 } 7649 }
7650 }, 7650 },
7651 { 7651 {
7652 "defaultMessage": "!!!Toggle Todos Developer Tools", 7652 "defaultMessage": "!!!Toggle Todos Developer Tools",
7653 "end": { 7653 "end": {
7654 "column": 3, 7654 "column": 3,
7655 "line": 125 7655 "line": 129
7656 }, 7656 },
7657 "file": "src/lib/Menu.js", 7657 "file": "src/lib/Menu.js",
7658 "id": "menu.view.toggleTodosDevTools", 7658 "id": "menu.view.toggleTodosDevTools",
7659 "start": { 7659 "start": {
7660 "column": 23, 7660 "column": 23,
7661 "line": 122 7661 "line": 126
7662 } 7662 }
7663 }, 7663 },
7664 { 7664 {
7665 "defaultMessage": "!!!Toggle Service Developer Tools", 7665 "defaultMessage": "!!!Toggle Service Developer Tools",
7666 "end": { 7666 "end": {
7667 "column": 3, 7667 "column": 3,
7668 "line": 129 7668 "line": 133
7669 }, 7669 },
7670 "file": "src/lib/Menu.js", 7670 "file": "src/lib/Menu.js",
7671 "id": "menu.view.toggleServiceDevTools", 7671 "id": "menu.view.toggleServiceDevTools",
7672 "start": { 7672 "start": {
7673 "column": 25, 7673 "column": 25,
7674 "line": 126 7674 "line": 130
7675 } 7675 }
7676 }, 7676 },
7677 { 7677 {
7678 "defaultMessage": "!!!Reload Service", 7678 "defaultMessage": "!!!Reload Service",
7679 "end": { 7679 "end": {
7680 "column": 3, 7680 "column": 3,
7681 "line": 133 7681 "line": 137
7682 }, 7682 },
7683 "file": "src/lib/Menu.js", 7683 "file": "src/lib/Menu.js",
7684 "id": "menu.view.reloadService", 7684 "id": "menu.view.reloadService",
7685 "start": { 7685 "start": {
7686 "column": 17, 7686 "column": 17,
7687 "line": 130 7687 "line": 134
7688 } 7688 }
7689 }, 7689 },
7690 { 7690 {
7691 "defaultMessage": "!!!Reload Ferdi", 7691 "defaultMessage": "!!!Reload Ferdi",
7692 "end": { 7692 "end": {
7693 "column": 3, 7693 "column": 3,
7694 "line": 137 7694 "line": 141
7695 }, 7695 },
7696 "file": "src/lib/Menu.js", 7696 "file": "src/lib/Menu.js",
7697 "id": "menu.view.reloadFranz", 7697 "id": "menu.view.reloadFranz",
7698 "start": { 7698 "start": {
7699 "column": 15, 7699 "column": 15,
7700 "line": 134 7700 "line": 138
7701 } 7701 }
7702 }, 7702 },
7703 { 7703 {
7704 "defaultMessage": "!!!Lock Ferdi", 7704 "defaultMessage": "!!!Lock Ferdi",
7705 "end": { 7705 "end": {
7706 "column": 3, 7706 "column": 3,
7707 "line": 141 7707 "line": 145
7708 }, 7708 },
7709 "file": "src/lib/Menu.js", 7709 "file": "src/lib/Menu.js",
7710 "id": "menu.view.lockFerdi", 7710 "id": "menu.view.lockFerdi",
7711 "start": { 7711 "start": {
7712 "column": 13, 7712 "column": 13,
7713 "line": 138 7713 "line": 142
7714 } 7714 }
7715 }, 7715 },
7716 { 7716 {
7717 "defaultMessage": "!!!Reload ToDos", 7717 "defaultMessage": "!!!Reload ToDos",
7718 "end": { 7718 "end": {
7719 "column": 3, 7719 "column": 3,
7720 "line": 145 7720 "line": 149
7721 }, 7721 },
7722 "file": "src/lib/Menu.js", 7722 "file": "src/lib/Menu.js",
7723 "id": "menu.view.reloadTodos", 7723 "id": "menu.view.reloadTodos",
7724 "start": { 7724 "start": {
7725 "column": 15, 7725 "column": 15,
7726 "line": 142 7726 "line": 146
7727 } 7727 }
7728 }, 7728 },
7729 { 7729 {
7730 "defaultMessage": "!!!Minimize", 7730 "defaultMessage": "!!!Minimize",
7731 "end": { 7731 "end": {
7732 "column": 3, 7732 "column": 3,
7733 "line": 149 7733 "line": 153
7734 }, 7734 },
7735 "file": "src/lib/Menu.js", 7735 "file": "src/lib/Menu.js",
7736 "id": "menu.window.minimize", 7736 "id": "menu.window.minimize",
7737 "start": { 7737 "start": {
7738 "column": 12, 7738 "column": 12,
7739 "line": 146 7739 "line": 150
7740 } 7740 }
7741 }, 7741 },
7742 { 7742 {
7743 "defaultMessage": "!!!Close", 7743 "defaultMessage": "!!!Close",
7744 "end": { 7744 "end": {
7745 "column": 3, 7745 "column": 3,
7746 "line": 153 7746 "line": 157
7747 }, 7747 },
7748 "file": "src/lib/Menu.js", 7748 "file": "src/lib/Menu.js",
7749 "id": "menu.window.close", 7749 "id": "menu.window.close",
7750 "start": { 7750 "start": {
7751 "column": 9, 7751 "column": 9,
7752 "line": 150 7752 "line": 154
7753 } 7753 }
7754 }, 7754 },
7755 { 7755 {
7756 "defaultMessage": "!!!Learn More", 7756 "defaultMessage": "!!!Learn More",
7757 "end": { 7757 "end": {
7758 "column": 3, 7758 "column": 3,
7759 "line": 157 7759 "line": 161
7760 }, 7760 },
7761 "file": "src/lib/Menu.js", 7761 "file": "src/lib/Menu.js",
7762 "id": "menu.help.learnMore", 7762 "id": "menu.help.learnMore",
7763 "start": { 7763 "start": {
7764 "column": 13, 7764 "column": 13,
7765 "line": 154 7765 "line": 158
7766 } 7766 }
7767 }, 7767 },
7768 { 7768 {
7769 "defaultMessage": "!!!Changelog", 7769 "defaultMessage": "!!!Changelog",
7770 "end": { 7770 "end": {
7771 "column": 3, 7771 "column": 3,
7772 "line": 161 7772 "line": 165
7773 }, 7773 },
7774 "file": "src/lib/Menu.js", 7774 "file": "src/lib/Menu.js",
7775 "id": "menu.help.changelog", 7775 "id": "menu.help.changelog",
7776 "start": { 7776 "start": {
7777 "column": 13, 7777 "column": 13,
7778 "line": 158 7778 "line": 162
7779 } 7779 }
7780 }, 7780 },
7781 { 7781 {
7782 "defaultMessage": "!!!Support", 7782 "defaultMessage": "!!!Support",
7783 "end": { 7783 "end": {
7784 "column": 3, 7784 "column": 3,
7785 "line": 165 7785 "line": 169
7786 }, 7786 },
7787 "file": "src/lib/Menu.js", 7787 "file": "src/lib/Menu.js",
7788 "id": "menu.help.support", 7788 "id": "menu.help.support",
7789 "start": { 7789 "start": {
7790 "column": 11, 7790 "column": 11,
7791 "line": 162 7791 "line": 166
7792 } 7792 }
7793 }, 7793 },
7794 { 7794 {
7795 "defaultMessage": "!!!Copy Debug Information", 7795 "defaultMessage": "!!!Copy Debug Information",
7796 "end": { 7796 "end": {
7797 "column": 3, 7797 "column": 3,
7798 "line": 169 7798 "line": 173
7799 }, 7799 },
7800 "file": "src/lib/Menu.js", 7800 "file": "src/lib/Menu.js",
7801 "id": "menu.help.debugInfo", 7801 "id": "menu.help.debugInfo",
7802 "start": { 7802 "start": {
7803 "column": 13, 7803 "column": 13,
7804 "line": 166 7804 "line": 170
7805 } 7805 }
7806 }, 7806 },
7807 { 7807 {
7808 "defaultMessage": "!!!Publish Debug Information", 7808 "defaultMessage": "!!!Publish Debug Information",
7809 "end": { 7809 "end": {
7810 "column": 3, 7810 "column": 3,
7811 "line": 173 7811 "line": 177
7812 }, 7812 },
7813 "file": "src/lib/Menu.js", 7813 "file": "src/lib/Menu.js",
7814 "id": "menu.help.publishDebugInfo", 7814 "id": "menu.help.publishDebugInfo",
7815 "start": { 7815 "start": {
7816 "column": 20, 7816 "column": 20,
7817 "line": 170 7817 "line": 174
7818 } 7818 }
7819 }, 7819 },
7820 { 7820 {
7821 "defaultMessage": "!!!Ferdi Debug Information", 7821 "defaultMessage": "!!!Ferdi Debug Information",
7822 "end": { 7822 "end": {
7823 "column": 3, 7823 "column": 3,
7824 "line": 177 7824 "line": 181
7825 }, 7825 },
7826 "file": "src/lib/Menu.js", 7826 "file": "src/lib/Menu.js",
7827 "id": "menu.help.debugInfoCopiedHeadline", 7827 "id": "menu.help.debugInfoCopiedHeadline",
7828 "start": { 7828 "start": {
7829 "column": 27, 7829 "column": 27,
7830 "line": 174 7830 "line": 178
7831 } 7831 }
7832 }, 7832 },
7833 { 7833 {
7834 "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.", 7834 "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.",
7835 "end": { 7835 "end": {
7836 "column": 3, 7836 "column": 3,
7837 "line": 181 7837 "line": 185
7838 }, 7838 },
7839 "file": "src/lib/Menu.js", 7839 "file": "src/lib/Menu.js",
7840 "id": "menu.help.debugInfoCopiedBody", 7840 "id": "menu.help.debugInfoCopiedBody",
7841 "start": { 7841 "start": {
7842 "column": 23, 7842 "column": 23,
7843 "line": 178 7843 "line": 182
7844 } 7844 }
7845 }, 7845 },
7846 { 7846 {
7847 "defaultMessage": "!!!Unlock with Touch ID", 7847 "defaultMessage": "!!!Unlock with Touch ID",
7848 "end": { 7848 "end": {
7849 "column": 3, 7849 "column": 3,
7850 "line": 185 7850 "line": 189
7851 }, 7851 },
7852 "file": "src/lib/Menu.js", 7852 "file": "src/lib/Menu.js",
7853 "id": "locked.touchId", 7853 "id": "locked.touchId",
7854 "start": { 7854 "start": {
7855 "column": 11, 7855 "column": 11,
7856 "line": 182 7856 "line": 186
7857 } 7857 }
7858 }, 7858 },
7859 { 7859 {
7860 "defaultMessage": "!!!unlock via Touch ID", 7860 "defaultMessage": "!!!unlock via Touch ID",
7861 "end": { 7861 "end": {
7862 "column": 3, 7862 "column": 3,
7863 "line": 189 7863 "line": 193
7864 }, 7864 },
7865 "file": "src/lib/Menu.js", 7865 "file": "src/lib/Menu.js",
7866 "id": "locked.touchIdPrompt", 7866 "id": "locked.touchIdPrompt",
7867 "start": { 7867 "start": {
7868 "column": 17, 7868 "column": 17,
7869 "line": 186 7869 "line": 190
7870 } 7870 }
7871 }, 7871 },
7872 { 7872 {
7873 "defaultMessage": "!!!Terms of Service", 7873 "defaultMessage": "!!!Terms of Service",
7874 "end": { 7874 "end": {
7875 "column": 3, 7875 "column": 3,
7876 "line": 193 7876 "line": 197
7877 }, 7877 },
7878 "file": "src/lib/Menu.js", 7878 "file": "src/lib/Menu.js",
7879 "id": "menu.help.tos", 7879 "id": "menu.help.tos",
7880 "start": { 7880 "start": {
7881 "column": 7, 7881 "column": 7,
7882 "line": 190 7882 "line": 194
7883 } 7883 }
7884 }, 7884 },
7885 { 7885 {
7886 "defaultMessage": "!!!Privacy Statement", 7886 "defaultMessage": "!!!Privacy Statement",
7887 "end": { 7887 "end": {
7888 "column": 3, 7888 "column": 3,
7889 "line": 197 7889 "line": 201
7890 }, 7890 },
7891 "file": "src/lib/Menu.js", 7891 "file": "src/lib/Menu.js",
7892 "id": "menu.help.privacy", 7892 "id": "menu.help.privacy",
7893 "start": { 7893 "start": {
7894 "column": 11, 7894 "column": 11,
7895 "line": 194 7895 "line": 198
7896 } 7896 }
7897 }, 7897 },
7898 { 7898 {
7899 "defaultMessage": "!!!File", 7899 "defaultMessage": "!!!File",
7900 "end": { 7900 "end": {
7901 "column": 3, 7901 "column": 3,
7902 "line": 201 7902 "line": 205
7903 }, 7903 },
7904 "file": "src/lib/Menu.js", 7904 "file": "src/lib/Menu.js",
7905 "id": "menu.file", 7905 "id": "menu.file",
7906 "start": { 7906 "start": {
7907 "column": 8, 7907 "column": 8,
7908 "line": 198 7908 "line": 202
7909 } 7909 }
7910 }, 7910 },
7911 { 7911 {
7912 "defaultMessage": "!!!View", 7912 "defaultMessage": "!!!View",
7913 "end": { 7913 "end": {
7914 "column": 3, 7914 "column": 3,
7915 "line": 205 7915 "line": 209
7916 }, 7916 },
7917 "file": "src/lib/Menu.js", 7917 "file": "src/lib/Menu.js",
7918 "id": "menu.view", 7918 "id": "menu.view",
7919 "start": { 7919 "start": {
7920 "column": 8, 7920 "column": 8,
7921 "line": 202 7921 "line": 206
7922 } 7922 }
7923 }, 7923 },
7924 { 7924 {
7925 "defaultMessage": "!!!Services", 7925 "defaultMessage": "!!!Services",
7926 "end": { 7926 "end": {
7927 "column": 3, 7927 "column": 3,
7928 "line": 209 7928 "line": 213
7929 }, 7929 },
7930 "file": "src/lib/Menu.js", 7930 "file": "src/lib/Menu.js",
7931 "id": "menu.services", 7931 "id": "menu.services",
7932 "start": { 7932 "start": {
7933 "column": 12, 7933 "column": 12,
7934 "line": 206 7934 "line": 210
7935 } 7935 }
7936 }, 7936 },
7937 { 7937 {
7938 "defaultMessage": "!!!Window", 7938 "defaultMessage": "!!!Window",
7939 "end": { 7939 "end": {
7940 "column": 3, 7940 "column": 3,
7941 "line": 213 7941 "line": 217
7942 }, 7942 },
7943 "file": "src/lib/Menu.js", 7943 "file": "src/lib/Menu.js",
7944 "id": "menu.window", 7944 "id": "menu.window",
7945 "start": { 7945 "start": {
7946 "column": 10, 7946 "column": 10,
7947 "line": 210 7947 "line": 214
7948 } 7948 }
7949 }, 7949 },
7950 { 7950 {
7951 "defaultMessage": "!!!Help", 7951 "defaultMessage": "!!!Help",
7952 "end": { 7952 "end": {
7953 "column": 3, 7953 "column": 3,
7954 "line": 217 7954 "line": 221
7955 }, 7955 },
7956 "file": "src/lib/Menu.js", 7956 "file": "src/lib/Menu.js",
7957 "id": "menu.help", 7957 "id": "menu.help",
7958 "start": { 7958 "start": {
7959 "column": 8, 7959 "column": 8,
7960 "line": 214 7960 "line": 218
7961 } 7961 }
7962 }, 7962 },
7963 { 7963 {
7964 "defaultMessage": "!!!About Ferdi", 7964 "defaultMessage": "!!!About Ferdi",
7965 "end": { 7965 "end": {
7966 "column": 3, 7966 "column": 3,
7967 "line": 221 7967 "line": 225
7968 }, 7968 },
7969 "file": "src/lib/Menu.js", 7969 "file": "src/lib/Menu.js",
7970 "id": "menu.app.about", 7970 "id": "menu.app.about",
7971 "start": { 7971 "start": {
7972 "column": 9, 7972 "column": 9,
7973 "line": 218 7973 "line": 222
7974 } 7974 }
7975 }, 7975 },
7976 { 7976 {
7977 "defaultMessage": "!!!What's new?", 7977 "defaultMessage": "!!!What's new?",
7978 "end": { 7978 "end": {
7979 "column": 3, 7979 "column": 3,
7980 "line": 225 7980 "line": 229
7981 }, 7981 },
7982 "file": "src/lib/Menu.js", 7982 "file": "src/lib/Menu.js",
7983 "id": "menu.app.announcement", 7983 "id": "menu.app.announcement",
7984 "start": { 7984 "start": {
7985 "column": 16, 7985 "column": 16,
7986 "line": 222 7986 "line": 226
7987 } 7987 }
7988 }, 7988 },
7989 { 7989 {
7990 "defaultMessage": "!!!Settings", 7990 "defaultMessage": "!!!Settings",
7991 "end": { 7991 "end": {
7992 "column": 3, 7992 "column": 3,
7993 "line": 229 7993 "line": 233
7994 }, 7994 },
7995 "file": "src/lib/Menu.js", 7995 "file": "src/lib/Menu.js",
7996 "id": "menu.app.settings", 7996 "id": "menu.app.settings",
7997 "start": { 7997 "start": {
7998 "column": 12, 7998 "column": 12,
7999 "line": 226 7999 "line": 230
8000 } 8000 }
8001 }, 8001 },
8002 { 8002 {
8003 "defaultMessage": "!!!Check for updates", 8003 "defaultMessage": "!!!Check for updates",
8004 "end": { 8004 "end": {
8005 "column": 3, 8005 "column": 3,
8006 "line": 233 8006 "line": 237
8007 }, 8007 },
8008 "file": "src/lib/Menu.js", 8008 "file": "src/lib/Menu.js",
8009 "id": "menu.app.checkForUpdates", 8009 "id": "menu.app.checkForUpdates",
8010 "start": { 8010 "start": {
8011 "column": 19, 8011 "column": 19,
8012 "line": 230 8012 "line": 234
8013 } 8013 }
8014 }, 8014 },
8015 { 8015 {
8016 "defaultMessage": "!!!Hide", 8016 "defaultMessage": "!!!Hide",
8017 "end": { 8017 "end": {
8018 "column": 3, 8018 "column": 3,
8019 "line": 237 8019 "line": 241
8020 }, 8020 },
8021 "file": "src/lib/Menu.js", 8021 "file": "src/lib/Menu.js",
8022 "id": "menu.app.hide", 8022 "id": "menu.app.hide",
8023 "start": { 8023 "start": {
8024 "column": 8, 8024 "column": 8,
8025 "line": 234 8025 "line": 238
8026 } 8026 }
8027 }, 8027 },
8028 { 8028 {
8029 "defaultMessage": "!!!Hide Others", 8029 "defaultMessage": "!!!Hide Others",
8030 "end": { 8030 "end": {
8031 "column": 3, 8031 "column": 3,
8032 "line": 241 8032 "line": 245
8033 }, 8033 },
8034 "file": "src/lib/Menu.js", 8034 "file": "src/lib/Menu.js",
8035 "id": "menu.app.hideOthers", 8035 "id": "menu.app.hideOthers",
8036 "start": { 8036 "start": {
8037 "column": 14, 8037 "column": 14,
8038 "line": 238 8038 "line": 242
8039 } 8039 }
8040 }, 8040 },
8041 { 8041 {
8042 "defaultMessage": "!!!Unhide", 8042 "defaultMessage": "!!!Unhide",
8043 "end": { 8043 "end": {
8044 "column": 3, 8044 "column": 3,
8045 "line": 245 8045 "line": 249
8046 }, 8046 },
8047 "file": "src/lib/Menu.js", 8047 "file": "src/lib/Menu.js",
8048 "id": "menu.app.unhide", 8048 "id": "menu.app.unhide",
8049 "start": { 8049 "start": {
8050 "column": 10, 8050 "column": 10,
8051 "line": 242 8051 "line": 246
8052 } 8052 }
8053 }, 8053 },
8054 { 8054 {
8055 "defaultMessage": "!!!Auto-hide menu bar", 8055 "defaultMessage": "!!!Auto-hide menu bar",
8056 "end": { 8056 "end": {
8057 "column": 3, 8057 "column": 3,
8058 "line": 249 8058 "line": 253
8059 }, 8059 },
8060 "file": "src/lib/Menu.js", 8060 "file": "src/lib/Menu.js",
8061 "id": "menu.app.autohideMenuBar", 8061 "id": "menu.app.autohideMenuBar",
8062 "start": { 8062 "start": {
8063 "column": 19, 8063 "column": 19,
8064 "line": 246 8064 "line": 250
8065 } 8065 }
8066 }, 8066 },
8067 { 8067 {
8068 "defaultMessage": "!!!Quit", 8068 "defaultMessage": "!!!Quit",
8069 "end": { 8069 "end": {
8070 "column": 3, 8070 "column": 3,
8071 "line": 253 8071 "line": 257
8072 }, 8072 },
8073 "file": "src/lib/Menu.js", 8073 "file": "src/lib/Menu.js",
8074 "id": "menu.app.quit", 8074 "id": "menu.app.quit",
8075 "start": { 8075 "start": {
8076 "column": 8, 8076 "column": 8,
8077 "line": 250 8077 "line": 254
8078 } 8078 }
8079 }, 8079 },
8080 { 8080 {
8081 "defaultMessage": "!!!Add New Service...", 8081 "defaultMessage": "!!!Add New Service...",
8082 "end": { 8082 "end": {
8083 "column": 3, 8083 "column": 3,
8084 "line": 257 8084 "line": 261
8085 }, 8085 },
8086 "file": "src/lib/Menu.js", 8086 "file": "src/lib/Menu.js",
8087 "id": "menu.services.addNewService", 8087 "id": "menu.services.addNewService",
8088 "start": { 8088 "start": {
8089 "column": 17, 8089 "column": 17,
8090 "line": 254 8090 "line": 258
8091 } 8091 }
8092 }, 8092 },
8093 { 8093 {
8094 "defaultMessage": "!!!Add New Workspace...", 8094 "defaultMessage": "!!!Add New Workspace...",
8095 "end": { 8095 "end": {
8096 "column": 3, 8096 "column": 3,
8097 "line": 261 8097 "line": 265
8098 }, 8098 },
8099 "file": "src/lib/Menu.js", 8099 "file": "src/lib/Menu.js",
8100 "id": "menu.workspaces.addNewWorkspace", 8100 "id": "menu.workspaces.addNewWorkspace",
8101 "start": { 8101 "start": {
8102 "column": 19, 8102 "column": 19,
8103 "line": 258 8103 "line": 262
8104 } 8104 }
8105 }, 8105 },
8106 { 8106 {
8107 "defaultMessage": "!!!Open workspace drawer", 8107 "defaultMessage": "!!!Open workspace drawer",
8108 "end": { 8108 "end": {
8109 "column": 3, 8109 "column": 3,
8110 "line": 265 8110 "line": 269
8111 }, 8111 },
8112 "file": "src/lib/Menu.js", 8112 "file": "src/lib/Menu.js",
8113 "id": "menu.workspaces.openWorkspaceDrawer", 8113 "id": "menu.workspaces.openWorkspaceDrawer",
8114 "start": { 8114 "start": {
8115 "column": 23, 8115 "column": 23,
8116 "line": 262 8116 "line": 266
8117 } 8117 }
8118 }, 8118 },
8119 { 8119 {
8120 "defaultMessage": "!!!Close workspace drawer", 8120 "defaultMessage": "!!!Close workspace drawer",
8121 "end": { 8121 "end": {
8122 "column": 3, 8122 "column": 3,
8123 "line": 269 8123 "line": 273
8124 }, 8124 },
8125 "file": "src/lib/Menu.js", 8125 "file": "src/lib/Menu.js",
8126 "id": "menu.workspaces.closeWorkspaceDrawer", 8126 "id": "menu.workspaces.closeWorkspaceDrawer",
8127 "start": { 8127 "start": {
8128 "column": 24, 8128 "column": 24,
8129 "line": 266 8129 "line": 270
8130 } 8130 }
8131 }, 8131 },
8132 { 8132 {
8133 "defaultMessage": "!!!Activate next service...", 8133 "defaultMessage": "!!!Activate next service...",
8134 "end": { 8134 "end": {
8135 "column": 3, 8135 "column": 3,
8136 "line": 273 8136 "line": 277
8137 }, 8137 },
8138 "file": "src/lib/Menu.js", 8138 "file": "src/lib/Menu.js",
8139 "id": "menu.services.setNextServiceActive", 8139 "id": "menu.services.setNextServiceActive",
8140 "start": { 8140 "start": {
8141 "column": 23, 8141 "column": 23,
8142 "line": 270 8142 "line": 274
8143 } 8143 }
8144 }, 8144 },
8145 { 8145 {
8146 "defaultMessage": "!!!Activate previous service...", 8146 "defaultMessage": "!!!Activate previous service...",
8147 "end": { 8147 "end": {
8148 "column": 3, 8148 "column": 3,
8149 "line": 277 8149 "line": 281
8150 }, 8150 },
8151 "file": "src/lib/Menu.js", 8151 "file": "src/lib/Menu.js",
8152 "id": "menu.services.activatePreviousService", 8152 "id": "menu.services.activatePreviousService",
8153 "start": { 8153 "start": {
8154 "column": 27, 8154 "column": 27,
8155 "line": 274 8155 "line": 278
8156 } 8156 }
8157 }, 8157 },
8158 { 8158 {
8159 "defaultMessage": "!!!Disable notifications & audio", 8159 "defaultMessage": "!!!Disable notifications & audio",
8160 "end": { 8160 "end": {
8161 "column": 3, 8161 "column": 3,
8162 "line": 281 8162 "line": 285
8163 }, 8163 },
8164 "file": "src/lib/Menu.js", 8164 "file": "src/lib/Menu.js",
8165 "id": "sidebar.muteApp", 8165 "id": "sidebar.muteApp",
8166 "start": { 8166 "start": {
8167 "column": 11, 8167 "column": 11,
8168 "line": 278 8168 "line": 282
8169 } 8169 }
8170 }, 8170 },
8171 { 8171 {
8172 "defaultMessage": "!!!Enable notifications & audio", 8172 "defaultMessage": "!!!Enable notifications & audio",
8173 "end": { 8173 "end": {
8174 "column": 3, 8174 "column": 3,
8175 "line": 285 8175 "line": 289
8176 }, 8176 },
8177 "file": "src/lib/Menu.js", 8177 "file": "src/lib/Menu.js",
8178 "id": "sidebar.unmuteApp", 8178 "id": "sidebar.unmuteApp",
8179 "start": { 8179 "start": {
8180 "column": 13, 8180 "column": 13,
8181 "line": 282 8181 "line": 286
8182 } 8182 }
8183 }, 8183 },
8184 { 8184 {
8185 "defaultMessage": "!!!Workspaces", 8185 "defaultMessage": "!!!Workspaces",
8186 "end": { 8186 "end": {
8187 "column": 3, 8187 "column": 3,
8188 "line": 289 8188 "line": 293
8189 }, 8189 },
8190 "file": "src/lib/Menu.js", 8190 "file": "src/lib/Menu.js",
8191 "id": "menu.workspaces", 8191 "id": "menu.workspaces",
8192 "start": { 8192 "start": {
8193 "column": 14, 8193 "column": 14,
8194 "line": 286 8194 "line": 290
8195 } 8195 }
8196 }, 8196 },
8197 { 8197 {
8198 "defaultMessage": "!!!Default", 8198 "defaultMessage": "!!!Default",
8199 "end": { 8199 "end": {
8200 "column": 3, 8200 "column": 3,
8201 "line": 293 8201 "line": 297
8202 }, 8202 },
8203 "file": "src/lib/Menu.js", 8203 "file": "src/lib/Menu.js",
8204 "id": "menu.workspaces.defaultWorkspace", 8204 "id": "menu.workspaces.defaultWorkspace",
8205 "start": { 8205 "start": {
8206 "column": 20, 8206 "column": 20,
8207 "line": 290 8207 "line": 294
8208 } 8208 }
8209 }, 8209 },
8210 { 8210 {
8211 "defaultMessage": "!!!Todos", 8211 "defaultMessage": "!!!Todos",
8212 "end": { 8212 "end": {
8213 "column": 3, 8213 "column": 3,
8214 "line": 297 8214 "line": 301
8215 }, 8215 },
8216 "file": "src/lib/Menu.js", 8216 "file": "src/lib/Menu.js",
8217 "id": "menu.todos", 8217 "id": "menu.todos",
8218 "start": { 8218 "start": {
8219 "column": 9, 8219 "column": 9,
8220 "line": 294 8220 "line": 298
8221 } 8221 }
8222 }, 8222 },
8223 { 8223 {
8224 "defaultMessage": "!!!Open Todos drawer", 8224 "defaultMessage": "!!!Open Todos drawer",
8225 "end": { 8225 "end": {
8226 "column": 3, 8226 "column": 3,
8227 "line": 301 8227 "line": 305
8228 }, 8228 },
8229 "file": "src/lib/Menu.js", 8229 "file": "src/lib/Menu.js",
8230 "id": "menu.Todoss.openTodosDrawer", 8230 "id": "menu.Todoss.openTodosDrawer",
8231 "start": { 8231 "start": {
8232 "column": 19, 8232 "column": 19,
8233 "line": 298 8233 "line": 302
8234 } 8234 }
8235 }, 8235 },
8236 { 8236 {
8237 "defaultMessage": "!!!Close Todos drawer", 8237 "defaultMessage": "!!!Close Todos drawer",
8238 "end": { 8238 "end": {
8239 "column": 3, 8239 "column": 3,
8240 "line": 305 8240 "line": 309
8241 }, 8241 },
8242 "file": "src/lib/Menu.js", 8242 "file": "src/lib/Menu.js",
8243 "id": "menu.Todoss.closeTodosDrawer", 8243 "id": "menu.Todoss.closeTodosDrawer",
8244 "start": { 8244 "start": {
8245 "column": 20, 8245 "column": 20,
8246 "line": 302 8246 "line": 306
8247 } 8247 }
8248 }, 8248 },
8249 { 8249 {
8250 "defaultMessage": "!!!Enable Todos", 8250 "defaultMessage": "!!!Enable Todos",
8251 "end": { 8251 "end": {
8252 "column": 3, 8252 "column": 3,
8253 "line": 309 8253 "line": 313
8254 }, 8254 },
8255 "file": "src/lib/Menu.js", 8255 "file": "src/lib/Menu.js",
8256 "id": "menu.todos.enableTodos", 8256 "id": "menu.todos.enableTodos",
8257 "start": { 8257 "start": {
8258 "column": 15, 8258 "column": 15,
8259 "line": 306 8259 "line": 310
8260 } 8260 }
8261 }, 8261 },
8262 { 8262 {
8263 "defaultMessage": "!!!Home", 8263 "defaultMessage": "!!!Home",
8264 "end": { 8264 "end": {
8265 "column": 3, 8265 "column": 3,
8266 "line": 313 8266 "line": 317
8267 }, 8267 },
8268 "file": "src/lib/Menu.js", 8268 "file": "src/lib/Menu.js",
8269 "id": "menu.services.goHome", 8269 "id": "menu.services.goHome",
8270 "start": { 8270 "start": {
8271 "column": 17, 8271 "column": 17,
8272 "line": 310 8272 "line": 314
8273 } 8273 }
8274 } 8274 }
8275 ], 8275 ],
diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json
index c93e2ee1c..6095e2f22 100644
--- a/src/i18n/locales/el.json
+++ b/src/i18n/locales/el.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Δεν ήταν δυνατή η φόρτωση πληροφοριών χρήστη", 280 "settings.account.userInfoRequestFailed": "Δεν ήταν δυνατή η φόρτωση πληροφοριών χρήστη",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Καθαρισμός λανθάνουσας μνήμης", 283 "settings.app.buttonClearAllCache": "Καθαρισμός λανθάνουσας μνήμης",
284 "settings.app.buttonInstallUpdate": "Επανεκκίνηση & εγκατάσταση ενημερώσεων", 284 "settings.app.buttonInstallUpdate": "Επανεκκίνηση & εγκατάσταση ενημερώσεων",
285 "settings.app.buttonSearchForUpdate": "Έλεγχος για ενημερώσεις", 285 "settings.app.buttonSearchForUpdate": "Έλεγχος για ενημερώσεις",
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index bb15485d1..369d9a590 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json
index 4799ddc4f..61a8c15c5 100644
--- a/src/i18n/locales/es.json
+++ b/src/i18n/locales/es.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Actualiza a Ferdi Profesional", 279 "settings.account.upgradeToPro.label": "Actualiza a Ferdi Profesional",
280 "settings.account.userInfoRequestFailed": "No se pudo cargar la información de usuario", 280 "settings.account.userInfoRequestFailed": "No se pudo cargar la información de usuario",
281 "settings.account.yourLicense": "Su Licencia Ferdi", 281 "settings.account.yourLicense": "Su Licencia Ferdi",
282 "settings.app.accentColorInfo": "Escribir color de acento en formato compatible CSS. (Predeterminado: #7367f0)", 282 "settings.app.accentColorInfo": "Escribir color de acento en formato compatible CSS. (Predeterminado: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Limpiar caché", 283 "settings.app.buttonClearAllCache": "Limpiar caché",
284 "settings.app.buttonInstallUpdate": "Reiniciar e instalar actualización", 284 "settings.app.buttonInstallUpdate": "Reiniciar e instalar actualización",
285 "settings.app.buttonSearchForUpdate": "Comprobar actualizaciones", 285 "settings.app.buttonSearchForUpdate": "Comprobar actualizaciones",
diff --git a/src/i18n/locales/et.json b/src/i18n/locales/et.json
index e80bb9ff3..6709db455 100644
--- a/src/i18n/locales/et.json
+++ b/src/i18n/locales/et.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Laadi uuesti", 2 "app.errorHandler.action": "Laadi uuesti",
3 "app.errorHandler.headline" : "Ups! Midagi läks nihu.", 3 "app.errorHandler.headline": "Ups! Midagi läks nihu.",
4 "connectionLostBanner.cta" : "Laadi teenus uuesti", 4 "connectionLostBanner.cta": "Laadi teenus uuesti",
5 "connectionLostBanner.informationLink" : "Mis juhtus?", 5 "connectionLostBanner.informationLink": "Mis juhtus?",
6 "connectionLostBanner.message" : "Oh ei! Franz kaotas ühenduse {name} teenusega.", 6 "connectionLostBanner.message": "Oh ei! Ferdi kaotas ühenduse {name} teenusega.",
7 "feature.announcements.changelog.headline" : "Franz {versiooni} uuendused", 7 "feature.announcements.changelog.headline": "Ferdi {versiooni} uuendused",
8 "feature.delayApp.headline" : "Uuendage oma Franz'i tellimust, et ootamine vahele jätta", 8 "feature.delayApp.headline": "Uuendage oma Ferdi'i tellimust, et ootamine vahele jätta",
9 "feature.delayApp.text" : "Franz jätkab {seconds} sekundi pärast.", 9 "feature.delayApp.text": "Ferdi jätkab {seconds} sekundi pärast.",
10 "feature.delayApp.trial.action" : "Jah, ma tahan Franz Professionali tasuta 14-päevast proovitellimust", 10 "feature.delayApp.trial.action": "Jah, ma tahan Ferdi Professionali tasuta 14-päevast proovitellimust",
11 "feature.delayApp.trial.actionShort" : "Aktiveerige tasuta Franz Professionali proovitellimus", 11 "feature.delayApp.trial.actionShort": "Aktiveerige tasuta Ferdi Professionali proovitellimus",
12 "feature.delayApp.trial.headline" : "Hankige tasuta Franz Professionali 14-päevane proovitellimus ja saate ootamise vahele jätta", 12 "feature.delayApp.trial.headline": "Hankige tasuta Ferdi Professionali 14-päevane proovitellimus ja saate ootamise vahele jätta",
13 "feature.delayApp.upgrade.action" : "Uuendage Franz'it", 13 "feature.delayApp.upgrade.action": "Uuendage Ferdi'it",
14 "feature.delayApp.upgrade.actionShort" : "Uuendage oma kontot", 14 "feature.delayApp.upgrade.actionShort": "Uuendage oma kontot",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Minge tagasi tasuta tellimusele", 15 "feature.planSelection.cta.ctaDowngradeFree": "Minge tagasi tasuta tellimusele",
16 "feature.planSelection.cta.stayOnFree" : "Jää tasuta tellimuse juurde", 16 "feature.planSelection.cta.stayOnFree": "Jää tasuta tellimuse juurde",
17 "feature.planSelection.cta.trial" : "Alustage minu tasuta 14-päevast proovitellimust", 17 "feature.planSelection.cta.trial": "Alustage minu tasuta 14-päevast proovitellimust",
18 "feature.planSelection.cta.upgradePersonal" : "Valige Personal tellimus", 18 "feature.planSelection.cta.upgradePersonal": "Valige Personal tellimus",
19 "feature.planSelection.cta.upgradePro" : "Valige Professional tellimus", 19 "feature.planSelection.cta.upgradePro": "Valige Professional tellimus",
20 "feature.planSelection.free.text" : "Põhifunktsionaalsus", 20 "feature.planSelection.free.text": "Põhifunktsionaalsus",
21 "feature.planSelection.fullFeatureList" : "Kõigi tellimuste täielik võrdlus", 21 "feature.planSelection.fullFeatureList": "Kõigi tellimuste täielik võrdlus",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Minge tagasi tasuta tellimusele", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Minge tagasi tasuta tellimusele",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Valige Personal tellimus", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Valige Personal tellimus",
24 "feature.planSelection.fullscreen.dialog.message" : "Olete hakanud meie tasuta tellimusele tagasi minema. Olete ikka kindel? Selle asemel klõpsake siin, et saada rohkem teenuseid ja funktsioone vaid {currency} {price} eest kuus.", 24 "feature.planSelection.fullscreen.dialog.message": "Olete hakanud meie tasuta tellimusele tagasi minema. Olete ikka kindel? Selle asemel klõpsake siin, et saada rohkem teenuseid ja funktsioone vaid {currency} {price} eest kuus.",
25 "feature.planSelection.fullscreen.dialog.title" : "Minge tagasi oma Franz'i tellimusele", 25 "feature.planSelection.fullscreen.dialog.title": "Minge tagasi oma Ferdi'i tellimusele",
26 "feature.planSelection.fullscreen.subheadline" : "On aeg teha valik. Franz töötab kõige paremini meie Personal ja Professional tellimustega. Vaadake palun ja valige endale sobiv.", 26 "feature.planSelection.fullscreen.subheadline": "On aeg teha valik. Ferdi töötab kõige paremini meie Personal ja Professional tellimustega. Vaadake palun ja valige endale sobiv.",
27 "feature.planSelection.fullscreen.welcome" : "{name}, kas olete valmis valima?", 27 "feature.planSelection.fullscreen.welcome": "{name}, kas olete valmis valima?",
28 "feature.planSelection.personal.text" : "Rohkem teenuseid, ilma ootamiseta - ideaalne isiklikuks kasutamiseks.", 28 "feature.planSelection.personal.text": "Rohkem teenuseid, ilma ootamiseta - ideaalne isiklikuks kasutamiseks.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "Kõik hinnad põhinevad aastamaksel", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "Kõik hinnad põhinevad aastamaksel",
30 "feature.planSelection.pro.text" : "Piiramatu teenus ja täiustatud funktsioonid teile ja teie meeskonnale.", 30 "feature.planSelection.pro.text": "Piiramatu teenus ja täiustatud funktsioonid teile ja teie meeskonnale.",
31 "feature.serviceLimit.limitReached" : "Olete lisanud {amount} teenust, saadaolevast {limit} teenusest, mis on lubatud tellimuses. Teenuste lisamiseks täiendage oma kontot.", 31 "feature.serviceLimit.limitReached": "Olete lisanud {amount} teenust, saadaolevast {limit} teenusest, mis on lubatud tellimuses. Teenuste lisamiseks täiendage oma kontot.",
32 "feature.shareFranz.action.email" : "Saadke e-kirjana", 32 "feature.shareFranz.action.email": "Saadke e-kirjana",
33 "feature.shareFranz.action.facebook" : "Jagage Facebookis", 33 "feature.shareFranz.action.facebook": "Jagage Facebookis",
34 "feature.shareFranz.action.twitter" : "Jagage Twitteris", 34 "feature.shareFranz.action.twitter": "Jagage Twitteris",
35 "feature.shareFranz.headline" : "Franz on koostöös parem!", 35 "feature.shareFranz.headline": "Ferdi on koostöös parem!",
36 "feature.shareFranz.shareText.email" : "Olen lisanud Franz'i {count} teenust! Hankige tasuta rakendus WhatsApp'ile, Messenger'ile, Slack'ile, Skype'ile ja muule veebiaadressilt www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "Olen lisanud Ferdi'i {count} teenust! Hankige tasuta rakendus WhatsApp'ile, Messenger'ile, Slack'ile, Skype'ile ja muule veebiaadressilt www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "Olen lisanud Franz'i {count} teenust! Hankige tasuta rakendus WhatsApp'ile, Messenger'ile, Slack'ile, Skype'ile ja muule veebiaadressilt www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "Olen lisanud Ferdi'i {count} teenust! Hankige tasuta rakendus WhatsApp'ile, Messenger'ile, Slack'ile, Skype'ile ja muule veebiaadressilt www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Rääkige oma sõpradele ja kolleegidele, kui vinge Franz on, ja aidake meil seda sõna levitada.", 38 "feature.shareFranz.text": "Rääkige oma sõpradele ja kolleegidele, kui vinge Ferdi on, ja aidake meil seda sõna levitada.",
39 "feature.todos.premium.info" : "Franz'i ülesanded on nüüd saadaval tasulise tellimusega kasutajatele!", 39 "feature.todos.premium.info": "Ferdi'i ülesanded on nüüd saadaval tasulise tellimusega kasutajatele!",
40 "feature.todos.premium.rollout" : "Kõigil teistel tuleb veidi kauem oodata.", 40 "feature.todos.premium.rollout": "Kõigil teistel tuleb veidi kauem oodata.",
41 "feature.todos.premium.upgrade" : "Uuendage oma kontot", 41 "feature.todos.premium.upgrade": "Uuendage oma kontot",
42 "feature.trialStatusBar.cta" : "Uuendage nüüd", 42 "feature.trialStatusBar.cta": "Uuendage nüüd",
43 "feature.trialStatusBar.expired" : "Teie tasuta Franzi {plan} proovitellimus on lõppenud, uuendage oma kontot.", 43 "feature.trialStatusBar.expired": "Teie tasuta Ferdii {plan} proovitellimus on lõppenud, uuendage oma kontot.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Minge tagasi tasuta tellimusele", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Minge tagasi tasuta tellimusele",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Valige Personal tellimus", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Valige Personal tellimus",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "Olete hakanud meie tasuta tellimusele tagasi minema. Olete ikka kindel? Selle asemel klõpsake siin, et saada rohkem teenuseid ja funktsioone vaid {currency} {price} eest kuus.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "Olete hakanud meie tasuta tellimusele tagasi minema. Olete ikka kindel? Selle asemel klõpsake siin, et saada rohkem teenuseid ja funktsioone vaid {currency} {price} eest kuus.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Minge tagasi oma Franz'i tellimusele", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Minge tagasi oma Ferdi'i tellimusele",
48 "feature.trialStatusBar.restTime" : "Teie tasuta Franz'i {plan} proovtellimus lõpeb {time} pärast.", 48 "feature.trialStatusBar.restTime": "Teie tasuta Ferdi'i {plan} proovtellimus lõpeb {time} pärast.",
49 "global.api.unhealthy" : "Ups! Franz'i võrguteenustega ei saa ühendust luua", 49 "global.api.unhealthy": "Ups! Ferdi'i võrguteenustega ei saa ühendust luua",
50 "global.franzProRequired" : "Vajalik Franz Professional tellimus", 50 "global.franzProRequired": "Vajalik Ferdi Professional tellimus",
51 "global.notConnectedToTheInternet" : "Teil pole Interneti-ühendust.", 51 "global.notConnectedToTheInternet": "Teil pole Interneti-ühendust.",
52 "global.spellchecker.useDefault" : "Kasuta süsteemi vaikeväärtust ({default})", 52 "global.spellchecker.useDefault": "Kasuta süsteemi vaikeväärtust ({default})",
53 "global.spellchecking.autodetect" : "Tuvastage keel automaatselt", 53 "global.spellchecking.autodetect": "Tuvastage keel automaatselt",
54 "global.spellchecking.autodetect.short" : "Automaatne", 54 "global.spellchecking.autodetect.short": "Automaatne",
55 "global.spellchecking.language" : "Õigekirja kontrollimise keel", 55 "global.spellchecking.language": "Õigekirja kontrollimise keel",
56 "global.upgradeButton.upgradeToPro" : "Täiendage Franz Professional tellimusele", 56 "global.upgradeButton.upgradeToPro": "Täiendage Ferdi Professional tellimusele",
57 "import.headline" : "Importige oma Franz 4 teenused", 57 "import.headline": "Importige oma Ferdi 4 teenused",
58 "import.notSupportedHeadline" : "Teenused, mida Franz 5 veel ei toeta", 58 "import.notSupportedHeadline": "Teenused, mida Ferdi 5 veel ei toeta",
59 "import.skip.label" : "Soovin teenuseid käsitsi lisada", 59 "import.skip.label": "Soovin teenuseid käsitsi lisada",
60 "import.submit.label" : "Teenuste importimine", 60 "import.submit.label": "Teenuste importimine",
61 "infobar.buttonChangelog" : "Mis on uut?", 61 "infobar.buttonChangelog": "Mis on uut?",
62 "infobar.buttonInstallUpdate" : "Taaskäivita ja paigalda värskendus", 62 "infobar.buttonInstallUpdate": "Taaskäivita ja paigalda värskendus",
63 "infobar.buttonReloadServices" : "Laadi teenused uuesti", 63 "infobar.buttonReloadServices": "Laadi teenused uuesti",
64 "infobar.requiredRequestsFailed" : "Teenuseid ja kasutajainfot ei õnnestunud laadida", 64 "infobar.requiredRequestsFailed": "Teenuseid ja kasutajainfot ei õnnestunud laadida",
65 "infobar.servicesUpdated" : "Teie teenuseid on uuendatud.", 65 "infobar.servicesUpdated": "Teie teenuseid on uuendatud.",
66 "infobar.trialActivated" : "Teie proovitellimus oli edukalt aktiveeritud. Head sõnumineerimist!", 66 "infobar.trialActivated": "Teie proovitellimus oli edukalt aktiveeritud. Head sõnumineerimist!",
67 "infobar.updateAvailable" : "Franz'i jaoks on saadaval uus värskendus.", 67 "infobar.updateAvailable": "Ferdi'i jaoks on saadaval uus värskendus.",
68 "invite.email.label" : "E-posti aadress", 68 "invite.email.label": "E-posti aadress",
69 "invite.headline.friends" : "Kutsu oma 3 sõpra või kolleegi liituma", 69 "invite.headline.friends": "Kutsu oma 3 sõpra või kolleegi liituma",
70 "invite.name.label" : "Nimi", 70 "invite.name.label": "Nimi",
71 "invite.skip.label" : "Ma soovin seda teha hiljem", 71 "invite.skip.label": "Ma soovin seda teha hiljem",
72 "invite.submit.label" : "Saada kutseid", 72 "invite.submit.label": "Saada kutseid",
73 "invite.successInfo" : "Kutsed on edukalt saadetud", 73 "invite.successInfo": "Kutsed on edukalt saadetud",
74 "login.email.label" : "E-posti aadress", 74 "login.email.label": "E-posti aadress",
75 "login.headline" : "Logi sisse", 75 "login.headline": "Logi sisse",
76 "login.invalidCredentials" : "E-posti aadress või salasõna ei sobi", 76 "login.invalidCredentials": "E-posti aadress või salasõna ei sobi",
77 "login.link.password" : "Lähtesta salasõna", 77 "login.link.password": "Lähtesta salasõna",
78 "login.link.signup" : "Looge tasuta konto", 78 "login.link.signup": "Looge tasuta konto",
79 "login.password.label" : "Salasõna", 79 "login.password.label": "Salasõna",
80 "login.serverLogout" : "Teie seanss on aegunud, logige uuesti sisse.", 80 "login.serverLogout": "Teie seanss on aegunud, logige uuesti sisse.",
81 "login.submit.label" : "Logi sisse", 81 "login.submit.label": "Logi sisse",
82 "login.tokenExpired" : "Teie seanss on aegunud, logige uuesti sisse.", 82 "login.tokenExpired": "Teie seanss on aegunud, logige uuesti sisse.",
83 "menu.Todoss.closeTodosDrawer" : "Sulge ülesannete sahtel", 83 "menu.Todoss.closeTodosDrawer": "Sulge ülesannete sahtel",
84 "menu.Todoss.openTodosDrawer" : "Ava ülesannete sahtel", 84 "menu.Todoss.openTodosDrawer": "Ava ülesannete sahtel",
85 "menu.app.about" : "Franz rakendusest", 85 "menu.app.about": "Ferdi rakendusest",
86 "menu.app.announcement" : "Mis on uut?", 86 "menu.app.announcement": "Mis on uut?",
87 "menu.app.checkForUpdates" : "Kontrolli kas värskendused on saadaval", 87 "menu.app.checkForUpdates": "Kontrolli kas värskendused on saadaval",
88 "menu.app.hide" : "Peida", 88 "menu.app.hide": "Peida",
89 "menu.app.hideOthers" : "Peida teised", 89 "menu.app.hideOthers": "Peida teised",
90 "menu.app.quit" : "Sulge", 90 "menu.app.quit": "Sulge",
91 "menu.app.settings" : "Sätted", 91 "menu.app.settings": "Sätted",
92 "menu.app.unhide" : "Näita", 92 "menu.app.unhide": "Näita",
93 "menu.edit" : "Muuda", 93 "menu.edit": "Muuda",
94 "menu.edit.copy" : "Kopeeri", 94 "menu.edit.copy": "Kopeeri",
95 "menu.edit.cut" : "Lõika", 95 "menu.edit.cut": "Lõika",
96 "menu.edit.delete" : "Kustuta", 96 "menu.edit.delete": "Kustuta",
97 "menu.edit.emojiSymbols" : "Emotikonid ja sümbolid", 97 "menu.edit.emojiSymbols": "Emotikonid ja sümbolid",
98 "menu.edit.paste" : "Kleebi", 98 "menu.edit.paste": "Kleebi",
99 "menu.edit.pasteAndMatchStyle" : "Kleebi ja sobita stiil", 99 "menu.edit.pasteAndMatchStyle": "Kleebi ja sobita stiil",
100 "menu.edit.redo" : "Tee uuesti", 100 "menu.edit.redo": "Tee uuesti",
101 "menu.edit.selectAll" : "Vali kõik", 101 "menu.edit.selectAll": "Vali kõik",
102 "menu.edit.speech" : "Kõne", 102 "menu.edit.speech": "Kõne",
103 "menu.edit.startDictation" : "Alusta dikteerimist", 103 "menu.edit.startDictation": "Alusta dikteerimist",
104 "menu.edit.startSpeaking" : "Alusta ettelugemist", 104 "menu.edit.startSpeaking": "Alusta ettelugemist",
105 "menu.edit.stopSpeaking" : "Lõpeta ettelugemine", 105 "menu.edit.stopSpeaking": "Lõpeta ettelugemine",
106 "menu.edit.undo" : "Võta tagasi", 106 "menu.edit.undo": "Võta tagasi",
107 "menu.file" : "Fail", 107 "menu.file": "Fail",
108 "menu.help" : "Abiinfo", 108 "menu.help": "Abiinfo",
109 "menu.help.changelog" : "Muutuste logi", 109 "menu.help.changelog": "Muutuste logi",
110 "menu.help.debugInfo" : "Kopeeri silumisteave", 110 "menu.help.debugInfo": "Kopeeri silumisteave",
111 "menu.help.debugInfoCopiedBody" : "Teie silumisteave on kopeeritud arvuti lõikelauale.", 111 "menu.help.debugInfoCopiedBody": "Teie silumisteave on kopeeritud arvuti lõikelauale.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz'i silumisteave", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi'i silumisteave",
113 "menu.help.learnMore" : "Lisateave", 113 "menu.help.learnMore": "Lisateave",
114 "menu.help.privacy" : "Privaatsusavaldus", 114 "menu.help.privacy": "Privaatsusavaldus",
115 "menu.help.support" : "Kasutajatugi", 115 "menu.help.support": "Kasutajatugi",
116 "menu.help.tos" : "Kasutustingimused", 116 "menu.help.tos": "Kasutustingimused",
117 "menu.services" : "Teenused", 117 "menu.services": "Teenused",
118 "menu.services.activatePreviousService" : "Aktiveeri eelmine teenus", 118 "menu.services.activatePreviousService": "Aktiveeri eelmine teenus",
119 "menu.services.addNewService" : "Lisa uus teenus", 119 "menu.services.addNewService": "Lisa uus teenus",
120 "menu.services.goHome" : "Pealeht", 120 "menu.services.goHome": "Pealeht",
121 "menu.services.setNextServiceActive" : "Aktiveeri järgmine teenus", 121 "menu.services.setNextServiceActive": "Aktiveeri järgmine teenus",
122 "menu.todos" : "Ülesanded", 122 "menu.todos": "Ülesanded",
123 "menu.todos.enableTodos" : "Luba ülesanded", 123 "menu.todos.enableTodos": "Luba ülesanded",
124 "menu.view" : "Vaade", 124 "menu.view": "Vaade",
125 "menu.view.enterFullScreen" : "Kuva täisekraanil", 125 "menu.view.enterFullScreen": "Kuva täisekraanil",
126 "menu.view.exitFullScreen" : "Välju täisekraanilt", 126 "menu.view.exitFullScreen": "Välju täisekraanilt",
127 "menu.view.reloadFranz" : "Laadi Franz uuesti", 127 "menu.view.reloadFranz": "Laadi Ferdi uuesti",
128 "menu.view.reloadService" : "Laadi teenus uuesti", 128 "menu.view.reloadService": "Laadi teenus uuesti",
129 "menu.view.reloadTodos" : "Laadi ülesanded uuesti", 129 "menu.view.reloadTodos": "Laadi ülesanded uuesti",
130 "menu.view.resetZoom" : "Tegelik suurus", 130 "menu.view.resetZoom": "Tegelik suurus",
131 "menu.view.toggleDevTools" : "Kuva arendaja tööriistad", 131 "menu.view.toggleDevTools": "Kuva arendaja tööriistad",
132 "menu.view.toggleFullScreen" : "Kuva täisekraanil", 132 "menu.view.toggleFullScreen": "Kuva täisekraanil",
133 "menu.view.toggleServiceDevTools" : "Kuva teenuse arendaja tööriistad", 133 "menu.view.toggleServiceDevTools": "Kuva teenuse arendaja tööriistad",
134 "menu.view.toggleTodosDevTools" : "Kuva ülesannete arendaja tööriistad", 134 "menu.view.toggleTodosDevTools": "Kuva ülesannete arendaja tööriistad",
135 "menu.view.zoomIn" : "Suurenda", 135 "menu.view.zoomIn": "Suurenda",
136 "menu.view.zoomOut" : "Vähenda", 136 "menu.view.zoomOut": "Vähenda",
137 "menu.window" : "Aken", 137 "menu.window": "Aken",
138 "menu.window.close" : "Sulge", 138 "menu.window.close": "Sulge",
139 "menu.window.minimize" : "Minimeeri", 139 "menu.window.minimize": "Minimeeri",
140 "menu.workspaces" : "Tööruumid", 140 "menu.workspaces": "Tööruumid",
141 "menu.workspaces.addNewWorkspace" : "Lisa uus tööruum...", 141 "menu.workspaces.addNewWorkspace": "Lisa uus tööruum...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Sulge tööruumide sahtel", 142 "menu.workspaces.closeWorkspaceDrawer": "Sulge tööruumide sahtel",
143 "menu.workspaces.defaultWorkspace" : "Kõik teenused", 143 "menu.workspaces.defaultWorkspace": "Kõik teenused",
144 "menu.workspaces.openWorkspaceDrawer" : "Ava tööruumide sahtel", 144 "menu.workspaces.openWorkspaceDrawer": "Ava tööruumide sahtel",
145 "password.email.label" : "E-posti aadress", 145 "password.email.label": "E-posti aadress",
146 "password.headline" : "Lähtesta salasõna", 146 "password.headline": "Lähtesta salasõna",
147 "password.link.login" : "Logige sisse oma kontole", 147 "password.link.login": "Logige sisse oma kontole",
148 "password.link.signup" : "Loo tasuta konto", 148 "password.link.signup": "Loo tasuta konto",
149 "password.noUser" : "Ühtegi selle e-posti aadressiga kasutajat ei leitud", 149 "password.noUser": "Ühtegi selle e-posti aadressiga kasutajat ei leitud",
150 "password.submit.label" : "Saada", 150 "password.submit.label": "Saada",
151 "password.successInfo" : "Palun kontrollige oma e-posti aadressi", 151 "password.successInfo": "Palun kontrollige oma e-posti aadressi",
152 "premiumFeature.button.upgradeAccount" : "Konto täiendamine", 152 "premiumFeature.button.upgradeAccount": "Konto täiendamine",
153 "pricing.features.accountSync" : "Konto sünkroonimine", 153 "pricing.features.accountSync": "Konto sünkroonimine",
154 "pricing.features.adFree" : "Igavesti reklaamivaba", 154 "pricing.features.adFree": "Igavesti reklaamivaba",
155 "pricing.features.appDelays" : "Ootavaid ekraane pole", 155 "pricing.features.appDelays": "Ootavaid ekraane pole",
156 "pricing.features.appDelaysEnabled" : "Aeg-ajalt ootavad ekraanid", 156 "pricing.features.appDelaysEnabled": "Aeg-ajalt ootavad ekraanid",
157 "pricing.features.customWebsites" : "Lisa kohandatud veebisaidid", 157 "pricing.features.customWebsites": "Lisa kohandatud veebisaidid",
158 "pricing.features.desktopNotifications" : "Töölaua teated", 158 "pricing.features.desktopNotifications": "Töölaua teated",
159 "pricing.features.onPremise" : "Kohalikud ja muud majutatud teenused", 159 "pricing.features.onPremise": "Kohalikud ja muud majutatud teenused",
160 "pricing.features.recipes" : "Valige enam kui 70 teenuse hulgast", 160 "pricing.features.recipes": "Valige enam kui 70 teenuse hulgast",
161 "pricing.features.serviceProxies" : "Teenuse puhverserverid", 161 "pricing.features.serviceProxies": "Teenuse puhverserverid",
162 "pricing.features.spellchecker" : "Õigekirjakontrolli tugi", 162 "pricing.features.spellchecker": "Õigekirjakontrolli tugi",
163 "pricing.features.teamManagement" : "Meeskonna haldamine", 163 "pricing.features.teamManagement": "Meeskonna haldamine",
164 "pricing.features.thirdPartyServices" : "Paigalda 3'nda osapoole teenused", 164 "pricing.features.thirdPartyServices": "Paigalda 3'nda osapoole teenused",
165 "pricing.features.unlimitedServices" : "Lisa piiramatud teenused", 165 "pricing.features.unlimitedServices": "Lisa piiramatud teenused",
166 "pricing.features.upToSixServices" : "Lisa kuni 6 teenust", 166 "pricing.features.upToSixServices": "Lisa kuni 6 teenust",
167 "pricing.features.upToThreeServices" : "Lisa kuni 3 teenust", 167 "pricing.features.upToThreeServices": "Lisa kuni 3 teenust",
168 "pricing.features.workspaces" : "Tööruumid", 168 "pricing.features.workspaces": "Tööruumid",
169 "pricing.plan.free" : "Tasuta", 169 "pricing.plan.free": "Tasuta",
170 "pricing.plan.legacy" : "Täiendatud", 170 "pricing.plan.legacy": "Täiendatud",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal kuumakse põhine", 172 "pricing.plan.personal-monthly": "Personal kuumakse põhine",
173 "pricing.plan.personal-yearly" : "Personal aastamakse põhine", 173 "pricing.plan.personal-yearly": "Personal aastamakse põhine",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional kuumakse põhine", 175 "pricing.plan.pro-monthly": "Professional kuumakse põhine",
176 "pricing.plan.pro-yearly" : "Professional aastamakse põhine", 176 "pricing.plan.pro-yearly": "Professional aastamakse põhine",
177 "pricing.trial.cta.accept" : "Alusta minu 14-päevast Franz'i proovitellimust", 177 "pricing.trial.cta.accept": "Alusta minu 14-päevast Ferdi'i proovitellimust",
178 "pricing.trial.cta.skip" : "Edasi Franz'ini", 178 "pricing.trial.cta.skip": "Edasi Ferdi'ini",
179 "pricing.trial.cta.start" : "Alusta Franz'i kasutamist", 179 "pricing.trial.cta.start": "Alusta Ferdi'i kasutamist",
180 "pricing.trial.error" : "Vabandust, me ei saanud teie proovitellimust aktiveerida!", 180 "pricing.trial.error": "Vabandust, me ei saanud teie proovitellimust aktiveerida!",
181 "pricing.trial.features.headline" : "Franz Professional sisaldab:", 181 "pricing.trial.features.headline": "Ferdi Professional sisaldab:",
182 "pricing.trial.headline.pro" : "Hei {name}, tere tulemast Franz'i", 182 "pricing.trial.headline.pro": "Hei {name}, tere tulemast Ferdi'i",
183 "pricing.trial.intro.happyMessaging" : "Head sõnumineerimist.", 183 "pricing.trial.intro.happyMessaging": "Head sõnumineerimist.",
184 "pricing.trial.intro.specialTreat" : "Meil on teile spetsiaalne maiuspala.", 184 "pricing.trial.intro.specialTreat": "Meil on teile spetsiaalne maiuspala.",
185 "pricing.trial.intro.tryPro" : "Nautige täielikku Franz Professional'i kogemust 14 päeva jooksul täiesti tasuta.", 185 "pricing.trial.intro.tryPro": "Nautige täielikku Ferdi Professional'i kogemust 14 päeva jooksul täiesti tasuta.",
186 "pricing.trial.terms.automaticTrialEnd" : "Teie tasuta proovitellimus lõpeb automaatselt 14 päeva pärast", 186 "pricing.trial.terms.automaticTrialEnd": "Teie tasuta proovitellimus lõpeb automaatselt 14 päeva pärast",
187 "pricing.trial.terms.headline" : "Stringe pole lisatud", 187 "pricing.trial.terms.headline": "Stringe pole lisatud",
188 "pricing.trial.terms.noCreditCard" : "Krediitkaarti pole vaja", 188 "pricing.trial.terms.noCreditCard": "Krediitkaarti pole vaja",
189 "pricing.trial.terms.trialWorth" : "Tasuta proovitellimus (tavaliselt {currency}{price} kuus)", 189 "pricing.trial.terms.trialWorth": "Tasuta proovitellimus (tavaliselt {currency}{price} kuus)",
190 "service.crashHandler.action" : "Laadi {name} uuesti", 190 "service.crashHandler.action": "Laadi {name} uuesti",
191 "service.crashHandler.autoReload" : "Püütakse {name} automaatselt taastada {seconds} sekundi jooksul", 191 "service.crashHandler.autoReload": "Püütakse {name} automaatselt taastada {seconds} sekundi jooksul",
192 "service.crashHandler.headline" : "Oh ei!", 192 "service.crashHandler.headline": "Oh ei!",
193 "service.crashHandler.text" : "{name} on põhjustanud vea.", 193 "service.crashHandler.text": "{name} on põhjustanud vea.",
194 "service.disabledHandler.action" : "Luba {name}", 194 "service.disabledHandler.action": "Luba {name}",
195 "service.disabledHandler.headline" : "{name} on keelatud", 195 "service.disabledHandler.headline": "{name} on keelatud",
196 "service.errorHandler.action" : "Laadi {name} uuesti", 196 "service.errorHandler.action": "Laadi {name} uuesti",
197 "service.errorHandler.editAction" : "Muuda {name}", 197 "service.errorHandler.editAction": "Muuda {name}",
198 "service.errorHandler.headline" : "Oh ei!", 198 "service.errorHandler.headline": "Oh ei!",
199 "service.errorHandler.message" : "Tõrge", 199 "service.errorHandler.message": "Tõrge",
200 "service.errorHandler.text" : "{name} laadimine nurjus.", 200 "service.errorHandler.text": "{name} laadimine nurjus.",
201 "service.restrictedHandler.action" : "Uuendage oma kontot", 201 "service.restrictedHandler.action": "Uuendage oma kontot",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional tellimus on nõutav", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional tellimus on nõutav",
203 "service.restrictedHandler.customUrl.text" : "Kohandatud URL-ide ja ise hostitud teenuste kasutamiseks minge üle Franz Professional'i tellimusele.", 203 "service.restrictedHandler.customUrl.text": "Kohandatud URL-ide ja ise hostitud teenuste kasutamiseks minge üle Ferdi Professional'i tellimusele.",
204 "service.restrictedHandler.serviceLimit.headline" : "Olete jõudnud oma maksimaalselt lubatud teenusete arvuni.", 204 "service.restrictedHandler.serviceLimit.headline": "Olete jõudnud oma maksimaalselt lubatud teenusete arvuni.",
205 "service.restrictedHandler.serviceLimit.text" : "Palun täiendage oma kontot, et kasutada rohkem, kui {count} teenust.", 205 "service.restrictedHandler.serviceLimit.text": "Palun täiendage oma kontot, et kasutada rohkem, kui {count} teenust.",
206 "service.webviewLoader.loading" : "Laadimine", 206 "service.webviewLoader.loading": "Laadimine",
207 "services.getStarted" : "Alusta", 207 "services.getStarted": "Alusta",
208 "services.welcome" : "Tere tulemast Franz'i", 208 "services.welcome": "Tere tulemast Ferdi'i",
209 "settings.account.account.editButton" : "Konto muutmine", 209 "settings.account.account.editButton": "Konto muutmine",
210 "settings.account.accountType.basic" : "Tavakasutaja konto", 210 "settings.account.accountType.basic": "Tavakasutaja konto",
211 "settings.account.accountType.premium" : "Edasijõudnud kasutaja konto", 211 "settings.account.accountType.premium": "Edasijõudnud kasutaja konto",
212 "settings.account.buttonSave" : "Uuenda profiili", 212 "settings.account.buttonSave": "Uuenda profiili",
213 "settings.account.deleteAccount" : "Kustuta konto", 213 "settings.account.deleteAccount": "Kustuta konto",
214 "settings.account.deleteEmailSent" : "Teile saadeti konto kustutamise kinnitamiseks e-kiri koos lingiga. Teie kontot ja andmeid ei saa taastada!", 214 "settings.account.deleteEmailSent": "Teile saadeti konto kustutamise kinnitamiseks e-kiri koos lingiga. Teie kontot ja andmeid ei saa taastada!",
215 "settings.account.deleteInfo" : "Kui te ei vaja enam oma Franzi kontot, saate siin oma konto ja kõik sellega seotud andmed kustutada.", 215 "settings.account.deleteInfo": "Kui te ei vaja enam oma Ferdii kontot, saate siin oma konto ja kõik sellega seotud andmed kustutada.",
216 "settings.account.headline" : "Konto", 216 "settings.account.headline": "Konto",
217 "settings.account.headlineAccount" : "Konto teave", 217 "settings.account.headlineAccount": "Konto teave",
218 "settings.account.headlineDangerZone" : "Ohutsoon", 218 "settings.account.headlineDangerZone": "Ohutsoon",
219 "settings.account.headlineInvoices" : "Arved", 219 "settings.account.headlineInvoices": "Arved",
220 "settings.account.headlinePassword" : "Muuda salasõna", 220 "settings.account.headlinePassword": "Muuda salasõna",
221 "settings.account.headlineProfile" : "Profiili uuendamine", 221 "settings.account.headlineProfile": "Profiili uuendamine",
222 "settings.account.headlineSubscription" : "Teie tellimus", 222 "settings.account.headlineSubscription": "Teie tellimus",
223 "settings.account.headlineTrialUpgrade" : "Hankige tasuta 14-päevane Franz'i proovitellimus", 223 "settings.account.headlineTrialUpgrade": "Hankige tasuta 14-päevane Ferdi'i proovitellimus",
224 "settings.account.headlineUpgradeAccount" : "Täiendage oma kontot ja saate täieliku Franz'i kasutuskogemuse", 224 "settings.account.headlineUpgradeAccount": "Täiendage oma kontot ja saate täieliku Ferdi'i kasutuskogemuse",
225 "settings.account.invoiceDownload" : "Laadi alla", 225 "settings.account.invoiceDownload": "Laadi alla",
226 "settings.account.manageSubscription.label" : "Halda oma tellimust", 226 "settings.account.manageSubscription.label": "Halda oma tellimust",
227 "settings.account.successInfo" : "Teie muudatused on salvestatud", 227 "settings.account.successInfo": "Teie muudatused on salvestatud",
228 "settings.account.trial" : "Tasuta proovitellimus", 228 "settings.account.trial": "Tasuta proovitellimus",
229 "settings.account.trialEndsIn" : "Teie tasuta prooviperiood lõpeb {duration} pärast.", 229 "settings.account.trialEndsIn": "Teie tasuta prooviperiood lõpeb {duration} pärast.",
230 "settings.account.trialUpdateBillingInfo" : "Palun uuendage oma arveldusteavet, et jätkata teenuse {license} kasutamist ka pärast prooviperioodi.", 230 "settings.account.trialUpdateBillingInfo": "Palun uuendage oma arveldusteavet, et jätkata teenuse {license} kasutamist ka pärast prooviperioodi.",
231 "settings.account.tryReloadServices" : "Proovi uuesti", 231 "settings.account.tryReloadServices": "Proovi uuesti",
232 "settings.account.tryReloadUserInfoRequest" : "Proovi uuesti", 232 "settings.account.tryReloadUserInfoRequest": "Proovi uuesti",
233 "settings.account.upgradeToPro.label" : "Täiendage Franz Professional tellimusele", 233 "settings.account.upgradeToPro.label": "Täiendage Ferdi Professional tellimusele",
234 "settings.account.userInfoRequestFailed" : "Kasutaja teabe laadimine nurjus", 234 "settings.account.userInfoRequestFailed": "Kasutaja teabe laadimine nurjus",
235 "settings.account.yourLicense" : "Teie Franz'i litsents", 235 "settings.account.yourLicense": "Teie Ferdi'i litsents",
236 "settings.app.buttonClearAllCache" : "Tühjenda vahemälu", 236 "settings.app.buttonClearAllCache": "Tühjenda vahemälu",
237 "settings.app.buttonInstallUpdate" : "Taaskäivita ja paigalda värskendus", 237 "settings.app.buttonInstallUpdate": "Taaskäivita ja paigalda värskendus",
238 "settings.app.buttonSearchForUpdate" : "Värskenduste saadavuse kontrollimine", 238 "settings.app.buttonSearchForUpdate": "Värskenduste saadavuse kontrollimine",
239 "settings.app.cacheInfo" : "Franz'i vahemälu kasutab praegu {size} kettaruumi.", 239 "settings.app.cacheInfo": "Ferdi'i vahemälu kasutab praegu {size} kettaruumi.",
240 "settings.app.currentVersion" : "Käesolev versioon:", 240 "settings.app.currentVersion": "Käesolev versioon:",
241 "settings.app.form.autoLaunchInBackground" : "Ava taustal", 241 "settings.app.form.autoLaunchInBackground": "Ava taustal",
242 "settings.app.form.autoLaunchOnStart" : "Käivita Franz arvuti käivitumisel", 242 "settings.app.form.autoLaunchOnStart": "Käivita Ferdi arvuti käivitumisel",
243 "settings.app.form.beta" : "Kaasaarvatud beetaversioonid", 243 "settings.app.form.beta": "Kaasaarvatud beetaversioonid",
244 "settings.app.form.darkMode" : "Liitu Pimedaga (tume teema)", 244 "settings.app.form.darkMode": "Liitu Pimedaga (tume teema)",
245 "settings.app.form.enableGPUAcceleration" : "Luba videoprotsessori (GPU) kiirendus", 245 "settings.app.form.enableGPUAcceleration": "Luba videoprotsessori (GPU) kiirendus",
246 "settings.app.form.enableSpellchecking" : "Luba õigekirjakontroll", 246 "settings.app.form.enableSpellchecking": "Luba õigekirjakontroll",
247 "settings.app.form.enableSystemTray" : "Kuva Franz süsteemisalves", 247 "settings.app.form.enableSystemTray": "Kuva Ferdi süsteemisalves",
248 "settings.app.form.enableTodos" : "Luba Franz ülesanded (Todos)", 248 "settings.app.form.enableTodos": "Luba Ferdi ülesanded (Todos)",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Hoia kõik tööruumid laadituna", 249 "settings.app.form.keepAllWorkspacesLoaded": "Hoia kõik tööruumid laadituna",
250 "settings.app.form.language" : "Keel", 250 "settings.app.form.language": "Keel",
251 "settings.app.form.minimizeToSystemTray" : "Minimeeri Franz süsteemisalve", 251 "settings.app.form.minimizeToSystemTray": "Minimeeri Ferdi süsteemisalve",
252 "settings.app.form.runInBackground" : "Hoia akna sulgemisel Franz taustal töös", 252 "settings.app.form.runInBackground": "Hoia akna sulgemisel Ferdi taustal töös",
253 "settings.app.form.showDisabledServices" : "Kuva keelatud teenuste vahelehed", 253 "settings.app.form.showDisabledServices": "Kuva keelatud teenuste vahelehed",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Kuva lugemata sõnumimärk, kui teated on keelatud", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Kuva lugemata sõnumimärk, kui teated on keelatud",
255 "settings.app.headline" : "Sätted", 255 "settings.app.headline": "Sätted",
256 "settings.app.headlineAdvanced" : "Täpsemalt", 256 "settings.app.headlineAdvanced": "Täpsemalt",
257 "settings.app.headlineAppearance" : "Välimus", 257 "settings.app.headlineAppearance": "Välimus",
258 "settings.app.headlineGeneral" : "Üldine", 258 "settings.app.headlineGeneral": "Üldine",
259 "settings.app.headlineLanguage" : "Keel", 259 "settings.app.headlineLanguage": "Keel",
260 "settings.app.headlineUpdates" : "Värskendused", 260 "settings.app.headlineUpdates": "Värskendused",
261 "settings.app.languageDisclaimer" : "Ametlikud tõlked on inglise ja saksa keeles. Kõik muud keeled on kogukonnapõhised tõlked.", 261 "settings.app.languageDisclaimer": "Ametlikud tõlked on inglise ja saksa keeles. Kõik muud keeled on kogukonnapõhised tõlked.",
262 "settings.app.restartRequired" : "Muudatused vajavad Franz'i taaskäivitamist", 262 "settings.app.restartRequired": "Muudatused vajavad Ferdi'i taaskäivitamist",
263 "settings.app.subheadlineCache" : "Vahemälu", 263 "settings.app.subheadlineCache": "Vahemälu",
264 "settings.app.translationHelp" : "Aidake meil Franz'i teie keelde tõlkida.", 264 "settings.app.translationHelp": "Aidake meil Ferdi'i teie keelde tõlkida.",
265 "settings.app.updateStatusAvailable" : "Värskendus on saadaval, toimub allalaadimine...", 265 "settings.app.updateStatusAvailable": "Värskendus on saadaval, toimub allalaadimine...",
266 "settings.app.updateStatusSearching" : "Otsib värskendusi", 266 "settings.app.updateStatusSearching": "Otsib värskendusi",
267 "settings.app.updateStatusUpToDate" : "Kasutate Franz'i uusimat versiooni", 267 "settings.app.updateStatusUpToDate": "Kasutate Ferdi'i uusimat versiooni",
268 "settings.invite.headline" : "Kutsu sõpru", 268 "settings.invite.headline": "Kutsu sõpru",
269 "settings.navigation.account" : "Konto", 269 "settings.navigation.account": "Konto",
270 "settings.navigation.availableServices" : "Saadaolevad teenused", 270 "settings.navigation.availableServices": "Saadaolevad teenused",
271 "settings.navigation.inviteFriends" : "Kutsu sõpru", 271 "settings.navigation.inviteFriends": "Kutsu sõpru",
272 "settings.navigation.logout" : "Logi välja", 272 "settings.navigation.logout": "Logi välja",
273 "settings.navigation.settings" : "Sätted", 273 "settings.navigation.settings": "Sätted",
274 "settings.navigation.team" : "Halda meeskonda", 274 "settings.navigation.team": "Halda meeskonda",
275 "settings.navigation.yourServices" : "Teie teenused", 275 "settings.navigation.yourServices": "Teie teenused",
276 "settings.navigation.yourWorkspaces" : "Teie tööruumid", 276 "settings.navigation.yourWorkspaces": "Teie tööruumid",
277 "settings.recipes.all" : "Kõik teenused", 277 "settings.recipes.all": "Kõik teenused",
278 "settings.recipes.custom" : "Kohandatud teenused", 278 "settings.recipes.custom": "Kohandatud teenused",
279 "settings.recipes.customService.headline.communityRecipes" : "Kogukonna 3'nda osapoole retseptid", 279 "settings.recipes.customService.headline.communityRecipes": "Kogukonna 3'nda osapoole retseptid",
280 "settings.recipes.customService.headline.customRecipes" : "Kohandatud 3'nda osapoole retseptid", 280 "settings.recipes.customService.headline.customRecipes": "Kohandatud 3'nda osapoole retseptid",
281 "settings.recipes.customService.headline.devRecipes" : "Teie arendusteenuse retseptid", 281 "settings.recipes.customService.headline.devRecipes": "Teie arendusteenuse retseptid",
282 "settings.recipes.customService.intro" : "Kohandatud teenuse lisamiseks kopeerige teenuse retsept kausta:", 282 "settings.recipes.customService.intro": "Kohandatud teenuse lisamiseks kopeerige teenuse retsept kausta:",
283 "settings.recipes.customService.openDevDocs" : "Arendaja dokumentatsioon", 283 "settings.recipes.customService.openDevDocs": "Arendaja dokumentatsioon",
284 "settings.recipes.customService.openFolder" : "Ava kaust", 284 "settings.recipes.customService.openFolder": "Ava kaust",
285 "settings.recipes.headline" : "Saadaolevad teenused", 285 "settings.recipes.headline": "Saadaolevad teenused",
286 "settings.recipes.missingService" : "Teenus puudub?", 286 "settings.recipes.missingService": "Teenus puudub?",
287 "settings.recipes.mostPopular" : "Populaarseimad teenused", 287 "settings.recipes.mostPopular": "Populaarseimad teenused",
288 "settings.recipes.nothingFound" : "Vabandust, kuid ükski teenus ei vastanud teie otsinguterminile.", 288 "settings.recipes.nothingFound": "Vabandust, kuid ükski teenus ei vastanud teie otsinguterminile.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Teenus lisati edukalt", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Teenus lisati edukalt",
290 "settings.searchService" : "Otsi teenust", 290 "settings.searchService": "Otsi teenust",
291 "settings.service.error.goBack" : "Tagasi teenuste juurde", 291 "settings.service.error.goBack": "Tagasi teenuste juurde",
292 "settings.service.error.headline" : "Tõrge", 292 "settings.service.error.headline": "Tõrge",
293 "settings.service.error.message" : "Teenuse retsepti ei saanud laadida.", 293 "settings.service.error.message": "Teenuse retsepti ei saanud laadida.",
294 "settings.service.form.addServiceHeadline" : "Lisa {name}", 294 "settings.service.form.addServiceHeadline": "Lisa {name}",
295 "settings.service.form.availableServices" : "Saadaolevad teenused", 295 "settings.service.form.availableServices": "Saadaolevad teenused",
296 "settings.service.form.customUrl" : "Kohandatud server", 296 "settings.service.form.customUrl": "Kohandatud server",
297 "settings.service.form.customUrlPremiumInfo" : "Isemajutatavate teenuste lisamiseks vajate Franz Premium'i tellimust.", 297 "settings.service.form.customUrlPremiumInfo": "Isemajutatavate teenuste lisamiseks vajate Ferdi Premium'i tellimust.",
298 "settings.service.form.customUrlUpgradeAccount" : "Uuendage oma kontot", 298 "settings.service.form.customUrlUpgradeAccount": "Uuendage oma kontot",
299 "settings.service.form.customUrlValidationError" : "Kohandatud {name} serverit ei saanud kinnitada.", 299 "settings.service.form.customUrlValidationError": "Kohandatud {name} serverit ei saanud kinnitada.",
300 "settings.service.form.deleteButton" : "Kustuta teenus", 300 "settings.service.form.deleteButton": "Kustuta teenus",
301 "settings.service.form.editServiceHeadline" : "Muuda {name}", 301 "settings.service.form.editServiceHeadline": "Muuda {name}",
302 "settings.service.form.enableAudio" : "Luba heli", 302 "settings.service.form.enableAudio": "Luba heli",
303 "settings.service.form.enableBadge" : "Kuva lugemata sõnumimärgid", 303 "settings.service.form.enableBadge": "Kuva lugemata sõnumimärgid",
304 "settings.service.form.enableDarkMode" : "Luba tume režiim", 304 "settings.service.form.enableDarkMode": "Luba tume režiim",
305 "settings.service.form.enableHibernation" : "Luba talveunerežiim", 305 "settings.service.form.enableHibernation": "Luba talveunerežiim",
306 "settings.service.form.enableNotification" : "Luba teated", 306 "settings.service.form.enableNotification": "Luba teated",
307 "settings.service.form.enableService" : "Luba teenus", 307 "settings.service.form.enableService": "Luba teenus",
308 "settings.service.form.headlineBadges" : "Lugemata sõnumimärgid", 308 "settings.service.form.headlineBadges": "Lugemata sõnumimärgid",
309 "settings.service.form.headlineGeneral" : "Üldine", 309 "settings.service.form.headlineGeneral": "Üldine",
310 "settings.service.form.headlineNotifications" : "Teated", 310 "settings.service.form.headlineNotifications": "Teated",
311 "settings.service.form.icon" : "Kohandatud pisipilt", 311 "settings.service.form.icon": "Kohandatud pisipilt",
312 "settings.service.form.iconDelete" : "Kustuta", 312 "settings.service.form.iconDelete": "Kustuta",
313 "settings.service.form.iconUpload" : "Lohistage oma pilt siia või klõpsake siin", 313 "settings.service.form.iconUpload": "Lohistage oma pilt siia või klõpsake siin",
314 "settings.service.form.indirectMessageInfo" : "Teid teavitatakse kõigist kanali uutest sõnumitest, mitte ainult @kasutajanimi, @kanal, @siin, ...", 314 "settings.service.form.indirectMessageInfo": "Teid teavitatakse kõigist kanali uutest sõnumitest, mitte ainult @kasutajanimi, @kanal, @siin, ...",
315 "settings.service.form.indirectMessages" : "Kuva kõigi uute sõnumite puhul sõnumimärk", 315 "settings.service.form.indirectMessages": "Kuva kõigi uute sõnumite puhul sõnumimärk",
316 "settings.service.form.isHibernatedEnabledInfo" : "Kui see säte on lubatud, suletakse antud teenus ressursside säästmiseks teatud aja möödudes.", 316 "settings.service.form.isHibernatedEnabledInfo": "Kui see säte on lubatud, suletakse antud teenus ressursside säästmiseks teatud aja möödudes.",
317 "settings.service.form.isMutedInfo" : "Kui see säte on keelatud, vaigistatakse kõik teadete helid ja heli taasesitus", 317 "settings.service.form.isMutedInfo": "Kui see säte on keelatud, vaigistatakse kõik teadete helid ja heli taasesitus",
318 "settings.service.form.name" : "Nimi", 318 "settings.service.form.name": "Nimi",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS puhverserveri sätted", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS puhverserveri sätted",
320 "settings.service.form.proxy.host" : "Puhverserveri host\/IP", 320 "settings.service.form.proxy.host": "Puhverserveri host/IP",
321 "settings.service.form.proxy.info" : "Puhverserveri sätteid ei sünkroonita Franz'i serveritega.", 321 "settings.service.form.proxy.info": "Puhverserveri sätteid ei sünkroonita Ferdi'i serveritega.",
322 "settings.service.form.proxy.isEnabled" : "Kasuta puhverserverit", 322 "settings.service.form.proxy.isEnabled": "Kasuta puhverserverit",
323 "settings.service.form.proxy.password" : "Salasõna (mittekohustuslik)", 323 "settings.service.form.proxy.password": "Salasõna (mittekohustuslik)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Pärast puhverserveri sätete muutmist palun taaskäivitage Franz.", 325 "settings.service.form.proxy.restartInfo": "Pärast puhverserveri sätete muutmist palun taaskäivitage Ferdi.",
326 "settings.service.form.proxy.user" : "Kasutajanimi (mittekohustuslik)", 326 "settings.service.form.proxy.user": "Kasutajanimi (mittekohustuslik)",
327 "settings.service.form.saveButton" : "Salvesta teenus", 327 "settings.service.form.saveButton": "Salvesta teenus",
328 "settings.service.form.tabHosted" : "Isemajutatud server", 328 "settings.service.form.tabHosted": "Isemajutatud server",
329 "settings.service.form.tabOnPremise" : "Isemajutatud teenus ⭐️", 329 "settings.service.form.tabOnPremise": "Isemajutatud teenus ⭐️",
330 "settings.service.form.team" : "Meeskond", 330 "settings.service.form.team": "Meeskond",
331 "settings.service.form.useHostedService" : "Kasuta välise majutaja {name} teenust.", 331 "settings.service.form.useHostedService": "Kasuta välise majutaja {name} teenust.",
332 "settings.service.form.yourServices" : "Teie teenused", 332 "settings.service.form.yourServices": "Teie teenused",
333 "settings.services.deletedInfo" : "Teenus on edukalt kustutatud", 333 "settings.services.deletedInfo": "Teenus on edukalt kustutatud",
334 "settings.services.discoverServices" : "Avasta teenuseid", 334 "settings.services.discoverServices": "Avasta teenuseid",
335 "settings.services.headline" : "Teie teenused", 335 "settings.services.headline": "Teie teenused",
336 "settings.services.noServicesAdded" : "Te pole veel ühtegi teenust lisanud.", 336 "settings.services.noServicesAdded": "Te pole veel ühtegi teenust lisanud.",
337 "settings.services.servicesRequestFailed" : "Teie teenuseid ei õnnestunud laadida", 337 "settings.services.servicesRequestFailed": "Teie teenuseid ei õnnestunud laadida",
338 "settings.services.tooltip.isDisabled" : "Teenus on keelatud", 338 "settings.services.tooltip.isDisabled": "Teenus on keelatud",
339 "settings.services.tooltip.isMuted" : "Kõik helid on vaigistatud", 339 "settings.services.tooltip.isMuted": "Kõik helid on vaigistatud",
340 "settings.services.tooltip.notificationsDisabled" : "Kõik teated on keelatud", 340 "settings.services.tooltip.notificationsDisabled": "Kõik teated on keelatud",
341 "settings.services.updatedInfo" : "Teie muudatused on salvestatud", 341 "settings.services.updatedInfo": "Teie muudatused on salvestatud",
342 "settings.team.contentHeadline" : "Franz meeskondadele", 342 "settings.team.contentHeadline": "Franz meeskondadele",
343 "settings.team.copy" : "Franz meeskondadele funktsioon annab teile võimaluse kutsuda kaastöötajaid oma meeskonda, saates neile e-posti teel kutsed ja hallates nende tellimusi oma konto sätetes. Ärge raisake aega tellimuste seadistamisele iga meeskonnaliikme jaoks eraldi, unustage mitu arvet ja erinevaid arveldustsükleid - üks meeskond haldab neid kõiki!", 343 "settings.team.copy": "Franz meeskondadele funktsioon annab teile võimaluse kutsuda kaastöötajaid oma meeskonda, saates neile e-posti teel kutsed ja hallates nende tellimusi oma konto sätetes. Ärge raisake aega tellimuste seadistamisele iga meeskonnaliikme jaoks eraldi, unustage mitu arvet ja erinevaid arveldustsükleid - üks meeskond haldab neid kõiki!",
344 "settings.team.headline" : "Meeskond", 344 "settings.team.headline": "Meeskond",
345 "settings.team.intro" : "Kas teie ja teie meeskond kasutavad Franz'i? Nüüd saate hallata täiustatud konto tellimusi nii paljudele kolleegidele, sõpradele kui ka pereliikmetele, kui soovite teha kõike ühe konto kaudu.", 345 "settings.team.intro": "Kas teie ja teie meeskond kasutavad Franz'i? Nüüd saate hallata täiustatud konto tellimusi nii paljudele kolleegidele, sõpradele kui ka pereliikmetele, kui soovite teha kõike ühe konto kaudu.",
346 "settings.team.manageAction" : "Hallake oma meeskonda veebilehel 'meetfranz.com'", 346 "settings.team.manageAction": "Hallake oma meeskonda veebilehel 'meetfranz.com'",
347 "settings.team.upgradeAction" : "Uuendage oma kontot", 347 "settings.team.upgradeAction": "Uuendage oma kontot",
348 "settings.user.form.accountType.company" : "Ettevõte", 348 "settings.user.form.accountType.company": "Ettevõte",
349 "settings.user.form.accountType.individual" : "Üksikisik", 349 "settings.user.form.accountType.individual": "Üksikisik",
350 "settings.user.form.accountType.label" : "Konto tüüp", 350 "settings.user.form.accountType.label": "Konto tüüp",
351 "settings.user.form.accountType.non-profit" : "Mittetulundusühing", 351 "settings.user.form.accountType.non-profit": "Mittetulundusühing",
352 "settings.user.form.currentPassword" : "Praegune salasõna", 352 "settings.user.form.currentPassword": "Praegune salasõna",
353 "settings.user.form.email" : "E-posti aadress", 353 "settings.user.form.email": "E-posti aadress",
354 "settings.user.form.firstname" : "Eesnimi", 354 "settings.user.form.firstname": "Eesnimi",
355 "settings.user.form.lastname" : "Perekonnanimi", 355 "settings.user.form.lastname": "Perekonnanimi",
356 "settings.user.form.newPassword" : "Uus salasõna", 356 "settings.user.form.newPassword": "Uus salasõna",
357 "settings.workspace.add.form.name" : "Nimi", 357 "settings.workspace.add.form.name": "Nimi",
358 "settings.workspace.add.form.submitButton" : "Loo uus tööruum", 358 "settings.workspace.add.form.submitButton": "Loo uus tööruum",
359 "settings.workspace.form.buttonDelete" : "Kustuta tööruum", 359 "settings.workspace.form.buttonDelete": "Kustuta tööruum",
360 "settings.workspace.form.buttonSave" : "Salvesta tööruum", 360 "settings.workspace.form.buttonSave": "Salvesta tööruum",
361 "settings.workspace.form.name" : "Nimi", 361 "settings.workspace.form.name": "Nimi",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Teenused selles tööruumis", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Teenused selles tööruumis",
363 "settings.workspace.form.yourWorkspaces" : "Teie tööruumid", 363 "settings.workspace.form.yourWorkspaces": "Teie tööruumid",
364 "settings.workspaces.deletedInfo" : "Tööruum on edukalt kustutatud", 364 "settings.workspaces.deletedInfo": "Tööruum on edukalt kustutatud",
365 "settings.workspaces.headline" : "Teie tööruumid", 365 "settings.workspaces.headline": "Teie tööruumid",
366 "settings.workspaces.noWorkspacesAdded" : "Te pole veel ühtegi tööruumi lisanud.", 366 "settings.workspaces.noWorkspacesAdded": "Te pole veel ühtegi tööruumi lisanud.",
367 "settings.workspaces.tryReloadWorkspaces" : "Proovige uuesti", 367 "settings.workspaces.tryReloadWorkspaces": "Proovige uuesti",
368 "settings.workspaces.updatedInfo" : "Teie muudatused on salvestatud", 368 "settings.workspaces.updatedInfo": "Teie muudatused on salvestatud",
369 "settings.workspaces.workspaceFeatureHeadline" : "Vähem on rohkem: Franz'i tööruumide tutvustus", 369 "settings.workspaces.workspaceFeatureHeadline": "Vähem on rohkem: Ferdi'i tööruumide tutvustus",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz'i tööruumid võimaldavad teil keskenduda sellele, mis on hetkel oluline. Seadistage erinevaid teenusekomplekte ja saate neid igal ajal hõlpsasti vahetada. Teie otsustate, milliseid teenuseid millal ja kus, et saaksime aidata teil oma mängu tipus püsida - või siis lihtsalt töölt välja lülitada, kui soovite.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi'i tööruumid võimaldavad teil keskenduda sellele, mis on hetkel oluline. Seadistage erinevaid teenusekomplekte ja saate neid igal ajal hõlpsasti vahetada. Teie otsustate, milliseid teenuseid millal ja kus, et saaksime aidata teil oma mängu tipus püsida - või siis lihtsalt töölt välja lülitada, kui soovite.",
371 "settings.workspaces.workspacesRequestFailed" : "Teie tööruume ei saanud laadida", 371 "settings.workspaces.workspacesRequestFailed": "Teie tööruume ei saanud laadida",
372 "setupAssistant.headline" : "Alustame", 372 "setupAssistant.headline": "Alustame",
373 "setupAssistant.subheadline" : "Valige meie kõige sagedamini kasutatavate teenuste hulgast ja saate kohe oma sõnumite üle valitseda.", 373 "setupAssistant.subheadline": "Valige meie kõige sagedamini kasutatavate teenuste hulgast ja saate kohe oma sõnumite üle valitseda.",
374 "setupAssistant.submit.label" : "Lähme", 374 "setupAssistant.submit.label": "Lähme",
375 "sidebar.addNewService" : "Lisa uus teenus", 375 "sidebar.addNewService": "Lisa uus teenus",
376 "sidebar.closeTodosDrawer" : "Sulge Franz ülesanded", 376 "sidebar.closeTodosDrawer": "Sulge Ferdi ülesanded",
377 "sidebar.closeWorkspaceDrawer" : "Sulge tööruumide sahtel", 377 "sidebar.closeWorkspaceDrawer": "Sulge tööruumide sahtel",
378 "sidebar.muteApp" : "Keela teated ja heli", 378 "sidebar.muteApp": "Keela teated ja heli",
379 "sidebar.openTodosDrawer" : "Ava Franz ülesanded", 379 "sidebar.openTodosDrawer": "Ava Ferdi ülesanded",
380 "sidebar.openWorkspaceDrawer" : "Ava tööruumide sahtel", 380 "sidebar.openWorkspaceDrawer": "Ava tööruumide sahtel",
381 "sidebar.settings" : "Sätted", 381 "sidebar.settings": "Sätted",
382 "sidebar.unmuteApp" : "Luba teated ja heli", 382 "sidebar.unmuteApp": "Luba teated ja heli",
383 "signup.email.label" : "E-posti aadress", 383 "signup.email.label": "E-posti aadress",
384 "signup.emailDuplicate" : "Selle e-posti aadressiga kasutaja on juba olemas", 384 "signup.emailDuplicate": "Selle e-posti aadressiga kasutaja on juba olemas",
385 "signup.firstname.label" : "Eesnimi", 385 "signup.firstname.label": "Eesnimi",
386 "signup.headline" : "Registreeri", 386 "signup.headline": "Registreeri",
387 "signup.lastname.label" : "Perekonnanimi", 387 "signup.lastname.label": "Perekonnanimi",
388 "signup.legal.info" : "Franzi konto loomisega nõustute", 388 "signup.legal.info": "Ferdii konto loomisega nõustute",
389 "signup.legal.privacy" : "Privaatsusavaldus", 389 "signup.legal.privacy": "Privaatsusavaldus",
390 "signup.legal.terms" : "Kasutustingimused", 390 "signup.legal.terms": "Kasutustingimused",
391 "signup.link.login" : "Kas teil on juba konto, logi sisse?", 391 "signup.link.login": "Kas teil on juba konto, logi sisse?",
392 "signup.password.label" : "Salasõna", 392 "signup.password.label": "Salasõna",
393 "signup.submit.label" : "Loo konto", 393 "signup.submit.label": "Loo konto",
394 "subscription.bestValue" : "Parim hind", 394 "subscription.bestValue": "Parim hind",
395 "subscription.cta.activateTrial" : "Jah, alusta tasuta Franz Professional'i proovitellimust", 395 "subscription.cta.activateTrial": "Jah, alusta tasuta Ferdi Professional'i proovitellimust",
396 "subscription.cta.allOptions" : "Vaata kõiki võimalusi", 396 "subscription.cta.allOptions": "Vaata kõiki võimalusi",
397 "subscription.cta.choosePlan" : "Valige oma tellimus", 397 "subscription.cta.choosePlan": "Valige oma tellimus",
398 "subscription.includedProFeatures" : "Franz'i Professional tellimus sisaldab:", 398 "subscription.includedProFeatures": "Ferdi'i Professional tellimus sisaldab:",
399 "subscription.interval.per" : "{interval} kohta", 399 "subscription.interval.per": "{interval} kohta",
400 "subscription.interval.perMonth" : "kuus", 400 "subscription.interval.perMonth": "kuus",
401 "subscription.interval.perMonthPerUser" : "kuus kasutaja kohta", 401 "subscription.interval.perMonthPerUser": "kuus kasutaja kohta",
402 "subscription.planItem.upgradeAccount" : "Uuendage oma kontot", 402 "subscription.planItem.upgradeAccount": "Uuendage oma kontot",
403 "subscription.teaser.includedFeatures" : "Tasuliste Franz'i tellimuste hulka kuuluvad:", 403 "subscription.teaser.includedFeatures": "Tasuliste Ferdi'i tellimuste hulka kuuluvad:",
404 "subscription.teaser.intro" : "Franz 5 sisaldab laia valikut uusi funktsioone, et teie igapäevast suhtlemist veelgi paremaks muuta - patareid kaasaarvatud. Tutvuge meie uute tellimusvariantidega ja saate teada, milline neist sobib teile kõige paremini!", 404 "subscription.teaser.intro": "Ferdi 5 sisaldab laia valikut uusi funktsioone, et teie igapäevast suhtlemist veelgi paremaks muuta - patareid kaasaarvatud. Tutvuge meie uute tellimusvariantidega ja saate teada, milline neist sobib teile kõige paremini!",
405 "subscriptionPopup.buttonCancel" : "Loobu", 405 "subscriptionPopup.buttonCancel": "Loobu",
406 "subscriptionPopup.buttonDone" : "Valmis", 406 "subscriptionPopup.buttonDone": "Valmis",
407 "tabs.item.deleteService" : "Kustuta teenus", 407 "tabs.item.deleteService": "Kustuta teenus",
408 "tabs.item.disableAudio" : "Keela heli", 408 "tabs.item.disableAudio": "Keela heli",
409 "tabs.item.disableNotifications" : "Keela teated", 409 "tabs.item.disableNotifications": "Keela teated",
410 "tabs.item.disableService" : "Keela teenus", 410 "tabs.item.disableService": "Keela teenus",
411 "tabs.item.edit" : "Muuda", 411 "tabs.item.edit": "Muuda",
412 "tabs.item.enableAudio" : "Luba heli", 412 "tabs.item.enableAudio": "Luba heli",
413 "tabs.item.enableNotification" : "Luba teated", 413 "tabs.item.enableNotification": "Luba teated",
414 "tabs.item.enableService" : "Luba teenus", 414 "tabs.item.enableService": "Luba teenus",
415 "tabs.item.reload" : "Laadi uuesti", 415 "tabs.item.reload": "Laadi uuesti",
416 "validation.email" : "{field} ei sobi", 416 "validation.email": "{field} ei sobi",
417 "validation.minLength" : "{field} peaks olema vähemalt {length} tähemärki pikk", 417 "validation.minLength": "{field} peaks olema vähemalt {length} tähemärki pikk",
418 "validation.oneRequired" : "Vaja on vähemalt ühte", 418 "validation.oneRequired": "Vaja on vähemalt ühte",
419 "validation.required" : "{väli} on kohustuslik", 419 "validation.required": "{väli} on kohustuslik",
420 "validation.url" : "{field} ei ole kehtiv URL", 420 "validation.url": "{field} ei ole kehtiv URL",
421 "webControls.back" : "Tagasi", 421 "webControls.back": "Tagasi",
422 "webControls.forward" : "Edasi", 422 "webControls.forward": "Edasi",
423 "webControls.goHome" : "Pealeht", 423 "webControls.goHome": "Pealeht",
424 "webControls.openInBrowser" : "Ava brauseris", 424 "webControls.openInBrowser": "Ava brauseris",
425 "webControls.reload" : "Laadi uuesti", 425 "webControls.reload": "Laadi uuesti",
426 "welcome.loginButton" : "Logige sisse oma kontole", 426 "welcome.loginButton": "Logige sisse oma kontole",
427 "welcome.signupButton" : "Loo tasuta konto", 427 "welcome.signupButton": "Loo tasuta konto",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Lisa uus tööruum", 428 "workspaceDrawer.addNewWorkspaceLabel": "Lisa uus tööruum",
429 "workspaceDrawer.allServices" : "Kõik teenused", 429 "workspaceDrawer.allServices": "Kõik teenused",
430 "workspaceDrawer.headline" : "Tööruumid", 430 "workspaceDrawer.headline": "Tööruumid",
431 "workspaceDrawer.item.contextMenuEdit" : "muutmine", 431 "workspaceDrawer.item.contextMenuEdit": "muutmine",
432 "workspaceDrawer.item.noServicesAddedYet" : "Ühtegi teenust pole veel lisatud", 432 "workspaceDrawer.item.noServicesAddedYet": "Ühtegi teenust pole veel lisatud",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Loo oma esimene tööruum", 433 "workspaceDrawer.premiumCtaButtonLabel": "Loo oma esimene tööruum",
434 "workspaceDrawer.proFeatureBadge" : "Täiustatud funktsioon", 434 "workspaceDrawer.proFeatureBadge": "Täiustatud funktsioon",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Aktiveerige täiustatud konto uuesti", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Aktiveerige täiustatud konto uuesti",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p> Franz'i tööruumid võimaldavad teil keskenduda sellele, mis on hetkel oluline. Seadistage erinevaid teenusekomplekte ja saate neid igal ajal hõlpsasti vahetada. <\/p> <p> Teie otsustate milliseid teenuseid millal ja kus vajate, et saaksime aidata teil oma mängu tipus püsida - või hõlpsalt töölt välja lülitada. millal soovite. <\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p> Ferdi'i tööruumid võimaldavad teil keskenduda sellele, mis on hetkel oluline. Seadistage erinevaid teenusekomplekte ja saate neid igal ajal hõlpsasti vahetada. </p> <p> Teie otsustate milliseid teenuseid millal ja kus vajate, et saaksime aidata teil oma mängu tipus püsida - või hõlpsalt töölt välja lülitada. millal soovite. </p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Muuda tööruumide sätteid", 437 "workspaceDrawer.workspacesSettingsTooltip": "Muuda tööruumide sätteid",
438 "workspaces.switchingIndicator.switchingTo" : "Lülitumine" 438 "workspaces.switchingIndicator.switchingTo": "Lülitumine"
439} 439}
diff --git a/src/i18n/locales/fa.json b/src/i18n/locales/fa.json
index 11c95c126..a57caeb47 100644
--- a/src/i18n/locales/fa.json
+++ b/src/i18n/locales/fa.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "بارگذاری مجدد", 2 "app.errorHandler.action": "بارگذاری مجدد",
3 "app.errorHandler.headline" : "اشتباهی رخ داده", 3 "app.errorHandler.headline": "اشتباهی رخ داده",
4 "connectionLostBanner.cta" : "بارگذاری مجدد سرور", 4 "connectionLostBanner.cta": "بارگذاری مجدد سرور",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "تغییرات فرَنز {version}", 7 "feature.announcements.changelog.headline": "تغییرات فرَنز {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "فرَنز بعد از {seconds} ثانیه ادامه میده.", 9 "feature.delayApp.text": "فرَنز بعد از {seconds} ثانیه ادامه میده.",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "ارتقای حساب", 14 "feature.delayApp.upgrade.actionShort": "ارتقای حساب",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "ارسال به صورت ایمیل", 32 "feature.shareFranz.action.email": "ارسال به صورت ایمیل",
33 "feature.shareFranz.action.facebook" : "اشتراک‌گذاری در فیس بوک", 33 "feature.shareFranz.action.facebook": "اشتراک‌گذاری در فیس بوک",
34 "feature.shareFranz.action.twitter" : "اشتراک‌گذاری در توییتر", 34 "feature.shareFranz.action.twitter": "اشتراک‌گذاری در توییتر",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "من {count} تا سرویس تو فرَنز اضافه کردم! برنامه رایگان برای واتسآپ، اسکایپ، مسنجر، اسلک رو از سایت www.meetfranz.com دانلود کن.", 36 "feature.shareFranz.shareText.email": "من {count} تا سرویس تو فرَنز اضافه کردم! برنامه رایگان برای واتسآپ، اسکایپ، مسنجر، اسلک رو از سایت www.getferdi.com دانلود کن.",
37 "feature.shareFranz.shareText.twitter" : "من {count} تا سرویس تو فرَنز اضافه کردم! برنامه رایگان برای واتسآپ، اسکایپ، مسنجر، اسلک رو از سایت www.meetfranz.com دانلود کن \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "من {count} تا سرویس تو فرَنز اضافه کردم! برنامه رایگان برای واتسآپ، اسکایپ، مسنجر، اسلک رو از سایت www.getferdi.com دانلود کن /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "به دوستات بگو فرَنز چقدر باحاله و بهمون کمک کن گسترش پیدا کنیم.", 38 "feature.shareFranz.text": "به دوستات بگو فرَنز چقدر باحاله و بهمون کمک کن گسترش پیدا کنیم.",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "به سرویس های آنلاین فرَنز متصل نشدی", 49 "global.api.unhealthy": "به سرویس های آنلاین فرَنز متصل نشدی",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "اینترنت وصل نیست", 51 "global.notConnectedToTheInternet": "اینترنت وصل نیست",
52 "global.spellchecker.useDefault" : "استفاده از پیشفرض سیستم ({default})", 52 "global.spellchecker.useDefault": "استفاده از پیشفرض سیستم ({default})",
53 "global.spellchecking.autodetect" : "تشخیص خودکار زبان", 53 "global.spellchecking.autodetect": "تشخیص خودکار زبان",
54 "global.spellchecking.autodetect.short" : "خودکار", 54 "global.spellchecking.autodetect.short": "خودکار",
55 "global.spellchecking.language" : "زبان غلط یاب املایی", 55 "global.spellchecking.language": "زبان غلط یاب املایی",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "جانشانی سرویس های فرانز 4", 57 "import.headline": "جانشانی سرویس های فرانز 4",
58 "import.notSupportedHeadline" : "این سرویس ها در Franz ۵ پشتیبانی نمیشوند.", 58 "import.notSupportedHeadline": "این سرویس ها در Ferdi ۵ پشتیبانی نمیشوند.",
59 "import.skip.label" : "میخواهم سرویس ها را به صورت دستی اضافه کنم.", 59 "import.skip.label": "میخواهم سرویس ها را به صورت دستی اضافه کنم.",
60 "import.submit.label" : "جانشانی سرویس ها", 60 "import.submit.label": "جانشانی سرویس ها",
61 "infobar.buttonChangelog" : "چه خبر ؟", 61 "infobar.buttonChangelog": "چه خبر ؟",
62 "infobar.buttonInstallUpdate" : "باز کردن مجدد و نصب به روز رسانی", 62 "infobar.buttonInstallUpdate": "باز کردن مجدد و نصب به روز رسانی",
63 "infobar.buttonReloadServices" : "بارگذاری مجدد سرویس ها", 63 "infobar.buttonReloadServices": "بارگذاری مجدد سرویس ها",
64 "infobar.requiredRequestsFailed" : "بارگذاری سرویس ها و اطلاعات کاربر ممکن نیست", 64 "infobar.requiredRequestsFailed": "بارگذاری سرویس ها و اطلاعات کاربر ممکن نیست",
65 "infobar.servicesUpdated" : "سرویس های شما به روز رسانی شدند.", 65 "infobar.servicesUpdated": "سرویس های شما به روز رسانی شدند.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "یک به روز رسانی جدید برای Franz آماده است.", 67 "infobar.updateAvailable": "یک به روز رسانی جدید برای Ferdi آماده است.",
68 "invite.email.label" : "نشانی ایمیل", 68 "invite.email.label": "نشانی ایمیل",
69 "invite.headline.friends" : "دعوت ۳ نفر از دوستان یا همکارانتان.", 69 "invite.headline.friends": "دعوت ۳ نفر از دوستان یا همکارانتان.",
70 "invite.name.label" : "نام ", 70 "invite.name.label": "نام ",
71 "invite.skip.label" : "بعدا انجام میدم ", 71 "invite.skip.label": "بعدا انجام میدم ",
72 "invite.submit.label" : "فرستادن دعوت نامه ها ", 72 "invite.submit.label": "فرستادن دعوت نامه ها ",
73 "invite.successInfo" : "دعوتنامه ها با موفقیت ارسال شدند .", 73 "invite.successInfo": "دعوتنامه ها با موفقیت ارسال شدند .",
74 "login.email.label" : "نشانی ایمیل", 74 "login.email.label": "نشانی ایمیل",
75 "login.headline" : "ورود ", 75 "login.headline": "ورود ",
76 "login.invalidCredentials" : "ایمیل یا رمز عبور معتبر نیست ", 76 "login.invalidCredentials": "ایمیل یا رمز عبور معتبر نیست ",
77 "login.link.password" : "تنظیم مجدد رمز عبور ", 77 "login.link.password": "تنظیم مجدد رمز عبور ",
78 "login.link.signup" : "ساختن یک حساب رایگان ", 78 "login.link.signup": "ساختن یک حساب رایگان ",
79 "login.password.label" : "رمز عبور ", 79 "login.password.label": "رمز عبور ",
80 "login.serverLogout" : "این ارتباط منقضی شده است، لطفا دوباره وارد شوید.", 80 "login.serverLogout": "این ارتباط منقضی شده است، لطفا دوباره وارد شوید.",
81 "login.submit.label" : "ورود ", 81 "login.submit.label": "ورود ",
82 "login.tokenExpired" : "ارتباط شما منقضی شده، لطفا دوباره وارد شوید.", 82 "login.tokenExpired": "ارتباط شما منقضی شده، لطفا دوباره وارد شوید.",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "درباره فرانز", 85 "menu.app.about": "درباره فرانز",
86 "menu.app.announcement" : "چه خبر؟", 86 "menu.app.announcement": "چه خبر؟",
87 "menu.app.checkForUpdates" : "بررسی وجود نسخه جدید ", 87 "menu.app.checkForUpdates": "بررسی وجود نسخه جدید ",
88 "menu.app.hide" : "مخفی‌کردن ", 88 "menu.app.hide": "مخفی‌کردن ",
89 "menu.app.hideOthers" : "مخفی کردن بقیه ", 89 "menu.app.hideOthers": "مخفی کردن بقیه ",
90 "menu.app.quit" : "خروج ", 90 "menu.app.quit": "خروج ",
91 "menu.app.settings" : "تنظیمات ", 91 "menu.app.settings": "تنظیمات ",
92 "menu.app.unhide" : "آشکارسازی", 92 "menu.app.unhide": "آشکارسازی",
93 "menu.edit" : "ویرایش ", 93 "menu.edit": "ویرایش ",
94 "menu.edit.copy" : "کپی", 94 "menu.edit.copy": "کپی",
95 "menu.edit.cut" : "برش ", 95 "menu.edit.cut": "برش ",
96 "menu.edit.delete" : "حذف ", 96 "menu.edit.delete": "حذف ",
97 "menu.edit.emojiSymbols" : "شکلک و نماد ها", 97 "menu.edit.emojiSymbols": "شکلک و نماد ها",
98 "menu.edit.paste" : "چسباندن ", 98 "menu.edit.paste": "چسباندن ",
99 "menu.edit.pasteAndMatchStyle" : "بچسبان و با استایل هماهنگ کن.", 99 "menu.edit.pasteAndMatchStyle": "بچسبان و با استایل هماهنگ کن.",
100 "menu.edit.redo" : "انجام دوباره ", 100 "menu.edit.redo": "انجام دوباره ",
101 "menu.edit.selectAll" : "انتخاب همه ", 101 "menu.edit.selectAll": "انتخاب همه ",
102 "menu.edit.speech" : "سخنرانی", 102 "menu.edit.speech": "سخنرانی",
103 "menu.edit.startDictation" : "شروع به دیکته کردن", 103 "menu.edit.startDictation": "شروع به دیکته کردن",
104 "menu.edit.startSpeaking" : "شروع به حرف زدن", 104 "menu.edit.startSpeaking": "شروع به حرف زدن",
105 "menu.edit.stopSpeaking" : "متوقف سازی حرف زدن", 105 "menu.edit.stopSpeaking": "متوقف سازی حرف زدن",
106 "menu.edit.undo" : "برگشت", 106 "menu.edit.undo": "برگشت",
107 "menu.file" : "فایل", 107 "menu.file": "فایل",
108 "menu.help" : "راهنما", 108 "menu.help": "راهنما",
109 "menu.help.changelog" : "تغییرات", 109 "menu.help.changelog": "تغییرات",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "بیشتر بدانید ", 113 "menu.help.learnMore": "بیشتر بدانید ",
114 "menu.help.privacy" : "قوانین شخصی سازی", 114 "menu.help.privacy": "قوانین شخصی سازی",
115 "menu.help.support" : "پشتیبانی", 115 "menu.help.support": "پشتیبانی",
116 "menu.help.tos" : "شرایط ارائهٔ خدمات ", 116 "menu.help.tos": "شرایط ارائهٔ خدمات ",
117 "menu.services" : "سرویس‌ها ", 117 "menu.services": "سرویس‌ها ",
118 "menu.services.activatePreviousService" : "فعالسازی سرویس قبلی", 118 "menu.services.activatePreviousService": "فعالسازی سرویس قبلی",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "فعالسازی سرویس بعدی", 121 "menu.services.setNextServiceActive": "فعالسازی سرویس بعدی",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "نمایش", 124 "menu.view": "نمایش",
125 "menu.view.enterFullScreen" : "نمای تمام صفحه", 125 "menu.view.enterFullScreen": "نمای تمام صفحه",
126 "menu.view.exitFullScreen" : "خروج از تمام‌صفحه ", 126 "menu.view.exitFullScreen": "خروج از تمام‌صفحه ",
127 "menu.view.reloadFranz" : "بارگذاری مجدد فرَنز", 127 "menu.view.reloadFranz": "بارگذاری مجدد فرَنز",
128 "menu.view.reloadService" : "بارگذاری مجدد سرور", 128 "menu.view.reloadService": "بارگذاری مجدد سرور",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "اندازه واقعی‌ ", 130 "menu.view.resetZoom": "اندازه واقعی‌ ",
131 "menu.view.toggleDevTools" : "ابزارهای گسترش دهنده", 131 "menu.view.toggleDevTools": "ابزارهای گسترش دهنده",
132 "menu.view.toggleFullScreen" : "تغییر وضعیت تمام صفحه", 132 "menu.view.toggleFullScreen": "تغییر وضعیت تمام صفحه",
133 "menu.view.toggleServiceDevTools" : "تغییر سرویس ابزارهای توسعه", 133 "menu.view.toggleServiceDevTools": "تغییر سرویس ابزارهای توسعه",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "بزرگنمایی", 135 "menu.view.zoomIn": "بزرگنمایی",
136 "menu.view.zoomOut" : "کوچک‌نمایی", 136 "menu.view.zoomOut": "کوچک‌نمایی",
137 "menu.window" : "پنجره ", 137 "menu.window": "پنجره ",
138 "menu.window.close" : "بستن ", 138 "menu.window.close": "بستن ",
139 "menu.window.minimize" : "به زیر بردن", 139 "menu.window.minimize": "به زیر بردن",
140 "menu.workspaces" : "فضای کاری", 140 "menu.workspaces": "فضای کاری",
141 "menu.workspaces.addNewWorkspace" : "افزودن فضای کاری جدید...", 141 "menu.workspaces.addNewWorkspace": "افزودن فضای کاری جدید...",
142 "menu.workspaces.closeWorkspaceDrawer" : "بستن کشوی فضای کاری", 142 "menu.workspaces.closeWorkspaceDrawer": "بستن کشوی فضای کاری",
143 "menu.workspaces.defaultWorkspace" : "تمامی سرویس ها", 143 "menu.workspaces.defaultWorkspace": "تمامی سرویس ها",
144 "menu.workspaces.openWorkspaceDrawer" : "بازکردن کشوی فضای کاری", 144 "menu.workspaces.openWorkspaceDrawer": "بازکردن کشوی فضای کاری",
145 "password.email.label" : "نشانی ایمیل", 145 "password.email.label": "نشانی ایمیل",
146 "password.headline" : "تنظیم مجدد رمز عبور ", 146 "password.headline": "تنظیم مجدد رمز عبور ",
147 "password.link.login" : "وارد شدن به اکانت خود", 147 "password.link.login": "وارد شدن به اکانت خود",
148 "password.link.signup" : "ساخت یک حساب کاربری", 148 "password.link.signup": "ساخت یک حساب کاربری",
149 "password.noUser" : "هیچ کاربری با این نشانی ایمیل یافت نشد ", 149 "password.noUser": "هیچ کاربری با این نشانی ایمیل یافت نشد ",
150 "password.submit.label" : "ارسال ", 150 "password.submit.label": "ارسال ",
151 "password.successInfo" : "لطفا ایمیل خود را چک کنید", 151 "password.successInfo": "لطفا ایمیل خود را چک کنید",
152 "premiumFeature.button.upgradeAccount" : "ارتقای حساب", 152 "premiumFeature.button.upgradeAccount": "ارتقای حساب",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "بارگذاری مجدد {name}", 190 "service.crashHandler.action": "بارگذاری مجدد {name}",
191 "service.crashHandler.autoReload" : "در حال بازیابی{نام} در{ثانیه} ثانیه به طور خودکار", 191 "service.crashHandler.autoReload": "در حال بازیابی{نام} در{ثانیه} ثانیه به طور خودکار",
192 "service.crashHandler.headline" : "وای نه! ", 192 "service.crashHandler.headline": "وای نه! ",
193 "service.crashHandler.text" : "{نام} با مشکل مواجه شد", 193 "service.crashHandler.text": "{نام} با مشکل مواجه شد",
194 "service.disabledHandler.action" : "{نام} فعال کن", 194 "service.disabledHandler.action": "{نام} فعال کن",
195 "service.disabledHandler.headline" : "{نام} غیرفعال است", 195 "service.disabledHandler.headline": "{نام} غیرفعال است",
196 "service.errorHandler.action" : "بارگذاری مجدد {name}", 196 "service.errorHandler.action": "بارگذاری مجدد {name}",
197 "service.errorHandler.editAction" : "ویرایش {نام}", 197 "service.errorHandler.editAction": "ویرایش {نام}",
198 "service.errorHandler.headline" : "وای نه! ", 198 "service.errorHandler.headline": "وای نه! ",
199 "service.errorHandler.message" : "خطا ", 199 "service.errorHandler.message": "خطا ",
200 "service.errorHandler.text" : "{name} بارگذاری نشد.", 200 "service.errorHandler.text": "{name} بارگذاری نشد.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "در حال بارگذاری", 206 "service.webviewLoader.loading": "در حال بارگذاری",
207 "services.getStarted" : "شروع ", 207 "services.getStarted": "شروع ",
208 "services.welcome" : "به فرانز خوش آمدید", 208 "services.welcome": "به فرانز خوش آمدید",
209 "settings.account.account.editButton" : "ویرایش حساب کاربری", 209 "settings.account.account.editButton": "ویرایش حساب کاربری",
210 "settings.account.accountType.basic" : "اکانت ساده", 210 "settings.account.accountType.basic": "اکانت ساده",
211 "settings.account.accountType.premium" : "پشتیبانی پیشرفته اکانت", 211 "settings.account.accountType.premium": "پشتیبانی پیشرفته اکانت",
212 "settings.account.buttonSave" : "بروز رسانی پروفایل", 212 "settings.account.buttonSave": "بروز رسانی پروفایل",
213 "settings.account.deleteAccount" : "حذف حساب", 213 "settings.account.deleteAccount": "حذف حساب",
214 "settings.account.deleteEmailSent" : "شما یک ایمیل حاوی لینک غیر فعال سازی اکانت خود را دریافت کرده اید. اکانت شما به هیچ وجه بازیابی نخواهد شد !", 214 "settings.account.deleteEmailSent": "شما یک ایمیل حاوی لینک غیر فعال سازی اکانت خود را دریافت کرده اید. اکانت شما به هیچ وجه بازیابی نخواهد شد !",
215 "settings.account.deleteInfo" : "چنانچه دیگر به به اکانت فرانز خود نیاز ندارید ، میتوانید اکانت خود و تمامی اطلاعات خود در اینجا را حذف کنید.", 215 "settings.account.deleteInfo": "چنانچه دیگر به به اکانت فرانز خود نیاز ندارید ، میتوانید اکانت خود و تمامی اطلاعات خود در اینجا را حذف کنید.",
216 "settings.account.headline" : "حساب ", 216 "settings.account.headline": "حساب ",
217 "settings.account.headlineAccount" : "اطلاعات حساب ", 217 "settings.account.headlineAccount": "اطلاعات حساب ",
218 "settings.account.headlineDangerZone" : "منطقه خطرناک", 218 "settings.account.headlineDangerZone": "منطقه خطرناک",
219 "settings.account.headlineInvoices" : "فاکتورها", 219 "settings.account.headlineInvoices": "فاکتورها",
220 "settings.account.headlinePassword" : "تغییر کلمه عبور", 220 "settings.account.headlinePassword": "تغییر کلمه عبور",
221 "settings.account.headlineProfile" : "بروزرسانی پروفایل", 221 "settings.account.headlineProfile": "بروزرسانی پروفایل",
222 "settings.account.headlineSubscription" : "اشتراک شما", 222 "settings.account.headlineSubscription": "اشتراک شما",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "دانلود", 225 "settings.account.invoiceDownload": "دانلود",
226 "settings.account.manageSubscription.label" : "اشتراک خود را مدیریت کنید", 226 "settings.account.manageSubscription.label": "اشتراک خود را مدیریت کنید",
227 "settings.account.successInfo" : "تغییرات شما ذخیره شد!", 227 "settings.account.successInfo": "تغییرات شما ذخیره شد!",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "تلاش مجدد ", 231 "settings.account.tryReloadServices": "تلاش مجدد ",
232 "settings.account.tryReloadUserInfoRequest" : "تلاش مجدد ", 232 "settings.account.tryReloadUserInfoRequest": "تلاش مجدد ",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "نمی‌توان اطلاعات کاربر را بارگذاری کرد.", 234 "settings.account.userInfoRequestFailed": "نمی‌توان اطلاعات کاربر را بارگذاری کرد.",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "پاک کردن حافظه پنهان", 236 "settings.app.buttonClearAllCache": "پاک کردن حافظه پنهان",
237 "settings.app.buttonInstallUpdate" : "باز کردن مجدد و نصب به روز رسانی ", 237 "settings.app.buttonInstallUpdate": "باز کردن مجدد و نصب به روز رسانی ",
238 "settings.app.buttonSearchForUpdate" : "بررسی بروزرسانی", 238 "settings.app.buttonSearchForUpdate": "بررسی بروزرسانی",
239 "settings.app.cacheInfo" : "حافظه ی پنهانی فرانز هم اکنون {سایز} از فضای شما استفاده میکند .", 239 "settings.app.cacheInfo": "حافظه ی پنهانی فرانز هم اکنون {سایز} از فضای شما استفاده میکند .",
240 "settings.app.currentVersion" : "نسخهٔ فعلی", 240 "settings.app.currentVersion": "نسخهٔ فعلی",
241 "settings.app.form.autoLaunchInBackground" : "باز کردن در پس زمینه", 241 "settings.app.form.autoLaunchInBackground": "باز کردن در پس زمینه",
242 "settings.app.form.autoLaunchOnStart" : "باز شدن فرانز در استارت ", 242 "settings.app.form.autoLaunchOnStart": "باز شدن فرانز در استارت ",
243 "settings.app.form.beta" : "شامل نسخه های بتا ", 243 "settings.app.form.beta": "شامل نسخه های بتا ",
244 "settings.app.form.darkMode" : "فعالسازی حالت شب", 244 "settings.app.form.darkMode": "فعالسازی حالت شب",
245 "settings.app.form.enableGPUAcceleration" : "فعال سازی شتاب GPU", 245 "settings.app.form.enableGPUAcceleration": "فعال سازی شتاب GPU",
246 "settings.app.form.enableSpellchecking" : "فعال‌سازی غلط‌یابی املایی", 246 "settings.app.form.enableSpellchecking": "فعال‌سازی غلط‌یابی املایی",
247 "settings.app.form.enableSystemTray" : "فرانز را در system tray نشان بده", 247 "settings.app.form.enableSystemTray": "فرانز را در system tray نشان بده",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "زبان", 250 "settings.app.form.language": "زبان",
251 "settings.app.form.minimizeToSystemTray" : "فرانز را در system tray بخوابان", 251 "settings.app.form.minimizeToSystemTray": "فرانز را در system tray بخوابان",
252 "settings.app.form.runInBackground" : "فرانز را در پشت زمینه نگه دار زمانی که پنجره آن بسته میشود", 252 "settings.app.form.runInBackground": "فرانز را در پشت زمینه نگه دار زمانی که پنجره آن بسته میشود",
253 "settings.app.form.showDisabledServices" : "سرویس های غیرفعال را نشان بده ", 253 "settings.app.form.showDisabledServices": "سرویس های غیرفعال را نشان بده ",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "نماد پیام خوانده نشده را زمانی که نوتیفیکیشن ها غیرفعالند نشان بده", 254 "settings.app.form.showMessagesBadgesWhenMuted": "نماد پیام خوانده نشده را زمانی که نوتیفیکیشن ها غیرفعالند نشان بده",
255 "settings.app.headline" : "تنظیمات ", 255 "settings.app.headline": "تنظیمات ",
256 "settings.app.headlineAdvanced" : "پیشرفته ", 256 "settings.app.headlineAdvanced": "پیشرفته ",
257 "settings.app.headlineAppearance" : "ظاهر ", 257 "settings.app.headlineAppearance": "ظاهر ",
258 "settings.app.headlineGeneral" : "عمومی ", 258 "settings.app.headlineGeneral": "عمومی ",
259 "settings.app.headlineLanguage" : "زبان ", 259 "settings.app.headlineLanguage": "زبان ",
260 "settings.app.headlineUpdates" : "به‌روزرسانی‌ها ", 260 "settings.app.headlineUpdates": "به‌روزرسانی‌ها ",
261 "settings.app.languageDisclaimer" : "ترجمه های رسمی به زبان انگلیسی و آلمانی هستند. ترجمه های بقیه زبانها مردم پایه هستند.", 261 "settings.app.languageDisclaimer": "ترجمه های رسمی به زبان انگلیسی و آلمانی هستند. ترجمه های بقیه زبانها مردم پایه هستند.",
262 "settings.app.restartRequired" : "تغییر ملزومات ریستارت", 262 "settings.app.restartRequired": "تغییر ملزومات ریستارت",
263 "settings.app.subheadlineCache" : "حافظه‌ی نهان", 263 "settings.app.subheadlineCache": "حافظه‌ی نهان",
264 "settings.app.translationHelp" : "به ما کمک کنید فرانز را به زبان شما ترجمه کنیم.", 264 "settings.app.translationHelp": "به ما کمک کنید فرانز را به زبان شما ترجمه کنیم.",
265 "settings.app.updateStatusAvailable" : "بروزرسانی موجود است ، در حال دانلود...", 265 "settings.app.updateStatusAvailable": "بروزرسانی موجود است ، در حال دانلود...",
266 "settings.app.updateStatusSearching" : "در حال جستجو برای بروزرسانی", 266 "settings.app.updateStatusSearching": "در حال جستجو برای بروزرسانی",
267 "settings.app.updateStatusUpToDate" : "شما از آخرین نسخه فرانز استفاده میکنید", 267 "settings.app.updateStatusUpToDate": "شما از آخرین نسخه فرانز استفاده میکنید",
268 "settings.invite.headline" : "دعوت دوستان", 268 "settings.invite.headline": "دعوت دوستان",
269 "settings.navigation.account" : "حساب ", 269 "settings.navigation.account": "حساب ",
270 "settings.navigation.availableServices" : "سرویس های موجود", 270 "settings.navigation.availableServices": "سرویس های موجود",
271 "settings.navigation.inviteFriends" : "دعوت دوستان", 271 "settings.navigation.inviteFriends": "دعوت دوستان",
272 "settings.navigation.logout" : "خروج از سیستم ", 272 "settings.navigation.logout": "خروج از سیستم ",
273 "settings.navigation.settings" : "تنظیمات ", 273 "settings.navigation.settings": "تنظیمات ",
274 "settings.navigation.team" : "مدیریت گروه", 274 "settings.navigation.team": "مدیریت گروه",
275 "settings.navigation.yourServices" : "سرویس های شما", 275 "settings.navigation.yourServices": "سرویس های شما",
276 "settings.navigation.yourWorkspaces" : "فضای کاری شما", 276 "settings.navigation.yourWorkspaces": "فضای کاری شما",
277 "settings.recipes.all" : "همه سرویس ها", 277 "settings.recipes.all": "همه سرویس ها",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "سرویس های موجود", 285 "settings.recipes.headline": "سرویس های موجود",
286 "settings.recipes.missingService" : "سرویسی را نیاز دارید ؟", 286 "settings.recipes.missingService": "سرویسی را نیاز دارید ؟",
287 "settings.recipes.mostPopular" : "مشهورترین ها", 287 "settings.recipes.mostPopular": "مشهورترین ها",
288 "settings.recipes.nothingFound" : "متاسفیم ، اما هیچ سرویسی با آنچه که جستجو کردید مطابقت نداشت .", 288 "settings.recipes.nothingFound": "متاسفیم ، اما هیچ سرویسی با آنچه که جستجو کردید مطابقت نداشت .",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "سرویس با موفقیت اضافه شد", 289 "settings.recipes.servicesSuccessfulAddedInfo": "سرویس با موفقیت اضافه شد",
290 "settings.searchService" : "جستجوی سرویس ها", 290 "settings.searchService": "جستجوی سرویس ها",
291 "settings.service.error.goBack" : "بازگشت به سرویس ها", 291 "settings.service.error.goBack": "بازگشت به سرویس ها",
292 "settings.service.error.headline" : "خطا ", 292 "settings.service.error.headline": "خطا ",
293 "settings.service.error.message" : "دستورالعمل سرویس بارگذاری نشد.", 293 "settings.service.error.message": "دستورالعمل سرویس بارگذاری نشد.",
294 "settings.service.form.addServiceHeadline" : "اضافه کردن {نام}", 294 "settings.service.form.addServiceHeadline": "اضافه کردن {نام}",
295 "settings.service.form.availableServices" : "سرویس های موجود", 295 "settings.service.form.availableServices": "سرویس های موجود",
296 "settings.service.form.customUrl" : "سرور سفارشی", 296 "settings.service.form.customUrl": "سرور سفارشی",
297 "settings.service.form.customUrlPremiumInfo" : "برای اضافه کردن سرویس هایی که خود دارید ، نیاز به پشتیبانی پیشرفته فرانز را دارید", 297 "settings.service.form.customUrlPremiumInfo": "برای اضافه کردن سرویس هایی که خود دارید ، نیاز به پشتیبانی پیشرفته فرانز را دارید",
298 "settings.service.form.customUrlUpgradeAccount" : "اکانت خود را ارتقا دهید", 298 "settings.service.form.customUrlUpgradeAccount": "اکانت خود را ارتقا دهید",
299 "settings.service.form.customUrlValidationError" : "نتوانستیم سرور {نام} را تایید اعتبار کنیم", 299 "settings.service.form.customUrlValidationError": "نتوانستیم سرور {نام} را تایید اعتبار کنیم",
300 "settings.service.form.deleteButton" : "حذف سرویس", 300 "settings.service.form.deleteButton": "حذف سرویس",
301 "settings.service.form.editServiceHeadline" : "ویرایش {name}", 301 "settings.service.form.editServiceHeadline": "ویرایش {name}",
302 "settings.service.form.enableAudio" : "فعال‌سازی صدا", 302 "settings.service.form.enableAudio": "فعال‌سازی صدا",
303 "settings.service.form.enableBadge" : "نماد پیام خوانده نشده را نشان بده ", 303 "settings.service.form.enableBadge": "نماد پیام خوانده نشده را نشان بده ",
304 "settings.service.form.enableDarkMode" : "فعالسازی حالت شب", 304 "settings.service.form.enableDarkMode": "فعالسازی حالت شب",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "فعال سازی اعلان‌ها", 306 "settings.service.form.enableNotification": "فعال سازی اعلان‌ها",
307 "settings.service.form.enableService" : "فعال سازی سرویس ها", 307 "settings.service.form.enableService": "فعال سازی سرویس ها",
308 "settings.service.form.headlineBadges" : "نماد پیام های خوانده نشده ", 308 "settings.service.form.headlineBadges": "نماد پیام های خوانده نشده ",
309 "settings.service.form.headlineGeneral" : "عمومی", 309 "settings.service.form.headlineGeneral": "عمومی",
310 "settings.service.form.headlineNotifications" : "اعلان‌ها", 310 "settings.service.form.headlineNotifications": "اعلان‌ها",
311 "settings.service.form.icon" : "آیکون پیشفرض", 311 "settings.service.form.icon": "آیکون پیشفرض",
312 "settings.service.form.iconDelete" : "حذف", 312 "settings.service.form.iconDelete": "حذف",
313 "settings.service.form.iconUpload" : "عکس خود را به اینجا بکشید و یا اینجا را کیلیک کنید", 313 "settings.service.form.iconUpload": "عکس خود را به اینجا بکشید و یا اینجا را کیلیک کنید",
314 "settings.service.form.indirectMessageInfo" : "شما از تمامی پیام های جدید در کانال ها با خبر خواهید شد نه تنها در @usernam , @channel , @here , ...", 314 "settings.service.form.indirectMessageInfo": "شما از تمامی پیام های جدید در کانال ها با خبر خواهید شد نه تنها در @usernam , @channel , @here , ...",
315 "settings.service.form.indirectMessages" : "نماد پیام را برای تمامی پیام های جدید نشان بده", 315 "settings.service.form.indirectMessages": "نماد پیام را برای تمامی پیام های جدید نشان بده",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "زمان غیرفعالی ، تمامی اعلان ها ،صداها و صداهای پشت زمینه را ببند.", 317 "settings.service.form.isMutedInfo": "زمان غیرفعالی ، تمامی اعلان ها ،صداها و صداهای پشت زمینه را ببند.",
318 "settings.service.form.name" : "نام", 318 "settings.service.form.name": "نام",
319 "settings.service.form.proxy.headline" : "تنظیمات پروکسی HTTP\/HTTPS", 319 "settings.service.form.proxy.headline": "تنظیمات پروکسی HTTP/HTTPS",
320 "settings.service.form.proxy.host" : "آی پی پروکسی", 320 "settings.service.form.proxy.host": "آی پی پروکسی",
321 "settings.service.form.proxy.info" : "تنظیمات پروکسی در سرورهای فرَنز ذخیره نخواهد شد.", 321 "settings.service.form.proxy.info": "تنظیمات پروکسی در سرورهای فرَنز ذخیره نخواهد شد.",
322 "settings.service.form.proxy.isEnabled" : "استفاده از پروکسی", 322 "settings.service.form.proxy.isEnabled": "استفاده از پروکسی",
323 "settings.service.form.proxy.password" : "رمزعبور (اختیاری)", 323 "settings.service.form.proxy.password": "رمزعبور (اختیاری)",
324 "settings.service.form.proxy.port" : "درگاه", 324 "settings.service.form.proxy.port": "درگاه",
325 "settings.service.form.proxy.restartInfo" : "لطفا پس از تغییر تنظیمات پروکسی، فرَنز رو ریستارت کن.", 325 "settings.service.form.proxy.restartInfo": "لطفا پس از تغییر تنظیمات پروکسی، فرَنز رو ریستارت کن.",
326 "settings.service.form.proxy.user" : "کاربر (اختیاری)", 326 "settings.service.form.proxy.user": "کاربر (اختیاری)",
327 "settings.service.form.saveButton" : "ذخیره سرویس", 327 "settings.service.form.saveButton": "ذخیره سرویس",
328 "settings.service.form.tabHosted" : "میزبان شده", 328 "settings.service.form.tabHosted": "میزبان شده",
329 "settings.service.form.tabOnPremise" : "خود میزبانی", 329 "settings.service.form.tabOnPremise": "خود میزبانی",
330 "settings.service.form.team" : "گروه", 330 "settings.service.form.team": "گروه",
331 "settings.service.form.useHostedService" : "از هاست سرویس {نام} استفاده شود.", 331 "settings.service.form.useHostedService": "از هاست سرویس {نام} استفاده شود.",
332 "settings.service.form.yourServices" : "سرویس های شما", 332 "settings.service.form.yourServices": "سرویس های شما",
333 "settings.services.deletedInfo" : "سرویس حذف شده است", 333 "settings.services.deletedInfo": "سرویس حذف شده است",
334 "settings.services.discoverServices" : "آشکار سازی سرویس ها ", 334 "settings.services.discoverServices": "آشکار سازی سرویس ها ",
335 "settings.services.headline" : "سرویس های شما", 335 "settings.services.headline": "سرویس های شما",
336 "settings.services.noServicesAdded" : "شما هیچ سرویسی هنوز اضافه نکرده اید ", 336 "settings.services.noServicesAdded": "شما هیچ سرویسی هنوز اضافه نکرده اید ",
337 "settings.services.servicesRequestFailed" : "سرویس های شما بارگیری نشدن", 337 "settings.services.servicesRequestFailed": "سرویس های شما بارگیری نشدن",
338 "settings.services.tooltip.isDisabled" : "سرویس غیرفعال است", 338 "settings.services.tooltip.isDisabled": "سرویس غیرفعال است",
339 "settings.services.tooltip.isMuted" : "تمامی صدا ها قطع هستند .", 339 "settings.services.tooltip.isMuted": "تمامی صدا ها قطع هستند .",
340 "settings.services.tooltip.notificationsDisabled" : "اعلان ها غیرفعالند.", 340 "settings.services.tooltip.notificationsDisabled": "اعلان ها غیرفعالند.",
341 "settings.services.updatedInfo" : "تغییرات شما ذخیره شد .", 341 "settings.services.updatedInfo": "تغییرات شما ذخیره شد .",
342 "settings.team.contentHeadline" : "فرَنز برای گروه ها", 342 "settings.team.contentHeadline": "فرَنز برای گروه ها",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "گروه", 344 "settings.team.headline": "گروه",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "گروهتو تو meetfranz.com مدیریت کن", 346 "settings.team.manageAction": "گروهتو تو meetfranz.com مدیریت کن",
347 "settings.team.upgradeAction" : "حسابت رو ارتقا بده", 347 "settings.team.upgradeAction": "حسابت رو ارتقا بده",
348 "settings.user.form.accountType.company" : "شرکت", 348 "settings.user.form.accountType.company": "شرکت",
349 "settings.user.form.accountType.individual" : "شخص", 349 "settings.user.form.accountType.individual": "شخص",
350 "settings.user.form.accountType.label" : "نوع حساب", 350 "settings.user.form.accountType.label": "نوع حساب",
351 "settings.user.form.accountType.non-profit" : "شرکت خصوصی", 351 "settings.user.form.accountType.non-profit": "شرکت خصوصی",
352 "settings.user.form.currentPassword" : "گذرواژهٔ فعلی", 352 "settings.user.form.currentPassword": "گذرواژهٔ فعلی",
353 "settings.user.form.email" : "ایمیل", 353 "settings.user.form.email": "ایمیل",
354 "settings.user.form.firstname" : "نام", 354 "settings.user.form.firstname": "نام",
355 "settings.user.form.lastname" : "نام خانوادگی", 355 "settings.user.form.lastname": "نام خانوادگی",
356 "settings.user.form.newPassword" : "گذرواژهٔ جدید", 356 "settings.user.form.newPassword": "گذرواژهٔ جدید",
357 "settings.workspace.add.form.name" : "نام", 357 "settings.workspace.add.form.name": "نام",
358 "settings.workspace.add.form.submitButton" : "ایجاد فضای کاری", 358 "settings.workspace.add.form.submitButton": "ایجاد فضای کاری",
359 "settings.workspace.form.buttonDelete" : "حذف فضای کاری", 359 "settings.workspace.form.buttonDelete": "حذف فضای کاری",
360 "settings.workspace.form.buttonSave" : "ذخیره فضای کاری", 360 "settings.workspace.form.buttonSave": "ذخیره فضای کاری",
361 "settings.workspace.form.name" : "نام", 361 "settings.workspace.form.name": "نام",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "سرویس های این فضای کاری", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "سرویس های این فضای کاری",
363 "settings.workspace.form.yourWorkspaces" : "فضاهای کاری شما", 363 "settings.workspace.form.yourWorkspaces": "فضاهای کاری شما",
364 "settings.workspaces.deletedInfo" : "فضای کاری حذف شد", 364 "settings.workspaces.deletedInfo": "فضای کاری حذف شد",
365 "settings.workspaces.headline" : "فضاهای کاری شما", 365 "settings.workspaces.headline": "فضاهای کاری شما",
366 "settings.workspaces.noWorkspacesAdded" : "هنوز فضای کاری اضافه نکردی.", 366 "settings.workspaces.noWorkspacesAdded": "هنوز فضای کاری اضافه نکردی.",
367 "settings.workspaces.tryReloadWorkspaces" : "تلاش مجدد ", 367 "settings.workspaces.tryReloadWorkspaces": "تلاش مجدد ",
368 "settings.workspaces.updatedInfo" : "تغییرات ذخیره شدن", 368 "settings.workspaces.updatedInfo": "تغییرات ذخیره شدن",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "فضاهای کاری بارگذاری نشدند", 371 "settings.workspaces.workspacesRequestFailed": "فضاهای کاری بارگذاری نشدند",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "اضافه کردن سرویس جدید", 375 "sidebar.addNewService": "اضافه کردن سرویس جدید",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "بستن کشوی فضای کاری", 377 "sidebar.closeWorkspaceDrawer": "بستن کشوی فضای کاری",
378 "sidebar.muteApp" : "غیرفعال کردن اعلان ها و صدا", 378 "sidebar.muteApp": "غیرفعال کردن اعلان ها و صدا",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "بازکردن کشوی فضای کاری", 380 "sidebar.openWorkspaceDrawer": "بازکردن کشوی فضای کاری",
381 "sidebar.settings" : "تنظیمات", 381 "sidebar.settings": "تنظیمات",
382 "sidebar.unmuteApp" : "فعال سازی اعلان ها و صدا", 382 "sidebar.unmuteApp": "فعال سازی اعلان ها و صدا",
383 "signup.email.label" : "نشانی ایمیل", 383 "signup.email.label": "نشانی ایمیل",
384 "signup.emailDuplicate" : "یک کاربر با این ایمیل هم اکنون موجود است.", 384 "signup.emailDuplicate": "یک کاربر با این ایمیل هم اکنون موجود است.",
385 "signup.firstname.label" : "نام", 385 "signup.firstname.label": "نام",
386 "signup.headline" : "ثبت نام", 386 "signup.headline": "ثبت نام",
387 "signup.lastname.label" : "نام خانوادگی", 387 "signup.lastname.label": "نام خانوادگی",
388 "signup.legal.info" : "با ایجاد حساب فرانز شما قبول کرده اید که ", 388 "signup.legal.info": "با ایجاد حساب فرانز شما قبول کرده اید که ",
389 "signup.legal.privacy" : "قوانین خصوصی سازی", 389 "signup.legal.privacy": "قوانین خصوصی سازی",
390 "signup.legal.terms" : "شرایط ارائهٔ خدمات", 390 "signup.legal.terms": "شرایط ارائهٔ خدمات",
391 "signup.link.login" : "صاحب اکانت هستید ؟ وارد شوید", 391 "signup.link.login": "صاحب اکانت هستید ؟ وارد شوید",
392 "signup.password.label" : "رمز عبور", 392 "signup.password.label": "رمز عبور",
393 "signup.submit.label" : "ایجاد حساب جدید", 393 "signup.submit.label": "ایجاد حساب جدید",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "انصراف", 405 "subscriptionPopup.buttonCancel": "انصراف",
406 "subscriptionPopup.buttonDone" : "انجام شد", 406 "subscriptionPopup.buttonDone": "انجام شد",
407 "tabs.item.deleteService" : "حذف سرویس", 407 "tabs.item.deleteService": "حذف سرویس",
408 "tabs.item.disableAudio" : "غیرفعال کردن صدا", 408 "tabs.item.disableAudio": "غیرفعال کردن صدا",
409 "tabs.item.disableNotifications" : "غیر فعال کردن اعلان ها", 409 "tabs.item.disableNotifications": "غیر فعال کردن اعلان ها",
410 "tabs.item.disableService" : "غیر فعال کردن سرویس", 410 "tabs.item.disableService": "غیر فعال کردن سرویس",
411 "tabs.item.edit" : "ویرایش", 411 "tabs.item.edit": "ویرایش",
412 "tabs.item.enableAudio" : "فعال‌سازی صدا", 412 "tabs.item.enableAudio": "فعال‌سازی صدا",
413 "tabs.item.enableNotification" : "فعال سازی اعلان‌ها", 413 "tabs.item.enableNotification": "فعال سازی اعلان‌ها",
414 "tabs.item.enableService" : "فعال سازی سرویس", 414 "tabs.item.enableService": "فعال سازی سرویس",
415 "tabs.item.reload" : "بارگذاری مجدد", 415 "tabs.item.reload": "بارگذاری مجدد",
416 "validation.email" : "{فیلد} معتبر نیست", 416 "validation.email": "{فیلد} معتبر نیست",
417 "validation.minLength" : "{فیلد} باید حداقل{طول} کاراکتر داشته باشد", 417 "validation.minLength": "{فیلد} باید حداقل{طول} کاراکتر داشته باشد",
418 "validation.oneRequired" : "حداقل یکی الزامی هست", 418 "validation.oneRequired": "حداقل یکی الزامی هست",
419 "validation.required" : "{فیلد} نیاز است ", 419 "validation.required": "{فیلد} نیاز است ",
420 "validation.url" : "{فیلد} URL معتبر نیست", 420 "validation.url": "{فیلد} URL معتبر نیست",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "بارگذاری مجدد", 425 "webControls.reload": "بارگذاری مجدد",
426 "welcome.loginButton" : "وارد شدن به اکانت خود", 426 "welcome.loginButton": "وارد شدن به اکانت خود",
427 "welcome.signupButton" : "ساخت یک حساب کاربری", 427 "welcome.signupButton": "ساخت یک حساب کاربری",
428 "workspaceDrawer.addNewWorkspaceLabel" : "افزودن فضای کاری جدید", 428 "workspaceDrawer.addNewWorkspaceLabel": "افزودن فضای کاری جدید",
429 "workspaceDrawer.allServices" : "همه سرویس ها", 429 "workspaceDrawer.allServices": "همه سرویس ها",
430 "workspaceDrawer.headline" : "فضاهای کاری", 430 "workspaceDrawer.headline": "فضاهای کاری",
431 "workspaceDrawer.item.contextMenuEdit" : "ویرایش", 431 "workspaceDrawer.item.contextMenuEdit": "ویرایش",
432 "workspaceDrawer.item.noServicesAddedYet" : "هنوز هیچ سرویسی اضافه نشده", 432 "workspaceDrawer.item.noServicesAddedYet": "هنوز هیچ سرویسی اضافه نشده",
433 "workspaceDrawer.premiumCtaButtonLabel" : "اولین فضای کاریتو درست کن", 433 "workspaceDrawer.premiumCtaButtonLabel": "اولین فضای کاریتو درست کن",
434 "workspaceDrawer.proFeatureBadge" : "امکانات ویژه", 434 "workspaceDrawer.proFeatureBadge": "امکانات ویژه",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "فعالسازی مجدد حساب ویژه", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "فعالسازی مجدد حساب ویژه",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "ویرایش تنظیمات فضاهای کاری", 437 "workspaceDrawer.workspacesSettingsTooltip": "ویرایش تنظیمات فضاهای کاری",
438 "workspaces.switchingIndicator.switchingTo" : "سویچ به" 438 "workspaces.switchingIndicator.switchingTo": "سویچ به"
439} 439}
diff --git a/src/i18n/locales/fi.json b/src/i18n/locales/fi.json
index 9bba59427..0a8577c60 100644
--- a/src/i18n/locales/fi.json
+++ b/src/i18n/locales/fi.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Päivitä Ferdi Professionaliin", 279 "settings.account.upgradeToPro.label": "Päivitä Ferdi Professionaliin",
280 "settings.account.userInfoRequestFailed": "Käyttäjätietoja ei voitu ladata", 280 "settings.account.userInfoRequestFailed": "Käyttäjätietoja ei voitu ladata",
281 "settings.account.yourLicense": "Sinun Ferdi-lisenssi", 281 "settings.account.yourLicense": "Sinun Ferdi-lisenssi",
282 "settings.app.accentColorInfo": "Käytä korostusvärinäsi CSS-yhteensopivaa muotoa. (Oletus: #7367f0)", 282 "settings.app.accentColorInfo": "Käytä korostusvärinäsi CSS-yhteensopivaa muotoa. (Oletus: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Tyhjennä välimuisti", 283 "settings.app.buttonClearAllCache": "Tyhjennä välimuisti",
284 "settings.app.buttonInstallUpdate": "Käynnistä uudelleen ja asenna päivitys", 284 "settings.app.buttonInstallUpdate": "Käynnistä uudelleen ja asenna päivitys",
285 "settings.app.buttonSearchForUpdate": "Tarkista päivitykset", 285 "settings.app.buttonSearchForUpdate": "Tarkista päivitykset",
diff --git a/src/i18n/locales/fil.json b/src/i18n/locales/fil.json
index c6347a635..6cc604fc8 100644
--- a/src/i18n/locales/fil.json
+++ b/src/i18n/locales/fil.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Reload", 2 "app.errorHandler.action": "Reload",
3 "app.errorHandler.headline" : "Something went wrong", 3 "app.errorHandler.headline": "Something went wrong",
4 "connectionLostBanner.cta" : "Reload Service", 4 "connectionLostBanner.cta": "Reload Service",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "Changes in Franz {version}", 7 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "Franz will continue in {seconds} seconds.", 9 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "Upgrade account", 14 "feature.delayApp.upgrade.actionShort": "Upgrade account",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "Send as email", 32 "feature.shareFranz.action.email": "Send as email",
33 "feature.shareFranz.action.facebook" : "Share on Facebook", 33 "feature.shareFranz.action.facebook": "Share on Facebook",
34 "feature.shareFranz.action.twitter" : "Share on Twitter", 34 "feature.shareFranz.action.twitter": "Share on Twitter",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", 38 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "Hindi maka connect sa 'Franz online services'", 49 "global.api.unhealthy": "Hindi maka connect sa 'Ferdi online services'",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "Hindi ka naka connect sa internet.", 51 "global.notConnectedToTheInternet": "Hindi ka naka connect sa internet.",
52 "global.spellchecker.useDefault" : "Use System Default ({default})", 52 "global.spellchecker.useDefault": "Use System Default ({default})",
53 "global.spellchecking.autodetect" : "Detect language automatically", 53 "global.spellchecking.autodetect": "Detect language automatically",
54 "global.spellchecking.autodetect.short" : "Automatic", 54 "global.spellchecking.autodetect.short": "Automatic",
55 "global.spellchecking.language" : "Spell checking language", 55 "global.spellchecking.language": "Spell checking language",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "Ilagay ang iyonhg Franz 4 services", 57 "import.headline": "Ilagay ang iyonhg Ferdi 4 services",
58 "import.notSupportedHeadline" : "Ang mga services ay hindi pa supported ni Franz 5", 58 "import.notSupportedHeadline": "Ang mga services ay hindi pa supported ni Ferdi 5",
59 "import.skip.label" : "Gusto kong magdagdag", 59 "import.skip.label": "Gusto kong magdagdag",
60 "import.submit.label" : "Magdagdag ng serbisyo", 60 "import.submit.label": "Magdagdag ng serbisyo",
61 "infobar.buttonChangelog" : "Ano ang bago?", 61 "infobar.buttonChangelog": "Ano ang bago?",
62 "infobar.buttonInstallUpdate" : "Mag restart at i-install ang update", 62 "infobar.buttonInstallUpdate": "Mag restart at i-install ang update",
63 "infobar.buttonReloadServices" : "I-load muli ang mga serbisyo", 63 "infobar.buttonReloadServices": "I-load muli ang mga serbisyo",
64 "infobar.requiredRequestsFailed" : "Hindi mai-load ang mga serbisyo at ang impormasyon tungkol sa user.", 64 "infobar.requiredRequestsFailed": "Hindi mai-load ang mga serbisyo at ang impormasyon tungkol sa user.",
65 "infobar.servicesUpdated" : "Na-update na ang iyong mga serbisyo.", 65 "infobar.servicesUpdated": "Na-update na ang iyong mga serbisyo.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "May bagong update.", 67 "infobar.updateAvailable": "May bagong update.",
68 "invite.email.label" : "Email Address", 68 "invite.email.label": "Email Address",
69 "invite.headline.friends" : "Invite 3 of your friends or colleagues", 69 "invite.headline.friends": "Invite 3 of your friends or colleagues",
70 "invite.name.label" : "Name", 70 "invite.name.label": "Name",
71 "invite.skip.label" : "I want to do this later", 71 "invite.skip.label": "I want to do this later",
72 "invite.submit.label" : "Send invites", 72 "invite.submit.label": "Send invites",
73 "invite.successInfo" : "Invitations sent successfully", 73 "invite.successInfo": "Invitations sent successfully",
74 "login.email.label" : "Email Address", 74 "login.email.label": "Email Address",
75 "login.headline" : "Sign in", 75 "login.headline": "Sign in",
76 "login.invalidCredentials" : "Email or password not valid", 76 "login.invalidCredentials": "Email or password not valid",
77 "login.link.password" : "Reset password", 77 "login.link.password": "Reset password",
78 "login.link.signup" : "Create a free account", 78 "login.link.signup": "Create a free account",
79 "login.password.label" : "Password", 79 "login.password.label": "Password",
80 "login.serverLogout" : "Your session expired, please login again.", 80 "login.serverLogout": "Your session expired, please login again.",
81 "login.submit.label" : "Sign in", 81 "login.submit.label": "Sign in",
82 "login.tokenExpired" : "Your session expired, please login again.", 82 "login.tokenExpired": "Your session expired, please login again.",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "About Franz", 85 "menu.app.about": "About Ferdi",
86 "menu.app.announcement" : "What's new?", 86 "menu.app.announcement": "What's new?",
87 "menu.app.checkForUpdates" : "Check for updates", 87 "menu.app.checkForUpdates": "Check for updates",
88 "menu.app.hide" : "Hide", 88 "menu.app.hide": "Hide",
89 "menu.app.hideOthers" : "Hide Others", 89 "menu.app.hideOthers": "Hide Others",
90 "menu.app.quit" : "Quit", 90 "menu.app.quit": "Quit",
91 "menu.app.settings" : "Settings", 91 "menu.app.settings": "Settings",
92 "menu.app.unhide" : "Unhide", 92 "menu.app.unhide": "Unhide",
93 "menu.edit" : "Edit", 93 "menu.edit": "Edit",
94 "menu.edit.copy" : "Copy", 94 "menu.edit.copy": "Copy",
95 "menu.edit.cut" : "Cut", 95 "menu.edit.cut": "Cut",
96 "menu.edit.delete" : "Delete", 96 "menu.edit.delete": "Delete",
97 "menu.edit.emojiSymbols" : "Emoji & Symbols", 97 "menu.edit.emojiSymbols": "Emoji & Symbols",
98 "menu.edit.paste" : "Paste", 98 "menu.edit.paste": "Paste",
99 "menu.edit.pasteAndMatchStyle" : "Paste And Match Style", 99 "menu.edit.pasteAndMatchStyle": "Paste And Match Style",
100 "menu.edit.redo" : "Redo", 100 "menu.edit.redo": "Redo",
101 "menu.edit.selectAll" : "Select All", 101 "menu.edit.selectAll": "Select All",
102 "menu.edit.speech" : "Speech", 102 "menu.edit.speech": "Speech",
103 "menu.edit.startDictation" : "Start Dictation", 103 "menu.edit.startDictation": "Start Dictation",
104 "menu.edit.startSpeaking" : "Start Speaking", 104 "menu.edit.startSpeaking": "Start Speaking",
105 "menu.edit.stopSpeaking" : "Stop Speaking", 105 "menu.edit.stopSpeaking": "Stop Speaking",
106 "menu.edit.undo" : "Undo", 106 "menu.edit.undo": "Undo",
107 "menu.file" : "File", 107 "menu.file": "File",
108 "menu.help" : "Help", 108 "menu.help": "Help",
109 "menu.help.changelog" : "Changelog", 109 "menu.help.changelog": "Changelog",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "Learn More", 113 "menu.help.learnMore": "Learn More",
114 "menu.help.privacy" : "Privacy Statement", 114 "menu.help.privacy": "Privacy Statement",
115 "menu.help.support" : "Support", 115 "menu.help.support": "Support",
116 "menu.help.tos" : "Terms of Service", 116 "menu.help.tos": "Terms of Service",
117 "menu.services" : "Services", 117 "menu.services": "Services",
118 "menu.services.activatePreviousService" : "Activate previous service", 118 "menu.services.activatePreviousService": "Activate previous service",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "Activate next service", 121 "menu.services.setNextServiceActive": "Activate next service",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "View", 124 "menu.view": "View",
125 "menu.view.enterFullScreen" : "Enter Full Screen", 125 "menu.view.enterFullScreen": "Enter Full Screen",
126 "menu.view.exitFullScreen" : "Exit Full Screen", 126 "menu.view.exitFullScreen": "Exit Full Screen",
127 "menu.view.reloadFranz" : "Reload Franz", 127 "menu.view.reloadFranz": "Reload Ferdi",
128 "menu.view.reloadService" : "Reload Service", 128 "menu.view.reloadService": "Reload Service",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "Actual Size", 130 "menu.view.resetZoom": "Actual Size",
131 "menu.view.toggleDevTools" : "Toggle Developer Tools", 131 "menu.view.toggleDevTools": "Toggle Developer Tools",
132 "menu.view.toggleFullScreen" : "Toggle Full Screen", 132 "menu.view.toggleFullScreen": "Toggle Full Screen",
133 "menu.view.toggleServiceDevTools" : "Toggle Service Developer Tools", 133 "menu.view.toggleServiceDevTools": "Toggle Service Developer Tools",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "Zoom In", 135 "menu.view.zoomIn": "Zoom In",
136 "menu.view.zoomOut" : "Zoom Out", 136 "menu.view.zoomOut": "Zoom Out",
137 "menu.window" : "Window", 137 "menu.window": "Window",
138 "menu.window.close" : "Close", 138 "menu.window.close": "Close",
139 "menu.window.minimize" : "Minimize", 139 "menu.window.minimize": "Minimize",
140 "menu.workspaces" : "Workspaces", 140 "menu.workspaces": "Workspaces",
141 "menu.workspaces.addNewWorkspace" : "Add New Workspace...", 141 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Close workspace drawer", 142 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
143 "menu.workspaces.defaultWorkspace" : "All services", 143 "menu.workspaces.defaultWorkspace": "All services",
144 "menu.workspaces.openWorkspaceDrawer" : "Open workspace drawer", 144 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
145 "password.email.label" : "Email Address", 145 "password.email.label": "Email Address",
146 "password.headline" : "Reset password", 146 "password.headline": "Reset password",
147 "password.link.login" : "Sign in to your account", 147 "password.link.login": "Sign in to your account",
148 "password.link.signup" : "Create a free account", 148 "password.link.signup": "Create a free account",
149 "password.noUser" : "No user with that email address was found", 149 "password.noUser": "No user with that email address was found",
150 "password.submit.label" : "Submit", 150 "password.submit.label": "Submit",
151 "password.successInfo" : "Please check your email", 151 "password.successInfo": "Please check your email",
152 "premiumFeature.button.upgradeAccount" : "Upgrade account", 152 "premiumFeature.button.upgradeAccount": "Upgrade account",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "Reload {name}", 190 "service.crashHandler.action": "Reload {name}",
191 "service.crashHandler.autoReload" : "Trying to automatically restore {name} in {seconds} seconds", 191 "service.crashHandler.autoReload": "Trying to automatically restore {name} in {seconds} seconds",
192 "service.crashHandler.headline" : "Oh no!", 192 "service.crashHandler.headline": "Oh no!",
193 "service.crashHandler.text" : "{name} has caused an error.", 193 "service.crashHandler.text": "{name} has caused an error.",
194 "service.disabledHandler.action" : "Enable {name}", 194 "service.disabledHandler.action": "Enable {name}",
195 "service.disabledHandler.headline" : "{name} is disabled", 195 "service.disabledHandler.headline": "{name} is disabled",
196 "service.errorHandler.action" : "Reload {name}", 196 "service.errorHandler.action": "Reload {name}",
197 "service.errorHandler.editAction" : "Edit {name}", 197 "service.errorHandler.editAction": "Edit {name}",
198 "service.errorHandler.headline" : "Oh no!", 198 "service.errorHandler.headline": "Oh no!",
199 "service.errorHandler.message" : "Error", 199 "service.errorHandler.message": "Error",
200 "service.errorHandler.text" : "{name} has failed to load.", 200 "service.errorHandler.text": "{name} has failed to load.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "Loading", 206 "service.webviewLoader.loading": "Loading",
207 "services.getStarted" : "Get started", 207 "services.getStarted": "Get started",
208 "services.welcome" : "Welcome to Franz", 208 "services.welcome": "Welcome to Ferdi",
209 "settings.account.account.editButton" : "Edit account", 209 "settings.account.account.editButton": "Edit account",
210 "settings.account.accountType.basic" : "Basic Account", 210 "settings.account.accountType.basic": "Basic Account",
211 "settings.account.accountType.premium" : "Premium Supporter Account", 211 "settings.account.accountType.premium": "Premium Supporter Account",
212 "settings.account.buttonSave" : "Update profile", 212 "settings.account.buttonSave": "Update profile",
213 "settings.account.deleteAccount" : "Delete account", 213 "settings.account.deleteAccount": "Delete account",
214 "settings.account.deleteEmailSent" : "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 214 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
215 "settings.account.deleteInfo" : "If you don't need your Franz account any longer, you can delete your account and all related data here.", 215 "settings.account.deleteInfo": "If you don't need your Ferdi account any longer, you can delete your account and all related data here.",
216 "settings.account.headline" : "Account", 216 "settings.account.headline": "Account",
217 "settings.account.headlineAccount" : "Account information", 217 "settings.account.headlineAccount": "Account information",
218 "settings.account.headlineDangerZone" : "Danger Zone", 218 "settings.account.headlineDangerZone": "Danger Zone",
219 "settings.account.headlineInvoices" : "Invoices", 219 "settings.account.headlineInvoices": "Invoices",
220 "settings.account.headlinePassword" : "Change password", 220 "settings.account.headlinePassword": "Change password",
221 "settings.account.headlineProfile" : "Update profile", 221 "settings.account.headlineProfile": "Update profile",
222 "settings.account.headlineSubscription" : "Your subscription", 222 "settings.account.headlineSubscription": "Your subscription",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "Download", 225 "settings.account.invoiceDownload": "Download",
226 "settings.account.manageSubscription.label" : "Manage your subscription", 226 "settings.account.manageSubscription.label": "Manage your subscription",
227 "settings.account.successInfo" : "Your changes have been saved", 227 "settings.account.successInfo": "Your changes have been saved",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "Try again", 231 "settings.account.tryReloadServices": "Try again",
232 "settings.account.tryReloadUserInfoRequest" : "Try again", 232 "settings.account.tryReloadUserInfoRequest": "Try again",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "Could not load user information", 234 "settings.account.userInfoRequestFailed": "Could not load user information",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "Clear cache", 236 "settings.app.buttonClearAllCache": "Clear cache",
237 "settings.app.buttonInstallUpdate" : "Mag restart at i-install ang update", 237 "settings.app.buttonInstallUpdate": "Mag restart at i-install ang update",
238 "settings.app.buttonSearchForUpdate" : "Check for updates", 238 "settings.app.buttonSearchForUpdate": "Check for updates",
239 "settings.app.cacheInfo" : "Franz cache is currently using {size} of disk space.", 239 "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.",
240 "settings.app.currentVersion" : "Current version:", 240 "settings.app.currentVersion": "Current version:",
241 "settings.app.form.autoLaunchInBackground" : "Open in background", 241 "settings.app.form.autoLaunchInBackground": "Open in background",
242 "settings.app.form.autoLaunchOnStart" : "Launch Franz on start", 242 "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start",
243 "settings.app.form.beta" : "Include beta versions", 243 "settings.app.form.beta": "Include beta versions",
244 "settings.app.form.darkMode" : "Join the Dark Side", 244 "settings.app.form.darkMode": "Join the Dark Side",
245 "settings.app.form.enableGPUAcceleration" : "Enable GPU Acceleration", 245 "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration",
246 "settings.app.form.enableSpellchecking" : "Enable spell checking", 246 "settings.app.form.enableSpellchecking": "Enable spell checking",
247 "settings.app.form.enableSystemTray" : "Show Franz in system tray", 247 "settings.app.form.enableSystemTray": "Show Ferdi in system tray",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "Language", 250 "settings.app.form.language": "Language",
251 "settings.app.form.minimizeToSystemTray" : "Minimize Franz to system tray", 251 "settings.app.form.minimizeToSystemTray": "Minimize Ferdi to system tray",
252 "settings.app.form.runInBackground" : "Keep Franz in background when closing the window", 252 "settings.app.form.runInBackground": "Keep Ferdi in background when closing the window",
253 "settings.app.form.showDisabledServices" : "Display disabled services tabs", 253 "settings.app.form.showDisabledServices": "Display disabled services tabs",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Show unread message badge when notifications are disabled", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
255 "settings.app.headline" : "Settings", 255 "settings.app.headline": "Settings",
256 "settings.app.headlineAdvanced" : "Advanced", 256 "settings.app.headlineAdvanced": "Advanced",
257 "settings.app.headlineAppearance" : "Appearance", 257 "settings.app.headlineAppearance": "Appearance",
258 "settings.app.headlineGeneral" : "General", 258 "settings.app.headlineGeneral": "General",
259 "settings.app.headlineLanguage" : "Language", 259 "settings.app.headlineLanguage": "Language",
260 "settings.app.headlineUpdates" : "Updates", 260 "settings.app.headlineUpdates": "Updates",
261 "settings.app.languageDisclaimer" : "Official translations are English & German. All other languages are community based translations.", 261 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
262 "settings.app.restartRequired" : "Changes require restart", 262 "settings.app.restartRequired": "Changes require restart",
263 "settings.app.subheadlineCache" : "Cache", 263 "settings.app.subheadlineCache": "Cache",
264 "settings.app.translationHelp" : "Help us to translate Franz into your language.", 264 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
265 "settings.app.updateStatusAvailable" : "Update available, downloading...", 265 "settings.app.updateStatusAvailable": "Update available, downloading...",
266 "settings.app.updateStatusSearching" : "Is searching for update", 266 "settings.app.updateStatusSearching": "Is searching for update",
267 "settings.app.updateStatusUpToDate" : "You are using the latest version of Franz", 267 "settings.app.updateStatusUpToDate": "You are using the latest version of Ferdi",
268 "settings.invite.headline" : "Invite Friends", 268 "settings.invite.headline": "Invite Friends",
269 "settings.navigation.account" : "Account", 269 "settings.navigation.account": "Account",
270 "settings.navigation.availableServices" : "Available services", 270 "settings.navigation.availableServices": "Available services",
271 "settings.navigation.inviteFriends" : "Invite Friends", 271 "settings.navigation.inviteFriends": "Invite Friends",
272 "settings.navigation.logout" : "Logout", 272 "settings.navigation.logout": "Logout",
273 "settings.navigation.settings" : "Settings", 273 "settings.navigation.settings": "Settings",
274 "settings.navigation.team" : "Manage Team", 274 "settings.navigation.team": "Manage Team",
275 "settings.navigation.yourServices" : "Your services", 275 "settings.navigation.yourServices": "Your services",
276 "settings.navigation.yourWorkspaces" : "Your workspaces", 276 "settings.navigation.yourWorkspaces": "Your workspaces",
277 "settings.recipes.all" : "All services", 277 "settings.recipes.all": "All services",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "Available services", 285 "settings.recipes.headline": "Available services",
286 "settings.recipes.missingService" : "Missing a service?", 286 "settings.recipes.missingService": "Missing a service?",
287 "settings.recipes.mostPopular" : "Most popular", 287 "settings.recipes.mostPopular": "Most popular",
288 "settings.recipes.nothingFound" : "Sorry, but no service matched your search term.", 288 "settings.recipes.nothingFound": "Sorry, but no service matched your search term.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Service successfully added", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Service successfully added",
290 "settings.searchService" : "Search service", 290 "settings.searchService": "Search service",
291 "settings.service.error.goBack" : "Back to services", 291 "settings.service.error.goBack": "Back to services",
292 "settings.service.error.headline" : "Error", 292 "settings.service.error.headline": "Error",
293 "settings.service.error.message" : "Could not load service recipe.", 293 "settings.service.error.message": "Could not load service recipe.",
294 "settings.service.form.addServiceHeadline" : "Add {name}", 294 "settings.service.form.addServiceHeadline": "Add {name}",
295 "settings.service.form.availableServices" : "Available services", 295 "settings.service.form.availableServices": "Available services",
296 "settings.service.form.customUrl" : "Custom server", 296 "settings.service.form.customUrl": "Custom server",
297 "settings.service.form.customUrlPremiumInfo" : "To add self hosted services, you need a Franz Premium Supporter Account.", 297 "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.",
298 "settings.service.form.customUrlUpgradeAccount" : "Upgrade your account", 298 "settings.service.form.customUrlUpgradeAccount": "Upgrade your account",
299 "settings.service.form.customUrlValidationError" : "Could not validate custom {name} server.", 299 "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.",
300 "settings.service.form.deleteButton" : "Delete service", 300 "settings.service.form.deleteButton": "Delete service",
301 "settings.service.form.editServiceHeadline" : "Edit {name}", 301 "settings.service.form.editServiceHeadline": "Edit {name}",
302 "settings.service.form.enableAudio" : "Enable audio", 302 "settings.service.form.enableAudio": "Enable audio",
303 "settings.service.form.enableBadge" : "Show unread message badges", 303 "settings.service.form.enableBadge": "Show unread message badges",
304 "settings.service.form.enableDarkMode" : "Enable Dark Mode", 304 "settings.service.form.enableDarkMode": "Enable Dark Mode",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "Enable notifications", 306 "settings.service.form.enableNotification": "Enable notifications",
307 "settings.service.form.enableService" : "Enable service", 307 "settings.service.form.enableService": "Enable service",
308 "settings.service.form.headlineBadges" : "Unread message badges", 308 "settings.service.form.headlineBadges": "Unread message badges",
309 "settings.service.form.headlineGeneral" : "General", 309 "settings.service.form.headlineGeneral": "General",
310 "settings.service.form.headlineNotifications" : "Notifications", 310 "settings.service.form.headlineNotifications": "Notifications",
311 "settings.service.form.icon" : "Custom icon", 311 "settings.service.form.icon": "Custom icon",
312 "settings.service.form.iconDelete" : "Delete", 312 "settings.service.form.iconDelete": "Delete",
313 "settings.service.form.iconUpload" : "Drop your image, or click here", 313 "settings.service.form.iconUpload": "Drop your image, or click here",
314 "settings.service.form.indirectMessageInfo" : "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "Show message badge for all new messages", 315 "settings.service.form.indirectMessages": "Show message badge for all new messages",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "When disabled, all notification sounds and audio playback are muted", 317 "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted",
318 "settings.service.form.name" : "Name", 318 "settings.service.form.name": "Name",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS Proxy Settings", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
320 "settings.service.form.proxy.host" : "Proxy Host\/IP", 320 "settings.service.form.proxy.host": "Proxy Host/IP",
321 "settings.service.form.proxy.info" : "Proxy settings will not synced with the Franz servers.", 321 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
322 "settings.service.form.proxy.isEnabled" : "Use Proxy", 322 "settings.service.form.proxy.isEnabled": "Use Proxy",
323 "settings.service.form.proxy.password" : "Password (optional)", 323 "settings.service.form.proxy.password": "Password (optional)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Please restart Franz after changing proxy Settings.", 325 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
326 "settings.service.form.proxy.user" : "User (optional)", 326 "settings.service.form.proxy.user": "User (optional)",
327 "settings.service.form.saveButton" : "Save service", 327 "settings.service.form.saveButton": "Save service",
328 "settings.service.form.tabHosted" : "Hosted", 328 "settings.service.form.tabHosted": "Hosted",
329 "settings.service.form.tabOnPremise" : "Self hosted ⭐️", 329 "settings.service.form.tabOnPremise": "Self hosted ⭐️",
330 "settings.service.form.team" : "Team", 330 "settings.service.form.team": "Team",
331 "settings.service.form.useHostedService" : "Use the hosted {name} service.", 331 "settings.service.form.useHostedService": "Use the hosted {name} service.",
332 "settings.service.form.yourServices" : "Your services", 332 "settings.service.form.yourServices": "Your services",
333 "settings.services.deletedInfo" : "Service has been deleted", 333 "settings.services.deletedInfo": "Service has been deleted",
334 "settings.services.discoverServices" : "Discover services", 334 "settings.services.discoverServices": "Discover services",
335 "settings.services.headline" : "Your services", 335 "settings.services.headline": "Your services",
336 "settings.services.noServicesAdded" : "You haven't added any services yet.", 336 "settings.services.noServicesAdded": "You haven't added any services yet.",
337 "settings.services.servicesRequestFailed" : "Could not load your services", 337 "settings.services.servicesRequestFailed": "Could not load your services",
338 "settings.services.tooltip.isDisabled" : "Service is disabled", 338 "settings.services.tooltip.isDisabled": "Service is disabled",
339 "settings.services.tooltip.isMuted" : "All sounds are muted", 339 "settings.services.tooltip.isMuted": "All sounds are muted",
340 "settings.services.tooltip.notificationsDisabled" : "Notifications are disabled", 340 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled",
341 "settings.services.updatedInfo" : "Your changes have been saved", 341 "settings.services.updatedInfo": "Your changes have been saved",
342 "settings.team.contentHeadline" : "Franz for Teams", 342 "settings.team.contentHeadline": "Franz for Teams",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "Team", 344 "settings.team.headline": "Team",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "Manage your Team on meetfranz.com", 346 "settings.team.manageAction": "Manage your Team on meetfranz.com",
347 "settings.team.upgradeAction" : "Upgrade your Account", 347 "settings.team.upgradeAction": "Upgrade your Account",
348 "settings.user.form.accountType.company" : "Company", 348 "settings.user.form.accountType.company": "Company",
349 "settings.user.form.accountType.individual" : "Individual", 349 "settings.user.form.accountType.individual": "Individual",
350 "settings.user.form.accountType.label" : "Account type", 350 "settings.user.form.accountType.label": "Account type",
351 "settings.user.form.accountType.non-profit" : "Non-Profit", 351 "settings.user.form.accountType.non-profit": "Non-Profit",
352 "settings.user.form.currentPassword" : "Current password", 352 "settings.user.form.currentPassword": "Current password",
353 "settings.user.form.email" : "Email", 353 "settings.user.form.email": "Email",
354 "settings.user.form.firstname" : "First Name", 354 "settings.user.form.firstname": "First Name",
355 "settings.user.form.lastname" : "Last Name", 355 "settings.user.form.lastname": "Last Name",
356 "settings.user.form.newPassword" : "New password", 356 "settings.user.form.newPassword": "New password",
357 "settings.workspace.add.form.name" : "Name", 357 "settings.workspace.add.form.name": "Name",
358 "settings.workspace.add.form.submitButton" : "Create workspace", 358 "settings.workspace.add.form.submitButton": "Create workspace",
359 "settings.workspace.form.buttonDelete" : "Delete workspace", 359 "settings.workspace.form.buttonDelete": "Delete workspace",
360 "settings.workspace.form.buttonSave" : "Save workspace", 360 "settings.workspace.form.buttonSave": "Save workspace",
361 "settings.workspace.form.name" : "Name", 361 "settings.workspace.form.name": "Name",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Services in this Workspace", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
363 "settings.workspace.form.yourWorkspaces" : "Your workspaces", 363 "settings.workspace.form.yourWorkspaces": "Your workspaces",
364 "settings.workspaces.deletedInfo" : "Workspace has been deleted", 364 "settings.workspaces.deletedInfo": "Workspace has been deleted",
365 "settings.workspaces.headline" : "Your workspaces", 365 "settings.workspaces.headline": "Your workspaces",
366 "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", 366 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
367 "settings.workspaces.tryReloadWorkspaces" : "Try again", 367 "settings.workspaces.tryReloadWorkspaces": "Try again",
368 "settings.workspaces.updatedInfo" : "Your changes have been saved", 368 "settings.workspaces.updatedInfo": "Your changes have been saved",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", 371 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "Add new service", 375 "sidebar.addNewService": "Add new service",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", 377 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
378 "sidebar.muteApp" : "Disable notifications & audio", 378 "sidebar.muteApp": "Disable notifications & audio",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "Open workspace drawer", 380 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
381 "sidebar.settings" : "Settings", 381 "sidebar.settings": "Settings",
382 "sidebar.unmuteApp" : "Enable notifications & audio", 382 "sidebar.unmuteApp": "Enable notifications & audio",
383 "signup.email.label" : "Email Address", 383 "signup.email.label": "Email Address",
384 "signup.emailDuplicate" : "A user with that email address already exists", 384 "signup.emailDuplicate": "A user with that email address already exists",
385 "signup.firstname.label" : "First Name", 385 "signup.firstname.label": "First Name",
386 "signup.headline" : "Sign up", 386 "signup.headline": "Sign up",
387 "signup.lastname.label" : "Last Name", 387 "signup.lastname.label": "Last Name",
388 "signup.legal.info" : "By creating a Franz account you accept the", 388 "signup.legal.info": "By creating a Ferdi account you accept the",
389 "signup.legal.privacy" : "Privacy Statement", 389 "signup.legal.privacy": "Privacy Statement",
390 "signup.legal.terms" : "Terms of service", 390 "signup.legal.terms": "Terms of service",
391 "signup.link.login" : "Already have an account, sign in?", 391 "signup.link.login": "Already have an account, sign in?",
392 "signup.password.label" : "Password", 392 "signup.password.label": "Password",
393 "signup.submit.label" : "Create account", 393 "signup.submit.label": "Create account",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "Cancel", 405 "subscriptionPopup.buttonCancel": "Cancel",
406 "subscriptionPopup.buttonDone" : "Done", 406 "subscriptionPopup.buttonDone": "Done",
407 "tabs.item.deleteService" : "Delete service", 407 "tabs.item.deleteService": "Delete service",
408 "tabs.item.disableAudio" : "Disable audio", 408 "tabs.item.disableAudio": "Disable audio",
409 "tabs.item.disableNotifications" : "Disable notifications", 409 "tabs.item.disableNotifications": "Disable notifications",
410 "tabs.item.disableService" : "Disable service", 410 "tabs.item.disableService": "Disable service",
411 "tabs.item.edit" : "Edit", 411 "tabs.item.edit": "Edit",
412 "tabs.item.enableAudio" : "Enable audio", 412 "tabs.item.enableAudio": "Enable audio",
413 "tabs.item.enableNotification" : "Enable notifications", 413 "tabs.item.enableNotification": "Enable notifications",
414 "tabs.item.enableService" : "Enable service", 414 "tabs.item.enableService": "Enable service",
415 "tabs.item.reload" : "Reload", 415 "tabs.item.reload": "Reload",
416 "validation.email" : "{field} is not valid", 416 "validation.email": "{field} is not valid",
417 "validation.minLength" : "{field} should be at least {length} characters long", 417 "validation.minLength": "{field} should be at least {length} characters long",
418 "validation.oneRequired" : "At least one is required", 418 "validation.oneRequired": "At least one is required",
419 "validation.required" : "{field} is required", 419 "validation.required": "{field} is required",
420 "validation.url" : "{field} is not a valid URL", 420 "validation.url": "{field} is not a valid URL",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "Reload", 425 "webControls.reload": "Reload",
426 "welcome.loginButton" : "Login to your account", 426 "welcome.loginButton": "Login to your account",
427 "welcome.signupButton" : "Create a free account", 427 "welcome.signupButton": "Create a free account",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "All services", 429 "workspaceDrawer.allServices": "All services",
430 "workspaceDrawer.headline" : "Workspaces", 430 "workspaceDrawer.headline": "Workspaces",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json
index 183494a77..68a81f959 100644
--- a/src/i18n/locales/fr.json
+++ b/src/i18n/locales/fr.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Passez à Ferdi Professionnel", 279 "settings.account.upgradeToPro.label": "Passez à Ferdi Professionnel",
280 "settings.account.userInfoRequestFailed": "Impossible de charger les informations de l'utilisateur", 280 "settings.account.userInfoRequestFailed": "Impossible de charger les informations de l'utilisateur",
281 "settings.account.yourLicense": "Votre licence Ferdi", 281 "settings.account.yourLicense": "Votre licence Ferdi",
282 "settings.app.accentColorInfo": "Écrivez votre couleur d'accentuation dans un format compatible avec CSS. (Par défaut : #7367f0)", 282 "settings.app.accentColorInfo": "Écrivez votre couleur d'accentuation dans un format compatible avec CSS. (Par défaut : {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Vider le cache", 283 "settings.app.buttonClearAllCache": "Vider le cache",
284 "settings.app.buttonInstallUpdate": "Redémarrer et installer la mise à jour", 284 "settings.app.buttonInstallUpdate": "Redémarrer et installer la mise à jour",
285 "settings.app.buttonSearchForUpdate": "Vérifier les mises à jour", 285 "settings.app.buttonSearchForUpdate": "Vérifier les mises à jour",
diff --git a/src/i18n/locales/ga.json b/src/i18n/locales/ga.json
index 47d65cc0e..0998029a1 100644
--- a/src/i18n/locales/ga.json
+++ b/src/i18n/locales/ga.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Ní féidir eolas úsáideora a lódáil", 280 "settings.account.userInfoRequestFailed": "Ní féidir eolas úsáideora a lódáil",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Glan taisce", 283 "settings.app.buttonClearAllCache": "Glan taisce",
284 "settings.app.buttonInstallUpdate": "Atosaigh ⁊ suiteáil nuashonrú", 284 "settings.app.buttonInstallUpdate": "Atosaigh ⁊ suiteáil nuashonrú",
285 "settings.app.buttonSearchForUpdate": "Cuardaigh le nuashonruithe", 285 "settings.app.buttonSearchForUpdate": "Cuardaigh le nuashonruithe",
diff --git a/src/i18n/locales/he.json b/src/i18n/locales/he.json
index 483af95b8..f9fc9fc4f 100644
--- a/src/i18n/locales/he.json
+++ b/src/i18n/locales/he.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "שדרג לגרסת פרדי מקצועית", 279 "settings.account.upgradeToPro.label": "שדרג לגרסת פרדי מקצועית",
280 "settings.account.userInfoRequestFailed": "אי אפשר לטעון את פרטי המשתמש", 280 "settings.account.userInfoRequestFailed": "אי אפשר לטעון את פרטי המשתמש",
281 "settings.account.yourLicense": "רישיון הפרדי שלך", 281 "settings.account.yourLicense": "רישיון הפרדי שלך",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "ניקוי המטמון", 283 "settings.app.buttonClearAllCache": "ניקוי המטמון",
284 "settings.app.buttonInstallUpdate": "הפעל מחדש והתקן עדכונים", 284 "settings.app.buttonInstallUpdate": "הפעל מחדש והתקן עדכונים",
285 "settings.app.buttonSearchForUpdate": "חפש עדכונים", 285 "settings.app.buttonSearchForUpdate": "חפש עדכונים",
diff --git a/src/i18n/locales/hi.json b/src/i18n/locales/hi.json
index 5954daa86..2372494e5 100644
--- a/src/i18n/locales/hi.json
+++ b/src/i18n/locales/hi.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "पुन: लोड करें", 2 "app.errorHandler.action": "पुन: लोड करें",
3 "app.errorHandler.headline" : "कुछ तो गड़बड़ है, दया", 3 "app.errorHandler.headline": "कुछ तो गड़बड़ है, दया",
4 "connectionLostBanner.cta" : "सेवा पुनः लोड करें", 4 "connectionLostBanner.cta": "सेवा पुनः लोड करें",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "फ्रांज़ के संस्करण {version} में बदलाव:", 7 "feature.announcements.changelog.headline": "फ्रांज़ के संस्करण {version} में बदलाव:",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "फ्रांज़ {seconds} सेकंड में जारी रहेगा।", 9 "feature.delayApp.text": "फ्रांज़ {seconds} सेकंड में जारी रहेगा।",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "खाते का उन्नयन करें", 14 "feature.delayApp.upgrade.actionShort": "खाते का उन्नयन करें",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "ईमेल के रूप में भेजें", 32 "feature.shareFranz.action.email": "ईमेल के रूप में भेजें",
33 "feature.shareFranz.action.facebook" : "फेसबुक पर सांझा करें", 33 "feature.shareFranz.action.facebook": "फेसबुक पर सांझा करें",
34 "feature.shareFranz.action.twitter" : "ट्विटर पर सांझा करें", 34 "feature.shareFranz.action.twitter": "ट्विटर पर सांझा करें",
35 "feature.shareFranz.headline" : "फ्रांज़ एक साथ बेहतर है!", 35 "feature.shareFranz.headline": "फ्रांज़ एक साथ बेहतर है!",
36 "feature.shareFranz.shareText.email" : "मैंने फ्रांज में {count} सेवाएं जोड़ी हैं! व्हाट्सएप, मैसेंजर, स्लैक, स्काइप के लिए मुफ्त ऐप www.meetfranz.com पर प्राप्त करें", 36 "feature.shareFranz.shareText.email": "मैंने फ्रांज में {count} सेवाएं जोड़ी हैं! व्हाट्सएप, मैसेंजर, स्लैक, स्काइप के लिए मुफ्त ऐप www.getferdi.com पर प्राप्त करें",
37 "feature.shareFranz.shareText.twitter" : "मैंने फ्रांज में {count} सेवाएं जोड़ी हैं! व्हाट्सएप, मैसेंजर, स्लैक, स्काइप के लिए मुफ्त ऐप www.meetfranz.com पर प्राप्त करें \/ cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "मैंने फ्रांज में {count} सेवाएं जोड़ी हैं! व्हाट्सएप, मैसेंजर, स्लैक, स्काइप के लिए मुफ्त ऐप www.getferdi.com पर प्राप्त करें / cc @FerdiMessenger",
38 "feature.shareFranz.text" : "अपने दोस्तों और सहकर्मियों को बताएं की फ्रांज़ कितना बढ़िया है और हमें इस बात को फैलाने में मदद करें।", 38 "feature.shareFranz.text": "अपने दोस्तों और सहकर्मियों को बताएं की फ्रांज़ कितना बढ़िया है और हमें इस बात को फैलाने में मदद करें।",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "फ्रांज़ ऑनलाइन सेवाओं से कनेक्ट नहीं किया जा सका", 49 "global.api.unhealthy": "फ्रांज़ ऑनलाइन सेवाओं से कनेक्ट नहीं किया जा सका",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "आप इंटरनेट से नहीं जुड़े हैं।", 51 "global.notConnectedToTheInternet": "आप इंटरनेट से नहीं जुड़े हैं।",
52 "global.spellchecker.useDefault" : "सिस्टम डिफ़ॉल्ट ({default}) का उपयोग करें", 52 "global.spellchecker.useDefault": "सिस्टम डिफ़ॉल्ट ({default}) का उपयोग करें",
53 "global.spellchecking.autodetect" : "स्वचालित रूप से भाषा का पता लगाएं", 53 "global.spellchecking.autodetect": "स्वचालित रूप से भाषा का पता लगाएं",
54 "global.spellchecking.autodetect.short" : "स्वचालित", 54 "global.spellchecking.autodetect.short": "स्वचालित",
55 "global.spellchecking.language" : "वर्तनी जाँच भाषा", 55 "global.spellchecking.language": "वर्तनी जाँच भाषा",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "अपनी फ्रांज़ 4 की सेवाओं का आयात करें", 57 "import.headline": "अपनी फ्रांज़ 4 की सेवाओं का आयात करें",
58 "import.notSupportedHeadline" : "सेवाएं अभी तक फ्रांज़ 5 में समर्थित नहीं हैं", 58 "import.notSupportedHeadline": "सेवाएं अभी तक फ्रांज़ 5 में समर्थित नहीं हैं",
59 "import.skip.label" : "मैं स्वयं सेवाएं जोड़ना चाहता हूं", 59 "import.skip.label": "मैं स्वयं सेवाएं जोड़ना चाहता हूं",
60 "import.submit.label" : "सेवाएं आयात करें", 60 "import.submit.label": "सेवाएं आयात करें",
61 "infobar.buttonChangelog" : "क्या-क्या नया है?", 61 "infobar.buttonChangelog": "क्या-क्या नया है?",
62 "infobar.buttonInstallUpdate" : "पुनरारंभ करें, और अद्यतन स्थापित करें", 62 "infobar.buttonInstallUpdate": "पुनरारंभ करें, और अद्यतन स्थापित करें",
63 "infobar.buttonReloadServices" : "सेवाओं को फिर से लोड करें", 63 "infobar.buttonReloadServices": "सेवाओं को फिर से लोड करें",
64 "infobar.requiredRequestsFailed" : "सेवाएं और उपयोगकर्ताओं की जानकारी लोड नहीं हो सकी", 64 "infobar.requiredRequestsFailed": "सेवाएं और उपयोगकर्ताओं की जानकारी लोड नहीं हो सकी",
65 "infobar.servicesUpdated" : "आपकी सेवाएं अपडेट कर दी गई हैं।", 65 "infobar.servicesUpdated": "आपकी सेवाएं अपडेट कर दी गई हैं।",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "फ्रांज़ के लिए एक नया अपडेट उपलब्ध है।", 67 "infobar.updateAvailable": "फ्रांज़ के लिए एक नया अपडेट उपलब्ध है।",
68 "invite.email.label" : "ईमेल पता", 68 "invite.email.label": "ईमेल पता",
69 "invite.headline.friends" : "अपने दोस्तों या सहयोगियों में से 3 को आमंत्रित करें", 69 "invite.headline.friends": "अपने दोस्तों या सहयोगियों में से 3 को आमंत्रित करें",
70 "invite.name.label" : "नाम", 70 "invite.name.label": "नाम",
71 "invite.skip.label" : "मैं इसे बाद में करना चाहता हूं", 71 "invite.skip.label": "मैं इसे बाद में करना चाहता हूं",
72 "invite.submit.label" : "आमंत्रण भेजें", 72 "invite.submit.label": "आमंत्रण भेजें",
73 "invite.successInfo" : "निमंत्रण सफलतापूर्वक भेजे गए", 73 "invite.successInfo": "निमंत्रण सफलतापूर्वक भेजे गए",
74 "login.email.label" : "ईमेल पता", 74 "login.email.label": "ईमेल पता",
75 "login.headline" : "लॉग इन करें", 75 "login.headline": "लॉग इन करें",
76 "login.invalidCredentials" : "ईमेल या पासवर्ड मान्य नहीं है", 76 "login.invalidCredentials": "ईमेल या पासवर्ड मान्य नहीं है",
77 "login.link.password" : "पासवर्ड रीसेट", 77 "login.link.password": "पासवर्ड रीसेट",
78 "login.link.signup" : "एक नि: शुल्क खाता बनाए", 78 "login.link.signup": "एक नि: शुल्क खाता बनाए",
79 "login.password.label" : "पासवर्ड", 79 "login.password.label": "पासवर्ड",
80 "login.serverLogout" : "आपका सत्र समाप्त हो गया है, कृपया फिर से लॉगिन करें।", 80 "login.serverLogout": "आपका सत्र समाप्त हो गया है, कृपया फिर से लॉगिन करें।",
81 "login.submit.label" : "लॉग इन करें", 81 "login.submit.label": "लॉग इन करें",
82 "login.tokenExpired" : "आपका सत्र समाप्त हो गया है, कृपया फिर से लॉगिन करें।", 82 "login.tokenExpired": "आपका सत्र समाप्त हो गया है, कृपया फिर से लॉगिन करें।",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "फ्रांज के बारे में", 85 "menu.app.about": "फ्रांज के बारे में",
86 "menu.app.announcement" : "नया क्या है?", 86 "menu.app.announcement": "नया क्या है?",
87 "menu.app.checkForUpdates" : "अद्यतन के लिए जाँचें...", 87 "menu.app.checkForUpdates": "अद्यतन के लिए जाँचें...",
88 "menu.app.hide" : "छिपाएं ", 88 "menu.app.hide": "छिपाएं ",
89 "menu.app.hideOthers" : "दूसरों को छिपाओ", 89 "menu.app.hideOthers": "दूसरों को छिपाओ",
90 "menu.app.quit" : "छोड़ो", 90 "menu.app.quit": "छोड़ो",
91 "menu.app.settings" : "सेटिंग्स", 91 "menu.app.settings": "सेटिंग्स",
92 "menu.app.unhide" : "सामने लाएँ", 92 "menu.app.unhide": "सामने लाएँ",
93 "menu.edit" : "संपादित करें", 93 "menu.edit": "संपादित करें",
94 "menu.edit.copy" : "प्रतिलिपि", 94 "menu.edit.copy": "प्रतिलिपि",
95 "menu.edit.cut" : "काटो", 95 "menu.edit.cut": "काटो",
96 "menu.edit.delete" : "मिटाओ", 96 "menu.edit.delete": "मिटाओ",
97 "menu.edit.emojiSymbols" : "इमोजी और प्रतीक", 97 "menu.edit.emojiSymbols": "इमोजी और प्रतीक",
98 "menu.edit.paste" : "चिपकाएं", 98 "menu.edit.paste": "चिपकाएं",
99 "menu.edit.pasteAndMatchStyle" : "पेस्ट और मैच स्टाइल", 99 "menu.edit.pasteAndMatchStyle": "पेस्ट और मैच स्टाइल",
100 "menu.edit.redo" : "फिर से करना", 100 "menu.edit.redo": "फिर से करना",
101 "menu.edit.selectAll" : "सभी का चयन करे", 101 "menu.edit.selectAll": "सभी का चयन करे",
102 "menu.edit.speech" : "भाषण", 102 "menu.edit.speech": "भाषण",
103 "menu.edit.startDictation" : "श्रुतलेख शुरू करें", 103 "menu.edit.startDictation": "श्रुतलेख शुरू करें",
104 "menu.edit.startSpeaking" : "बोलना शुरू करें", 104 "menu.edit.startSpeaking": "बोलना शुरू करें",
105 "menu.edit.stopSpeaking" : "बोलना बंद करें", 105 "menu.edit.stopSpeaking": "बोलना बंद करें",
106 "menu.edit.undo" : "पूर्ववत् करें", 106 "menu.edit.undo": "पूर्ववत् करें",
107 "menu.file" : "फ़ाइल", 107 "menu.file": "फ़ाइल",
108 "menu.help" : "मदद", 108 "menu.help": "मदद",
109 "menu.help.changelog" : "चेंजलॉग", 109 "menu.help.changelog": "चेंजलॉग",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "अधिक जानें", 113 "menu.help.learnMore": "अधिक जानें",
114 "menu.help.privacy" : "प्राइवेसी स्टेटमेंट", 114 "menu.help.privacy": "प्राइवेसी स्टेटमेंट",
115 "menu.help.support" : "सहयोग", 115 "menu.help.support": "सहयोग",
116 "menu.help.tos" : "सेवा की शर्तें", 116 "menu.help.tos": "सेवा की शर्तें",
117 "menu.services" : "सेवाएं", 117 "menu.services": "सेवाएं",
118 "menu.services.activatePreviousService" : "पिछली सेवा को सक्रिय करें", 118 "menu.services.activatePreviousService": "पिछली सेवा को सक्रिय करें",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "अगली सेवा सक्रिय करें", 121 "menu.services.setNextServiceActive": "अगली सेवा सक्रिय करें",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "दृश्य", 124 "menu.view": "दृश्य",
125 "menu.view.enterFullScreen" : "पूर्ण स्क्रीन में प्रवेश", 125 "menu.view.enterFullScreen": "पूर्ण स्क्रीन में प्रवेश",
126 "menu.view.exitFullScreen" : "पूर्ण स्क्रीन से निकलें", 126 "menu.view.exitFullScreen": "पूर्ण स्क्रीन से निकलें",
127 "menu.view.reloadFranz" : "फ्रांज़ को पुनः लोड", 127 "menu.view.reloadFranz": "फ्रांज़ को पुनः लोड",
128 "menu.view.reloadService" : "सेवा पुनः लोड करें", 128 "menu.view.reloadService": "सेवा पुनः लोड करें",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "वास्तविक आकार", 130 "menu.view.resetZoom": "वास्तविक आकार",
131 "menu.view.toggleDevTools" : "डेवलपर टूल टॉगल करें", 131 "menu.view.toggleDevTools": "डेवलपर टूल टॉगल करें",
132 "menu.view.toggleFullScreen" : "फुलस्क्रीन टॉगल करें", 132 "menu.view.toggleFullScreen": "फुलस्क्रीन टॉगल करें",
133 "menu.view.toggleServiceDevTools" : "सेवा डेवलपर उपकरण टॉगल करें", 133 "menu.view.toggleServiceDevTools": "सेवा डेवलपर उपकरण टॉगल करें",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "बड़ा करें", 135 "menu.view.zoomIn": "बड़ा करें",
136 "menu.view.zoomOut" : "छोटा करें", 136 "menu.view.zoomOut": "छोटा करें",
137 "menu.window" : "खिड़की", 137 "menu.window": "खिड़की",
138 "menu.window.close" : "बंद करें", 138 "menu.window.close": "बंद करें",
139 "menu.window.minimize" : "न्यूनतम करें", 139 "menu.window.minimize": "न्यूनतम करें",
140 "menu.workspaces" : "कार्यस्थान", 140 "menu.workspaces": "कार्यस्थान",
141 "menu.workspaces.addNewWorkspace" : "नया कार्यक्षेत्र जोड़ें ...", 141 "menu.workspaces.addNewWorkspace": "नया कार्यक्षेत्र जोड़ें ...",
142 "menu.workspaces.closeWorkspaceDrawer" : "कार्यक्षेत्र दराज को बंद करें", 142 "menu.workspaces.closeWorkspaceDrawer": "कार्यक्षेत्र दराज को बंद करें",
143 "menu.workspaces.defaultWorkspace" : "सभी सेवाएं", 143 "menu.workspaces.defaultWorkspace": "सभी सेवाएं",
144 "menu.workspaces.openWorkspaceDrawer" : "कार्यक्षेत्र दराज खोलें", 144 "menu.workspaces.openWorkspaceDrawer": "कार्यक्षेत्र दराज खोलें",
145 "password.email.label" : "ईमेल पता", 145 "password.email.label": "ईमेल पता",
146 "password.headline" : "पासवर्ड रीसेट", 146 "password.headline": "पासवर्ड रीसेट",
147 "password.link.login" : "अपने अकाउंट में लॉग इन करें", 147 "password.link.login": "अपने अकाउंट में लॉग इन करें",
148 "password.link.signup" : "एक नि: शुल्क खाता बनाए", 148 "password.link.signup": "एक नि: शुल्क खाता बनाए",
149 "password.noUser" : "उस ईमेल पते वाला कोई उपयोगकर्ता नहीं मिला", 149 "password.noUser": "उस ईमेल पते वाला कोई उपयोगकर्ता नहीं मिला",
150 "password.submit.label" : "जमा करें", 150 "password.submit.label": "जमा करें",
151 "password.successInfo" : "कृपया अपनी ईमेल देखें", 151 "password.successInfo": "कृपया अपनी ईमेल देखें",
152 "premiumFeature.button.upgradeAccount" : "खाते का उन्नयन करें", 152 "premiumFeature.button.upgradeAccount": "खाते का उन्नयन करें",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "कार्यस्थान", 168 "pricing.features.workspaces": "कार्यस्थान",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "{name} को पुनः लोड करें ", 190 "service.crashHandler.action": "{name} को पुनः लोड करें ",
191 "service.crashHandler.autoReload" : "{name} को {seconds} सेकंड में स्वचालित रूप से पुनर्स्थापित करने की कोशिश जारी है", 191 "service.crashHandler.autoReload": "{name} को {seconds} सेकंड में स्वचालित रूप से पुनर्स्थापित करने की कोशिश जारी है",
192 "service.crashHandler.headline" : "अरे नहीं!", 192 "service.crashHandler.headline": "अरे नहीं!",
193 "service.crashHandler.text" : "{name} में त्रुटि हुई है।", 193 "service.crashHandler.text": "{name} में त्रुटि हुई है।",
194 "service.disabledHandler.action" : "{name} सक्षम करें", 194 "service.disabledHandler.action": "{name} सक्षम करें",
195 "service.disabledHandler.headline" : "{name} अक्षम है", 195 "service.disabledHandler.headline": "{name} अक्षम है",
196 "service.errorHandler.action" : "{name} को पुनः लोड करें", 196 "service.errorHandler.action": "{name} को पुनः लोड करें",
197 "service.errorHandler.editAction" : "{name} को संपादित करें", 197 "service.errorHandler.editAction": "{name} को संपादित करें",
198 "service.errorHandler.headline" : "अरे नहीं!", 198 "service.errorHandler.headline": "अरे नहीं!",
199 "service.errorHandler.message" : "त्रुटि", 199 "service.errorHandler.message": "त्रुटि",
200 "service.errorHandler.text" : "{name} लोड करने में विफलता हुई ", 200 "service.errorHandler.text": "{name} लोड करने में विफलता हुई ",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "लोड हो रहा है", 206 "service.webviewLoader.loading": "लोड हो रहा है",
207 "services.getStarted" : "आरंभ करें", 207 "services.getStarted": "आरंभ करें",
208 "services.welcome" : "फ्रांज़ में आपका स्वागत है", 208 "services.welcome": "फ्रांज़ में आपका स्वागत है",
209 "settings.account.account.editButton" : "खाता संपादित करें", 209 "settings.account.account.editButton": "खाता संपादित करें",
210 "settings.account.accountType.basic" : "मूल खाता", 210 "settings.account.accountType.basic": "मूल खाता",
211 "settings.account.accountType.premium" : "प्रीमियम समर्थक खाता", 211 "settings.account.accountType.premium": "प्रीमियम समर्थक खाता",
212 "settings.account.buttonSave" : "प्रोफ़ाइल अपडेट करें", 212 "settings.account.buttonSave": "प्रोफ़ाइल अपडेट करें",
213 "settings.account.deleteAccount" : "खाता मिटाएं", 213 "settings.account.deleteAccount": "खाता मिटाएं",
214 "settings.account.deleteEmailSent" : "आपको अपने खाते को हटाने की पुष्टि करने के लिए एक लिंक प्राप्त हुआ है। आपके खाते और डेटा को पुनर्स्थापित नहीं किया जा सकता है!", 214 "settings.account.deleteEmailSent": "आपको अपने खाते को हटाने की पुष्टि करने के लिए एक लिंक प्राप्त हुआ है। आपके खाते और डेटा को पुनर्स्थापित नहीं किया जा सकता है!",
215 "settings.account.deleteInfo" : "यदि आपको अपने फ्रांज़ खाते की आवश्यकता नहीं है, तो आप यहां अपना खाता और संबंधित डेटा हटा सकते हैं।", 215 "settings.account.deleteInfo": "यदि आपको अपने फ्रांज़ खाते की आवश्यकता नहीं है, तो आप यहां अपना खाता और संबंधित डेटा हटा सकते हैं।",
216 "settings.account.headline" : "खाता", 216 "settings.account.headline": "खाता",
217 "settings.account.headlineAccount" : "खाते की जानकारी", 217 "settings.account.headlineAccount": "खाते की जानकारी",
218 "settings.account.headlineDangerZone" : "खतरे का क्षेत्र", 218 "settings.account.headlineDangerZone": "खतरे का क्षेत्र",
219 "settings.account.headlineInvoices" : "चालान", 219 "settings.account.headlineInvoices": "चालान",
220 "settings.account.headlinePassword" : "पासवर्ड बदलें", 220 "settings.account.headlinePassword": "पासवर्ड बदलें",
221 "settings.account.headlineProfile" : "प्रोफ़ाइल अपडेट करें", 221 "settings.account.headlineProfile": "प्रोफ़ाइल अपडेट करें",
222 "settings.account.headlineSubscription" : "आपकी सदस्यता", 222 "settings.account.headlineSubscription": "आपकी सदस्यता",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "डाउनलोड", 225 "settings.account.invoiceDownload": "डाउनलोड",
226 "settings.account.manageSubscription.label" : "अपनी सदस्यता प्रबंधित करें", 226 "settings.account.manageSubscription.label": "अपनी सदस्यता प्रबंधित करें",
227 "settings.account.successInfo" : "आपके परिवर्तनों को सहेजा गया है", 227 "settings.account.successInfo": "आपके परिवर्तनों को सहेजा गया है",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "फिर कोशिश करें", 231 "settings.account.tryReloadServices": "फिर कोशिश करें",
232 "settings.account.tryReloadUserInfoRequest" : "फिर कोशिश करें", 232 "settings.account.tryReloadUserInfoRequest": "फिर कोशिश करें",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "उपयोगकर्ता की जानकारी लोड नहीं हो सकी", 234 "settings.account.userInfoRequestFailed": "उपयोगकर्ता की जानकारी लोड नहीं हो सकी",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "कैश को साफ़ करें", 236 "settings.app.buttonClearAllCache": "कैश को साफ़ करें",
237 "settings.app.buttonInstallUpdate" : "पुनरारंभ करें, और अद्यतन स्थापित करें", 237 "settings.app.buttonInstallUpdate": "पुनरारंभ करें, और अद्यतन स्थापित करें",
238 "settings.app.buttonSearchForUpdate" : "अद्यतन के लिए खोजें", 238 "settings.app.buttonSearchForUpdate": "अद्यतन के लिए खोजें",
239 "settings.app.cacheInfo" : "फ्रांज़ कैश वर्तमान में आपके डिस्क का {size} उपयोग कर रहा है।", 239 "settings.app.cacheInfo": "फ्रांज़ कैश वर्तमान में आपके डिस्क का {size} उपयोग कर रहा है।",
240 "settings.app.currentVersion" : "वर्तमान संस्करण:", 240 "settings.app.currentVersion": "वर्तमान संस्करण:",
241 "settings.app.form.autoLaunchInBackground" : "पृष्ठभूमि में खोलें", 241 "settings.app.form.autoLaunchInBackground": "पृष्ठभूमि में खोलें",
242 "settings.app.form.autoLaunchOnStart" : "कंप्यूटर शुरू होते ही क्या फ्रांज़ भी लॉन्च होना चाहिए?", 242 "settings.app.form.autoLaunchOnStart": "कंप्यूटर शुरू होते ही क्या फ्रांज़ भी लॉन्च होना चाहिए?",
243 "settings.app.form.beta" : "बीटा संस्करण शामिल करें", 243 "settings.app.form.beta": "बीटा संस्करण शामिल करें",
244 "settings.app.form.darkMode" : "डार्क मोड सक्षम करें", 244 "settings.app.form.darkMode": "डार्क मोड सक्षम करें",
245 "settings.app.form.enableGPUAcceleration" : "GPU त्वरण सक्षम करें", 245 "settings.app.form.enableGPUAcceleration": "GPU त्वरण सक्षम करें",
246 "settings.app.form.enableSpellchecking" : "शब्द विन्यास सक्रिय करो", 246 "settings.app.form.enableSpellchecking": "शब्द विन्यास सक्रिय करो",
247 "settings.app.form.enableSystemTray" : "फ्रांज़ को सिस्टम ट्रे में दिखाएं", 247 "settings.app.form.enableSystemTray": "फ्रांज़ को सिस्टम ट्रे में दिखाएं",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "भाषा", 250 "settings.app.form.language": "भाषा",
251 "settings.app.form.minimizeToSystemTray" : "फ्रांज़ को सिस्टम ट्रे में न्यूनतम करें", 251 "settings.app.form.minimizeToSystemTray": "फ्रांज़ को सिस्टम ट्रे में न्यूनतम करें",
252 "settings.app.form.runInBackground" : "खिड़की बंद करते समय फ्रांज को पृष्ठभूमि में रखें", 252 "settings.app.form.runInBackground": "खिड़की बंद करते समय फ्रांज को पृष्ठभूमि में रखें",
253 "settings.app.form.showDisabledServices" : "अक्षम सेवाओं टैब प्रदर्शित करें", 253 "settings.app.form.showDisabledServices": "अक्षम सेवाओं टैब प्रदर्शित करें",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "जब सूचनाएं अक्षम हों तो अपठित संदेश बैज दिखाएं", 254 "settings.app.form.showMessagesBadgesWhenMuted": "जब सूचनाएं अक्षम हों तो अपठित संदेश बैज दिखाएं",
255 "settings.app.headline" : "सेटिंग्स", 255 "settings.app.headline": "सेटिंग्स",
256 "settings.app.headlineAdvanced" : "विकसित", 256 "settings.app.headlineAdvanced": "विकसित",
257 "settings.app.headlineAppearance" : "रूप", 257 "settings.app.headlineAppearance": "रूप",
258 "settings.app.headlineGeneral" : "सामान्य", 258 "settings.app.headlineGeneral": "सामान्य",
259 "settings.app.headlineLanguage" : "भाषा", 259 "settings.app.headlineLanguage": "भाषा",
260 "settings.app.headlineUpdates" : "अद्यतन", 260 "settings.app.headlineUpdates": "अद्यतन",
261 "settings.app.languageDisclaimer" : "आधिकारिक अनुवाद अंग्रेजी और जर्मन में हैं। अन्य सभी भाषाएँ समुदाय आधारित अनुवाद हैं।", 261 "settings.app.languageDisclaimer": "आधिकारिक अनुवाद अंग्रेजी और जर्मन में हैं। अन्य सभी भाषाएँ समुदाय आधारित अनुवाद हैं।",
262 "settings.app.restartRequired" : "परिवर्तनों को पुनरारंभ की आवश्यकता है", 262 "settings.app.restartRequired": "परिवर्तनों को पुनरारंभ की आवश्यकता है",
263 "settings.app.subheadlineCache" : "कैश", 263 "settings.app.subheadlineCache": "कैश",
264 "settings.app.translationHelp" : "आपकी भाषा में फ्रांज़ का अनुवाद करने में हमारी मदद करें।", 264 "settings.app.translationHelp": "आपकी भाषा में फ्रांज़ का अनुवाद करने में हमारी मदद करें।",
265 "settings.app.updateStatusAvailable" : "अद्यतन उपलब्ध है, डाउनलोड हो रहा है ...", 265 "settings.app.updateStatusAvailable": "अद्यतन उपलब्ध है, डाउनलोड हो रहा है ...",
266 "settings.app.updateStatusSearching" : "अद्यतन की खोज जारी है", 266 "settings.app.updateStatusSearching": "अद्यतन की खोज जारी है",
267 "settings.app.updateStatusUpToDate" : "आप फ्रांज़ के नवीनतम संस्करण का उपयोग कर रहे हैं", 267 "settings.app.updateStatusUpToDate": "आप फ्रांज़ के नवीनतम संस्करण का उपयोग कर रहे हैं",
268 "settings.invite.headline" : "मित्रों को आमंत्रित करें", 268 "settings.invite.headline": "मित्रों को आमंत्रित करें",
269 "settings.navigation.account" : "खाता", 269 "settings.navigation.account": "खाता",
270 "settings.navigation.availableServices" : "उपलब्ध सेवाएं", 270 "settings.navigation.availableServices": "उपलब्ध सेवाएं",
271 "settings.navigation.inviteFriends" : "मित्रों को आमंत्रित करें", 271 "settings.navigation.inviteFriends": "मित्रों को आमंत्रित करें",
272 "settings.navigation.logout" : "लॉग आउट", 272 "settings.navigation.logout": "लॉग आउट",
273 "settings.navigation.settings" : "सेटिंग्स", 273 "settings.navigation.settings": "सेटिंग्स",
274 "settings.navigation.team" : "टीम का प्रबंधन करें", 274 "settings.navigation.team": "टीम का प्रबंधन करें",
275 "settings.navigation.yourServices" : "आपकी सेवाएं", 275 "settings.navigation.yourServices": "आपकी सेवाएं",
276 "settings.navigation.yourWorkspaces" : "आपके कार्यक्षेत्र", 276 "settings.navigation.yourWorkspaces": "आपके कार्यक्षेत्र",
277 "settings.recipes.all" : "सभी सेवाएं", 277 "settings.recipes.all": "सभी सेवाएं",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "उपलब्ध सेवाएं", 285 "settings.recipes.headline": "उपलब्ध सेवाएं",
286 "settings.recipes.missingService" : "क्या कोई सेवा गुम है?", 286 "settings.recipes.missingService": "क्या कोई सेवा गुम है?",
287 "settings.recipes.mostPopular" : "सबसे लोकप्रिय", 287 "settings.recipes.mostPopular": "सबसे लोकप्रिय",
288 "settings.recipes.nothingFound" : "क्षमा करें, लेकिन आपके खोज शब्द से किसी भी सेवा का मिलान नहीं हुआ।", 288 "settings.recipes.nothingFound": "क्षमा करें, लेकिन आपके खोज शब्द से किसी भी सेवा का मिलान नहीं हुआ।",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "सेवा सफलतापूर्वक जोड़ी गई", 289 "settings.recipes.servicesSuccessfulAddedInfo": "सेवा सफलतापूर्वक जोड़ी गई",
290 "settings.searchService" : "खोज सेवा", 290 "settings.searchService": "खोज सेवा",
291 "settings.service.error.goBack" : "सेवाओं पर वापस", 291 "settings.service.error.goBack": "सेवाओं पर वापस",
292 "settings.service.error.headline" : "त्रुटि", 292 "settings.service.error.headline": "त्रुटि",
293 "settings.service.error.message" : "सेवा की रेसिपी लोड नहीं हो पायी।", 293 "settings.service.error.message": "सेवा की रेसिपी लोड नहीं हो पायी।",
294 "settings.service.form.addServiceHeadline" : "{name} जोड़ें", 294 "settings.service.form.addServiceHeadline": "{name} जोड़ें",
295 "settings.service.form.availableServices" : "उपलब्ध सेवाएं", 295 "settings.service.form.availableServices": "उपलब्ध सेवाएं",
296 "settings.service.form.customUrl" : "कस्टम सर्वर", 296 "settings.service.form.customUrl": "कस्टम सर्वर",
297 "settings.service.form.customUrlPremiumInfo" : "स्वयं की होस्ट की गई सेवाओं को जोड़ने के लिए, आपको फ्रांज प्रीमियम सपोर्टर अकाउंट की आवश्यकता है।", 297 "settings.service.form.customUrlPremiumInfo": "स्वयं की होस्ट की गई सेवाओं को जोड़ने के लिए, आपको फ्रांज प्रीमियम सपोर्टर अकाउंट की आवश्यकता है।",
298 "settings.service.form.customUrlUpgradeAccount" : "अपने खाते को अपग्रेड करें", 298 "settings.service.form.customUrlUpgradeAccount": "अपने खाते को अपग्रेड करें",
299 "settings.service.form.customUrlValidationError" : "कस्टम {name} सर्वर का मान्यकरण नहीं किया जा सका।", 299 "settings.service.form.customUrlValidationError": "कस्टम {name} सर्वर का मान्यकरण नहीं किया जा सका।",
300 "settings.service.form.deleteButton" : "सेवा हटाएँ", 300 "settings.service.form.deleteButton": "सेवा हटाएँ",
301 "settings.service.form.editServiceHeadline" : "{name} संपादित करें", 301 "settings.service.form.editServiceHeadline": "{name} संपादित करें",
302 "settings.service.form.enableAudio" : "ऑडियो सक्षम करें", 302 "settings.service.form.enableAudio": "ऑडियो सक्षम करें",
303 "settings.service.form.enableBadge" : "अपठित संदेश बैज दिखाएं", 303 "settings.service.form.enableBadge": "अपठित संदेश बैज दिखाएं",
304 "settings.service.form.enableDarkMode" : "डार्क मोड सक्षम करें", 304 "settings.service.form.enableDarkMode": "डार्क मोड सक्षम करें",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "सूचनाएँ सक्षम करें", 306 "settings.service.form.enableNotification": "सूचनाएँ सक्षम करें",
307 "settings.service.form.enableService" : "सेवा सक्षम करें", 307 "settings.service.form.enableService": "सेवा सक्षम करें",
308 "settings.service.form.headlineBadges" : "अपठित संदेश बैज", 308 "settings.service.form.headlineBadges": "अपठित संदेश बैज",
309 "settings.service.form.headlineGeneral" : "सामान्य", 309 "settings.service.form.headlineGeneral": "सामान्य",
310 "settings.service.form.headlineNotifications" : "सूचनाएँ", 310 "settings.service.form.headlineNotifications": "सूचनाएँ",
311 "settings.service.form.icon" : "कस्टम आइकॉन", 311 "settings.service.form.icon": "कस्टम आइकॉन",
312 "settings.service.form.iconDelete" : "मिटाएँ", 312 "settings.service.form.iconDelete": "मिटाएँ",
313 "settings.service.form.iconUpload" : "अपना फ़ोटो छोड़ें, या यहाँ क्लिक करें", 313 "settings.service.form.iconUpload": "अपना फ़ोटो छोड़ें, या यहाँ क्लिक करें",
314 "settings.service.form.indirectMessageInfo" : "आपको एक चैनल में सभी नए संदेशों के बारे में सूचित किया जाएगा, न केवल @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "आपको एक चैनल में सभी नए संदेशों के बारे में सूचित किया जाएगा, न केवल @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "सभी नए संदेशों के लिए संदेश बैज दिखाएं", 315 "settings.service.form.indirectMessages": "सभी नए संदेशों के लिए संदेश बैज दिखाएं",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "अक्षम होने पर, सभी सूचना ध्वनियाँ और ऑडियो प्लेबैक मौन रहेंगे ", 317 "settings.service.form.isMutedInfo": "अक्षम होने पर, सभी सूचना ध्वनियाँ और ऑडियो प्लेबैक मौन रहेंगे ",
318 "settings.service.form.name" : "नाम", 318 "settings.service.form.name": "नाम",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS प्रॉक्सी सेटिंग्स", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS प्रॉक्सी सेटिंग्स",
320 "settings.service.form.proxy.host" : "प्रॉक्सी होस्ट \/ आईपी", 320 "settings.service.form.proxy.host": "प्रॉक्सी होस्ट / आईपी",
321 "settings.service.form.proxy.info" : "प्रॉक्सी सेटिंग्स फ्रांज़ सर्वर के साथ सिंक नहीं होंगी।", 321 "settings.service.form.proxy.info": "प्रॉक्सी सेटिंग्स फ्रांज़ सर्वर के साथ सिंक नहीं होंगी।",
322 "settings.service.form.proxy.isEnabled" : "प्रॉक्सी का प्रयोग करें", 322 "settings.service.form.proxy.isEnabled": "प्रॉक्सी का प्रयोग करें",
323 "settings.service.form.proxy.password" : "पासवर्ड (वैकल्पिक)", 323 "settings.service.form.proxy.password": "पासवर्ड (वैकल्पिक)",
324 "settings.service.form.proxy.port" : "पोर्ट", 324 "settings.service.form.proxy.port": "पोर्ट",
325 "settings.service.form.proxy.restartInfo" : "प्रॉक्सी सेटिंग बदलने के बाद फ्रांज़ को पुनः आरंभ करें।", 325 "settings.service.form.proxy.restartInfo": "प्रॉक्सी सेटिंग बदलने के बाद फ्रांज़ को पुनः आरंभ करें।",
326 "settings.service.form.proxy.user" : "उपयोगकर्ता (वैकल्पिक)", 326 "settings.service.form.proxy.user": "उपयोगकर्ता (वैकल्पिक)",
327 "settings.service.form.saveButton" : "इस सेवा को सहेजें", 327 "settings.service.form.saveButton": "इस सेवा को सहेजें",
328 "settings.service.form.tabHosted" : "होस्ट किया गया", 328 "settings.service.form.tabHosted": "होस्ट किया गया",
329 "settings.service.form.tabOnPremise" : "स्वयं द्वारा होस्ट किया हुआ", 329 "settings.service.form.tabOnPremise": "स्वयं द्वारा होस्ट किया हुआ",
330 "settings.service.form.team" : "टीम", 330 "settings.service.form.team": "टीम",
331 "settings.service.form.useHostedService" : "होस्ट किये हुए {name} सेवा का उपयोग करें।", 331 "settings.service.form.useHostedService": "होस्ट किये हुए {name} सेवा का उपयोग करें।",
332 "settings.service.form.yourServices" : "आपकी सेवाएं", 332 "settings.service.form.yourServices": "आपकी सेवाएं",
333 "settings.services.deletedInfo" : "सेवा को हटा दिया गया है", 333 "settings.services.deletedInfo": "सेवा को हटा दिया गया है",
334 "settings.services.discoverServices" : "सेवाओं की खोज करें", 334 "settings.services.discoverServices": "सेवाओं की खोज करें",
335 "settings.services.headline" : "आपकी सेवाएं", 335 "settings.services.headline": "आपकी सेवाएं",
336 "settings.services.noServicesAdded" : "आपने अभी तक कोई सेवाएं नहीं जोड़ी है।", 336 "settings.services.noServicesAdded": "आपने अभी तक कोई सेवाएं नहीं जोड़ी है।",
337 "settings.services.servicesRequestFailed" : "आपकी सेवाएं लोड नहीं हो सकीं", 337 "settings.services.servicesRequestFailed": "आपकी सेवाएं लोड नहीं हो सकीं",
338 "settings.services.tooltip.isDisabled" : "सेवा अक्षम है", 338 "settings.services.tooltip.isDisabled": "सेवा अक्षम है",
339 "settings.services.tooltip.isMuted" : "सभी ध्वनियाँ मौन हैं", 339 "settings.services.tooltip.isMuted": "सभी ध्वनियाँ मौन हैं",
340 "settings.services.tooltip.notificationsDisabled" : "सूचनाएं अक्षम हैं", 340 "settings.services.tooltip.notificationsDisabled": "सूचनाएं अक्षम हैं",
341 "settings.services.updatedInfo" : "आपके परिवर्तनों को सहेजा गया है", 341 "settings.services.updatedInfo": "आपके परिवर्तनों को सहेजा गया है",
342 "settings.team.contentHeadline" : "टीमों के लिए फ्रांज़", 342 "settings.team.contentHeadline": "टीमों के लिए फ्रांज़",
343 "settings.team.copy" : "Franz for Teams आपको ईमेल आमंत्रण भेजकर और अपने खाते की प्राथमिकताओं में उनकी सदस्यता को प्रबंधित करके अपनी टीम में सह-कार्यकर्ताओं को आमंत्रित करने का विकल्प देता है। हर टीम के सदस्य के लिए अलग-अलग सदस्यताएँ सेट करने में समय बर्बाद न करें, कई चालान और विभिन्न बिलिंग चक्रों के बारे में भूल जाएं - एक टीम सभी के लिए !", 343 "settings.team.copy": "Franz for Teams आपको ईमेल आमंत्रण भेजकर और अपने खाते की प्राथमिकताओं में उनकी सदस्यता को प्रबंधित करके अपनी टीम में सह-कार्यकर्ताओं को आमंत्रित करने का विकल्प देता है। हर टीम के सदस्य के लिए अलग-अलग सदस्यताएँ सेट करने में समय बर्बाद न करें, कई चालान और विभिन्न बिलिंग चक्रों के बारे में भूल जाएं - एक टीम सभी के लिए !",
344 "settings.team.headline" : "टीम", 344 "settings.team.headline": "टीम",
345 "settings.team.intro" : "आप और आपकी टीम फ्रांज़ का उपयोग करते हैं? अब आप सभी सहयोगियों, दोस्तों या परिवार के सदस्यों के लिए प्रीमियम सदस्यता का प्रबंधन कर सकते हैं, जैसा कि आप चाहते हैं, सभी एक खाते के भीतर से।", 345 "settings.team.intro": "आप और आपकी टीम फ्रांज़ का उपयोग करते हैं? अब आप सभी सहयोगियों, दोस्तों या परिवार के सदस्यों के लिए प्रीमियम सदस्यता का प्रबंधन कर सकते हैं, जैसा कि आप चाहते हैं, सभी एक खाते के भीतर से।",
346 "settings.team.manageAction" : "अपनी टीम को meetfranz.com पर प्रबंधित करें", 346 "settings.team.manageAction": "अपनी टीम को meetfranz.com पर प्रबंधित करें",
347 "settings.team.upgradeAction" : "अपने खाते को अपग्रेड करें", 347 "settings.team.upgradeAction": "अपने खाते को अपग्रेड करें",
348 "settings.user.form.accountType.company" : "कंपनी", 348 "settings.user.form.accountType.company": "कंपनी",
349 "settings.user.form.accountType.individual" : "व्यक्तिगत खाता", 349 "settings.user.form.accountType.individual": "व्यक्तिगत खाता",
350 "settings.user.form.accountType.label" : "खाते का प्रकार", 350 "settings.user.form.accountType.label": "खाते का प्रकार",
351 "settings.user.form.accountType.non-profit" : "गैर लाभ", 351 "settings.user.form.accountType.non-profit": "गैर लाभ",
352 "settings.user.form.currentPassword" : "मौजूदा पासवर्ड", 352 "settings.user.form.currentPassword": "मौजूदा पासवर्ड",
353 "settings.user.form.email" : "ईमेल", 353 "settings.user.form.email": "ईमेल",
354 "settings.user.form.firstname" : "पहला नाम", 354 "settings.user.form.firstname": "पहला नाम",
355 "settings.user.form.lastname" : "उपनाम", 355 "settings.user.form.lastname": "उपनाम",
356 "settings.user.form.newPassword" : "नया पासवर्ड", 356 "settings.user.form.newPassword": "नया पासवर्ड",
357 "settings.workspace.add.form.name" : "नाम", 357 "settings.workspace.add.form.name": "नाम",
358 "settings.workspace.add.form.submitButton" : "कार्यक्षेत्र बनाएँ", 358 "settings.workspace.add.form.submitButton": "कार्यक्षेत्र बनाएँ",
359 "settings.workspace.form.buttonDelete" : "कार्यक्षेत्र हटाएं", 359 "settings.workspace.form.buttonDelete": "कार्यक्षेत्र हटाएं",
360 "settings.workspace.form.buttonSave" : "कार्यक्षेत्र सहेजें", 360 "settings.workspace.form.buttonSave": "कार्यक्षेत्र सहेजें",
361 "settings.workspace.form.name" : "नाम", 361 "settings.workspace.form.name": "नाम",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "इस कार्यक्षेत्र में सेवाएँ", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "इस कार्यक्षेत्र में सेवाएँ",
363 "settings.workspace.form.yourWorkspaces" : "आपके कार्यक्षेत्र", 363 "settings.workspace.form.yourWorkspaces": "आपके कार्यक्षेत्र",
364 "settings.workspaces.deletedInfo" : "कार्यक्षेत्र हटा दिया गया है", 364 "settings.workspaces.deletedInfo": "कार्यक्षेत्र हटा दिया गया है",
365 "settings.workspaces.headline" : "आपके कार्यक्षेत्र", 365 "settings.workspaces.headline": "आपके कार्यक्षेत्र",
366 "settings.workspaces.noWorkspacesAdded" : "आपने अभी तक कोई कार्यस्थान नहीं जोड़ा है।", 366 "settings.workspaces.noWorkspacesAdded": "आपने अभी तक कोई कार्यस्थान नहीं जोड़ा है।",
367 "settings.workspaces.tryReloadWorkspaces" : "फिर कोशिश करें", 367 "settings.workspaces.tryReloadWorkspaces": "फिर कोशिश करें",
368 "settings.workspaces.updatedInfo" : "आपके परिवर्तनों को सहेजा गया है", 368 "settings.workspaces.updatedInfo": "आपके परिवर्तनों को सहेजा गया है",
369 "settings.workspaces.workspaceFeatureHeadline" : "कम अधिक है: फ्रांज़ कार्यस्थानों का परिचय", 369 "settings.workspaces.workspaceFeatureHeadline": "कम अधिक है: फ्रांज़ कार्यस्थानों का परिचय",
370 "settings.workspaces.workspaceFeatureInfo" : "फ्रांज वर्कस्पेस आपको इस बात पर ध्यान केंद्रित करने देता है कि अभी क्या महत्वपूर्ण है। सेवाओं के विभिन्न समूहों को तैयार करें और किसी भी समय उनके बीच आसानी से स्विच करें। आप यह तय करते हैं कि आपको कब और कहाँ किन सेवाओं की ज़रूरत है, इसलिए हम आपको अपने खेल में शीर्ष पर बने रहने में मदद कर सकते हैं - या जब भी आप चाहें, आसानी से काम बंद कर सकते हैं।", 370 "settings.workspaces.workspaceFeatureInfo": "फ्रांज वर्कस्पेस आपको इस बात पर ध्यान केंद्रित करने देता है कि अभी क्या महत्वपूर्ण है। सेवाओं के विभिन्न समूहों को तैयार करें और किसी भी समय उनके बीच आसानी से स्विच करें। आप यह तय करते हैं कि आपको कब और कहाँ किन सेवाओं की ज़रूरत है, इसलिए हम आपको अपने खेल में शीर्ष पर बने रहने में मदद कर सकते हैं - या जब भी आप चाहें, आसानी से काम बंद कर सकते हैं।",
371 "settings.workspaces.workspacesRequestFailed" : "आपके कार्यस्थानों को लोड नहीं किया जा सका", 371 "settings.workspaces.workspacesRequestFailed": "आपके कार्यस्थानों को लोड नहीं किया जा सका",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "नई सेवा जोड़ें", 375 "sidebar.addNewService": "नई सेवा जोड़ें",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "कार्यक्षेत्र दराज बंद करें", 377 "sidebar.closeWorkspaceDrawer": "कार्यक्षेत्र दराज बंद करें",
378 "sidebar.muteApp" : "सूचनाएं और ऑडियो अक्षम करें", 378 "sidebar.muteApp": "सूचनाएं और ऑडियो अक्षम करें",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "कार्यक्षेत्र दराज खोलें", 380 "sidebar.openWorkspaceDrawer": "कार्यक्षेत्र दराज खोलें",
381 "sidebar.settings" : "सेटिंग्स", 381 "sidebar.settings": "सेटिंग्स",
382 "sidebar.unmuteApp" : "सूचनाएं और ऑडियो सक्षम करें", 382 "sidebar.unmuteApp": "सूचनाएं और ऑडियो सक्षम करें",
383 "signup.email.label" : "ईमेल पता", 383 "signup.email.label": "ईमेल पता",
384 "signup.emailDuplicate" : "उस ईमेल पते वाला उपयोगकर्ता पहले से मौजूद है", 384 "signup.emailDuplicate": "उस ईमेल पते वाला उपयोगकर्ता पहले से मौजूद है",
385 "signup.firstname.label" : "पहला नाम", 385 "signup.firstname.label": "पहला नाम",
386 "signup.headline" : "साइन अप करें", 386 "signup.headline": "साइन अप करें",
387 "signup.lastname.label" : "उपनाम", 387 "signup.lastname.label": "उपनाम",
388 "signup.legal.info" : "फ्रांज़ में खाता बनाकर आप इसे स्वीकार करते हैं", 388 "signup.legal.info": "फ्रांज़ में खाता बनाकर आप इसे स्वीकार करते हैं",
389 "signup.legal.privacy" : "प्राइवेसी स्टेटमेंट", 389 "signup.legal.privacy": "प्राइवेसी स्टेटमेंट",
390 "signup.legal.terms" : "सेवा की शर्तें", 390 "signup.legal.terms": "सेवा की शर्तें",
391 "signup.link.login" : "पहले से ही एक खाता है? लॉग इन करें।", 391 "signup.link.login": "पहले से ही एक खाता है? लॉग इन करें।",
392 "signup.password.label" : "पासवर्ड", 392 "signup.password.label": "पासवर्ड",
393 "signup.submit.label" : "खता खोलें", 393 "signup.submit.label": "खता खोलें",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "रद्द करें", 405 "subscriptionPopup.buttonCancel": "रद्द करें",
406 "subscriptionPopup.buttonDone" : "संपन्न", 406 "subscriptionPopup.buttonDone": "संपन्न",
407 "tabs.item.deleteService" : "सेवा हटाएँ", 407 "tabs.item.deleteService": "सेवा हटाएँ",
408 "tabs.item.disableAudio" : "ऑडियो अक्षम करें", 408 "tabs.item.disableAudio": "ऑडियो अक्षम करें",
409 "tabs.item.disableNotifications" : "ऑडियो अक्षम करें", 409 "tabs.item.disableNotifications": "ऑडियो अक्षम करें",
410 "tabs.item.disableService" : "सेवा अक्षम करें", 410 "tabs.item.disableService": "सेवा अक्षम करें",
411 "tabs.item.edit" : "संपादित करें", 411 "tabs.item.edit": "संपादित करें",
412 "tabs.item.enableAudio" : "ऑडियो सक्षम करें", 412 "tabs.item.enableAudio": "ऑडियो सक्षम करें",
413 "tabs.item.enableNotification" : "सूचनाएँ सक्षम करें ", 413 "tabs.item.enableNotification": "सूचनाएँ सक्षम करें ",
414 "tabs.item.enableService" : "सेवा सक्षम करें", 414 "tabs.item.enableService": "सेवा सक्षम करें",
415 "tabs.item.reload" : "पुन: लोड करें", 415 "tabs.item.reload": "पुन: लोड करें",
416 "validation.email" : "{field} मान्य नहीं है", 416 "validation.email": "{field} मान्य नहीं है",
417 "validation.minLength" : "{field} कम से कम {length} अक्षर लंबे होने चाहिए", 417 "validation.minLength": "{field} कम से कम {length} अक्षर लंबे होने चाहिए",
418 "validation.oneRequired" : "कम से कम एक की आवश्यकता है", 418 "validation.oneRequired": "कम से कम एक की आवश्यकता है",
419 "validation.required" : "{field} की आवश्यकता है", 419 "validation.required": "{field} की आवश्यकता है",
420 "validation.url" : "{field} एक मान्य URL नहीं है", 420 "validation.url": "{field} एक मान्य URL नहीं है",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "पुन: लोड करें", 425 "webControls.reload": "पुन: लोड करें",
426 "welcome.loginButton" : "अपने खाते में प्रवेश करें", 426 "welcome.loginButton": "अपने खाते में प्रवेश करें",
427 "welcome.signupButton" : "एक नि: शुल्क खाता बनाए", 427 "welcome.signupButton": "एक नि: शुल्क खाता बनाए",
428 "workspaceDrawer.addNewWorkspaceLabel" : "नया कार्यक्षेत्र जोड़ें", 428 "workspaceDrawer.addNewWorkspaceLabel": "नया कार्यक्षेत्र जोड़ें",
429 "workspaceDrawer.allServices" : "सभी सेवाएं", 429 "workspaceDrawer.allServices": "सभी सेवाएं",
430 "workspaceDrawer.headline" : "कार्यस्थान", 430 "workspaceDrawer.headline": "कार्यस्थान",
431 "workspaceDrawer.item.contextMenuEdit" : "संपादन करें", 431 "workspaceDrawer.item.contextMenuEdit": "संपादन करें",
432 "workspaceDrawer.item.noServicesAddedYet" : "अभी तक कोई सेवा नहीं जोड़ी गई है", 432 "workspaceDrawer.item.noServicesAddedYet": "अभी तक कोई सेवा नहीं जोड़ी गई है",
433 "workspaceDrawer.premiumCtaButtonLabel" : "अपना पहला कार्यक्षेत्र बनाएँ", 433 "workspaceDrawer.premiumCtaButtonLabel": "अपना पहला कार्यक्षेत्र बनाएँ",
434 "workspaceDrawer.proFeatureBadge" : "प्रीमियम सुविधा", 434 "workspaceDrawer.proFeatureBadge": "प्रीमियम सुविधा",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "प्रीमियम खाता पुनः सक्रिय करें", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "प्रीमियम खाता पुनः सक्रिय करें",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>फ्रांज वर्कस्पेस आपको इस बात पर ध्यान केंद्रित करने देता है कि अभी क्या महत्वपूर्ण है। सेवाओं के विभिन्न समूहों को तैयार करें और किसी भी समय उनके बीच आसानी से स्विच करें।<\/p><p>आप यह तय करते हैं कि आपको कब और कहाँ किन सेवाओं की ज़रूरत है, इसलिए हम आपको अपने खेल में शीर्ष पर बने रहने में मदद कर सकते हैं - या जब भी आप चाहें, आसानी से काम बंद कर सकते हैं।<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>फ्रांज वर्कस्पेस आपको इस बात पर ध्यान केंद्रित करने देता है कि अभी क्या महत्वपूर्ण है। सेवाओं के विभिन्न समूहों को तैयार करें और किसी भी समय उनके बीच आसानी से स्विच करें।</p><p>आप यह तय करते हैं कि आपको कब और कहाँ किन सेवाओं की ज़रूरत है, इसलिए हम आपको अपने खेल में शीर्ष पर बने रहने में मदद कर सकते हैं - या जब भी आप चाहें, आसानी से काम बंद कर सकते हैं।</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "कार्यस्थान सेटिंग्स संपादित करें", 437 "workspaceDrawer.workspacesSettingsTooltip": "कार्यस्थान सेटिंग्स संपादित करें",
438 "workspaces.switchingIndicator.switchingTo" : "इसमें स्विच हो रहा है-" 438 "workspaces.switchingIndicator.switchingTo": "इसमें स्विच हो रहा है-"
439} 439}
diff --git a/src/i18n/locales/hr.json b/src/i18n/locales/hr.json
index fe163fdcf..eedf22d20 100644
--- a/src/i18n/locales/hr.json
+++ b/src/i18n/locales/hr.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Nije moguće učitati informacije o korisniku", 280 "settings.account.userInfoRequestFailed": "Nije moguće učitati informacije o korisniku",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Očisti memoriju", 283 "settings.app.buttonClearAllCache": "Očisti memoriju",
284 "settings.app.buttonInstallUpdate": "Ponovo pokreni i instaliraj ažuriranje", 284 "settings.app.buttonInstallUpdate": "Ponovo pokreni i instaliraj ažuriranje",
285 "settings.app.buttonSearchForUpdate": "Potraži ažuriranja", 285 "settings.app.buttonSearchForUpdate": "Potraži ažuriranja",
diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json
index a9537c423..c05f909b3 100644
--- a/src/i18n/locales/hu.json
+++ b/src/i18n/locales/hu.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Frissítés Ferdi Professional-ra", 279 "settings.account.upgradeToPro.label": "Frissítés Ferdi Professional-ra",
280 "settings.account.userInfoRequestFailed": "A felhasználói adatok betöltése sikertelen", 280 "settings.account.userInfoRequestFailed": "A felhasználói adatok betöltése sikertelen",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Gyorsítótár törlése", 283 "settings.app.buttonClearAllCache": "Gyorsítótár törlése",
284 "settings.app.buttonInstallUpdate": "Újraindítás és frissítés telepítése", 284 "settings.app.buttonInstallUpdate": "Újraindítás és frissítés telepítése",
285 "settings.app.buttonSearchForUpdate": "Frissítések keresése", 285 "settings.app.buttonSearchForUpdate": "Frissítések keresése",
diff --git a/src/i18n/locales/id.json b/src/i18n/locales/id.json
index 4ecb0a001..46fbed21c 100644
--- a/src/i18n/locales/id.json
+++ b/src/i18n/locales/id.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade ke Ferdi Profesional", 279 "settings.account.upgradeToPro.label": "Upgrade ke Ferdi Profesional",
280 "settings.account.userInfoRequestFailed": "Gagal memuat informasi pengguna", 280 "settings.account.userInfoRequestFailed": "Gagal memuat informasi pengguna",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Bersihkan singgahan", 283 "settings.app.buttonClearAllCache": "Bersihkan singgahan",
284 "settings.app.buttonInstallUpdate": "Mulai ulang & instal pembaruan", 284 "settings.app.buttonInstallUpdate": "Mulai ulang & instal pembaruan",
285 "settings.app.buttonSearchForUpdate": "Periksa versi baru", 285 "settings.app.buttonSearchForUpdate": "Periksa versi baru",
diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json
index b2a25eb28..962d63aa2 100644
--- a/src/i18n/locales/it.json
+++ b/src/i18n/locales/it.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Aggiorna a Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Aggiorna a Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Impossibile caricare le informazioni dell'utente.", 280 "settings.account.userInfoRequestFailed": "Impossibile caricare le informazioni dell'utente.",
281 "settings.account.yourLicense": "La tua licenza Ferdi", 281 "settings.account.yourLicense": "La tua licenza Ferdi",
282 "settings.app.accentColorInfo": "Scrivi il tuo tema colore in un formato compatibile con CSS. (Predefinito: #7367f0)", 282 "settings.app.accentColorInfo": "Scrivi il tuo tema colore in un formato compatibile con CSS. (Predefinito: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Svuota la cache", 283 "settings.app.buttonClearAllCache": "Svuota la cache",
284 "settings.app.buttonInstallUpdate": "Riavvia e installa l'aggiornamento", 284 "settings.app.buttonInstallUpdate": "Riavvia e installa l'aggiornamento",
285 "settings.app.buttonSearchForUpdate": "Controlla aggiornamenti", 285 "settings.app.buttonSearchForUpdate": "Controlla aggiornamenti",
diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json
index 17e804ad0..6dc3b26d7 100644
--- a/src/i18n/locales/ja.json
+++ b/src/i18n/locales/ja.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "ユーザ情報を読み込めませんでした", 280 "settings.account.userInfoRequestFailed": "ユーザ情報を読み込めませんでした",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "キャッシュを消去する", 283 "settings.app.buttonClearAllCache": "キャッシュを消去する",
284 "settings.app.buttonInstallUpdate": "再起動して更新をインストールする", 284 "settings.app.buttonInstallUpdate": "再起動して更新をインストールする",
285 "settings.app.buttonSearchForUpdate": "更新の確認", 285 "settings.app.buttonSearchForUpdate": "更新の確認",
diff --git a/src/i18n/locales/ka.json b/src/i18n/locales/ka.json
index 9ec5eff36..c8e4e1557 100644
--- a/src/i18n/locales/ka.json
+++ b/src/i18n/locales/ka.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "მომხმარებლის ინფორმაციის ჩატვირთვა ვერ მოხერხდა", 280 "settings.account.userInfoRequestFailed": "მომხმარებლის ინფორმაციის ჩატვირთვა ვერ მოხერხდა",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "გადატვირთეთ და დააყენეთ განახლება", 284 "settings.app.buttonInstallUpdate": "გადატვირთეთ და დააყენეთ განახლება",
285 "settings.app.buttonSearchForUpdate": "განახლებების შემოწმება", 285 "settings.app.buttonSearchForUpdate": "განახლებების შემოწმება",
diff --git a/src/i18n/locales/kk.json b/src/i18n/locales/kk.json
index 078973fe8..809cfeedd 100644
--- a/src/i18n/locales/kk.json
+++ b/src/i18n/locales/kk.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Reload", 2 "app.errorHandler.action": "Reload",
3 "app.errorHandler.headline" : "Something went wrong", 3 "app.errorHandler.headline": "Something went wrong",
4 "connectionLostBanner.cta" : "Reload Service", 4 "connectionLostBanner.cta": "Reload Service",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "Changes in Franz {version}", 7 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "Franz will continue in {seconds} seconds.", 9 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "Upgrade account", 14 "feature.delayApp.upgrade.actionShort": "Upgrade account",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "Send as email", 32 "feature.shareFranz.action.email": "Send as email",
33 "feature.shareFranz.action.facebook" : "Share on Facebook", 33 "feature.shareFranz.action.facebook": "Share on Facebook",
34 "feature.shareFranz.action.twitter" : "Share on Twitter", 34 "feature.shareFranz.action.twitter": "Share on Twitter",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", 38 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "Can't connect to Franz online services", 49 "global.api.unhealthy": "Can't connect to Ferdi online services",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "You are not connected to the internet.", 51 "global.notConnectedToTheInternet": "You are not connected to the internet.",
52 "global.spellchecker.useDefault" : "Use System Default ({default})", 52 "global.spellchecker.useDefault": "Use System Default ({default})",
53 "global.spellchecking.autodetect" : "Detect language automatically", 53 "global.spellchecking.autodetect": "Detect language automatically",
54 "global.spellchecking.autodetect.short" : "Automatic", 54 "global.spellchecking.autodetect.short": "Automatic",
55 "global.spellchecking.language" : "Spell checking language", 55 "global.spellchecking.language": "Spell checking language",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "Import your Franz 4 services", 57 "import.headline": "Import your Ferdi 4 services",
58 "import.notSupportedHeadline" : "Services not yet supported in Franz 5", 58 "import.notSupportedHeadline": "Services not yet supported in Ferdi 5",
59 "import.skip.label" : "I want to add services manually", 59 "import.skip.label": "I want to add services manually",
60 "import.submit.label" : "Import services", 60 "import.submit.label": "Import services",
61 "infobar.buttonChangelog" : "What is new?", 61 "infobar.buttonChangelog": "What is new?",
62 "infobar.buttonInstallUpdate" : "Restart & install update", 62 "infobar.buttonInstallUpdate": "Restart & install update",
63 "infobar.buttonReloadServices" : "Reload services", 63 "infobar.buttonReloadServices": "Reload services",
64 "infobar.requiredRequestsFailed" : "Could not load services and user information", 64 "infobar.requiredRequestsFailed": "Could not load services and user information",
65 "infobar.servicesUpdated" : "Your services have been updated.", 65 "infobar.servicesUpdated": "Your services have been updated.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "A new update for Franz is available.", 67 "infobar.updateAvailable": "A new update for Ferdi is available.",
68 "invite.email.label" : "Email address", 68 "invite.email.label": "Email address",
69 "invite.headline.friends" : "Invite 3 of your friends or colleagues", 69 "invite.headline.friends": "Invite 3 of your friends or colleagues",
70 "invite.name.label" : "Name", 70 "invite.name.label": "Name",
71 "invite.skip.label" : "I want to do this later", 71 "invite.skip.label": "I want to do this later",
72 "invite.submit.label" : "Send invites", 72 "invite.submit.label": "Send invites",
73 "invite.successInfo" : "Invitations sent successfully", 73 "invite.successInfo": "Invitations sent successfully",
74 "login.email.label" : "Email address", 74 "login.email.label": "Email address",
75 "login.headline" : "Sign in", 75 "login.headline": "Sign in",
76 "login.invalidCredentials" : "Email or password not valid", 76 "login.invalidCredentials": "Email or password not valid",
77 "login.link.password" : "Reset password", 77 "login.link.password": "Reset password",
78 "login.link.signup" : "Create a free account", 78 "login.link.signup": "Create a free account",
79 "login.password.label" : "Password", 79 "login.password.label": "Password",
80 "login.serverLogout" : "Your session expired, please login again.", 80 "login.serverLogout": "Your session expired, please login again.",
81 "login.submit.label" : "Sign in", 81 "login.submit.label": "Sign in",
82 "login.tokenExpired" : "Your session expired, please login again.", 82 "login.tokenExpired": "Your session expired, please login again.",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "About Franz", 85 "menu.app.about": "About Ferdi",
86 "menu.app.announcement" : "What's new?", 86 "menu.app.announcement": "What's new?",
87 "menu.app.checkForUpdates" : "Check for updates", 87 "menu.app.checkForUpdates": "Check for updates",
88 "menu.app.hide" : "Hide", 88 "menu.app.hide": "Hide",
89 "menu.app.hideOthers" : "Hide Others", 89 "menu.app.hideOthers": "Hide Others",
90 "menu.app.quit" : "Quit", 90 "menu.app.quit": "Quit",
91 "menu.app.settings" : "Settings", 91 "menu.app.settings": "Settings",
92 "menu.app.unhide" : "Unhide", 92 "menu.app.unhide": "Unhide",
93 "menu.edit" : "Edit", 93 "menu.edit": "Edit",
94 "menu.edit.copy" : "Copy", 94 "menu.edit.copy": "Copy",
95 "menu.edit.cut" : "Cut", 95 "menu.edit.cut": "Cut",
96 "menu.edit.delete" : "Delete", 96 "menu.edit.delete": "Delete",
97 "menu.edit.emojiSymbols" : "Emoji & Symbols", 97 "menu.edit.emojiSymbols": "Emoji & Symbols",
98 "menu.edit.paste" : "Paste", 98 "menu.edit.paste": "Paste",
99 "menu.edit.pasteAndMatchStyle" : "Paste And Match Style", 99 "menu.edit.pasteAndMatchStyle": "Paste And Match Style",
100 "menu.edit.redo" : "Redo", 100 "menu.edit.redo": "Redo",
101 "menu.edit.selectAll" : "Select All", 101 "menu.edit.selectAll": "Select All",
102 "menu.edit.speech" : "Speech", 102 "menu.edit.speech": "Speech",
103 "menu.edit.startDictation" : "Start Dictation", 103 "menu.edit.startDictation": "Start Dictation",
104 "menu.edit.startSpeaking" : "Start Speaking", 104 "menu.edit.startSpeaking": "Start Speaking",
105 "menu.edit.stopSpeaking" : "Stop Speaking", 105 "menu.edit.stopSpeaking": "Stop Speaking",
106 "menu.edit.undo" : "Undo", 106 "menu.edit.undo": "Undo",
107 "menu.file" : "File", 107 "menu.file": "File",
108 "menu.help" : "Help", 108 "menu.help": "Help",
109 "menu.help.changelog" : "Changelog", 109 "menu.help.changelog": "Changelog",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "Learn More", 113 "menu.help.learnMore": "Learn More",
114 "menu.help.privacy" : "Privacy Statement", 114 "menu.help.privacy": "Privacy Statement",
115 "menu.help.support" : "Support", 115 "menu.help.support": "Support",
116 "menu.help.tos" : "Terms of Service", 116 "menu.help.tos": "Terms of Service",
117 "menu.services" : "Services", 117 "menu.services": "Services",
118 "menu.services.activatePreviousService" : "Activate previous service", 118 "menu.services.activatePreviousService": "Activate previous service",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "Activate next service", 121 "menu.services.setNextServiceActive": "Activate next service",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "View", 124 "menu.view": "View",
125 "menu.view.enterFullScreen" : "Enter Full Screen", 125 "menu.view.enterFullScreen": "Enter Full Screen",
126 "menu.view.exitFullScreen" : "Exit Full Screen", 126 "menu.view.exitFullScreen": "Exit Full Screen",
127 "menu.view.reloadFranz" : "Reload Franz", 127 "menu.view.reloadFranz": "Reload Ferdi",
128 "menu.view.reloadService" : "Reload Service", 128 "menu.view.reloadService": "Reload Service",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "Actual Size", 130 "menu.view.resetZoom": "Actual Size",
131 "menu.view.toggleDevTools" : "Toggle Developer Tools", 131 "menu.view.toggleDevTools": "Toggle Developer Tools",
132 "menu.view.toggleFullScreen" : "Toggle Full Screen", 132 "menu.view.toggleFullScreen": "Toggle Full Screen",
133 "menu.view.toggleServiceDevTools" : "Toggle Service Developer Tools", 133 "menu.view.toggleServiceDevTools": "Toggle Service Developer Tools",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "Zoom In", 135 "menu.view.zoomIn": "Zoom In",
136 "menu.view.zoomOut" : "Zoom Out", 136 "menu.view.zoomOut": "Zoom Out",
137 "menu.window" : "Window", 137 "menu.window": "Window",
138 "menu.window.close" : "Close", 138 "menu.window.close": "Close",
139 "menu.window.minimize" : "Minimize", 139 "menu.window.minimize": "Minimize",
140 "menu.workspaces" : "Workspaces", 140 "menu.workspaces": "Workspaces",
141 "menu.workspaces.addNewWorkspace" : "Add New Workspace...", 141 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Close workspace drawer", 142 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
143 "menu.workspaces.defaultWorkspace" : "All services", 143 "menu.workspaces.defaultWorkspace": "All services",
144 "menu.workspaces.openWorkspaceDrawer" : "Open workspace drawer", 144 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
145 "password.email.label" : "Email address", 145 "password.email.label": "Email address",
146 "password.headline" : "Reset password", 146 "password.headline": "Reset password",
147 "password.link.login" : "Sign in to your account", 147 "password.link.login": "Sign in to your account",
148 "password.link.signup" : "Create a free account", 148 "password.link.signup": "Create a free account",
149 "password.noUser" : "No user with that email address was found", 149 "password.noUser": "No user with that email address was found",
150 "password.submit.label" : "Submit", 150 "password.submit.label": "Submit",
151 "password.successInfo" : "Please check your email", 151 "password.successInfo": "Please check your email",
152 "premiumFeature.button.upgradeAccount" : "Upgrade account", 152 "premiumFeature.button.upgradeAccount": "Upgrade account",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "Reload {name}", 190 "service.crashHandler.action": "Reload {name}",
191 "service.crashHandler.autoReload" : "Trying to automatically restore {name} in {seconds} seconds", 191 "service.crashHandler.autoReload": "Trying to automatically restore {name} in {seconds} seconds",
192 "service.crashHandler.headline" : "Oh no!", 192 "service.crashHandler.headline": "Oh no!",
193 "service.crashHandler.text" : "{name} has caused an error.", 193 "service.crashHandler.text": "{name} has caused an error.",
194 "service.disabledHandler.action" : "Enable {name}", 194 "service.disabledHandler.action": "Enable {name}",
195 "service.disabledHandler.headline" : "{name} is disabled", 195 "service.disabledHandler.headline": "{name} is disabled",
196 "service.errorHandler.action" : "Reload {name}", 196 "service.errorHandler.action": "Reload {name}",
197 "service.errorHandler.editAction" : "Edit {name}", 197 "service.errorHandler.editAction": "Edit {name}",
198 "service.errorHandler.headline" : "Oh no!", 198 "service.errorHandler.headline": "Oh no!",
199 "service.errorHandler.message" : "Error", 199 "service.errorHandler.message": "Error",
200 "service.errorHandler.text" : "{name} has failed to load.", 200 "service.errorHandler.text": "{name} has failed to load.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "Loading", 206 "service.webviewLoader.loading": "Loading",
207 "services.getStarted" : "Get started", 207 "services.getStarted": "Get started",
208 "services.welcome" : "Welcome to Franz", 208 "services.welcome": "Welcome to Ferdi",
209 "settings.account.account.editButton" : "Edit account", 209 "settings.account.account.editButton": "Edit account",
210 "settings.account.accountType.basic" : "Basic Account", 210 "settings.account.accountType.basic": "Basic Account",
211 "settings.account.accountType.premium" : "Premium Supporter Account", 211 "settings.account.accountType.premium": "Premium Supporter Account",
212 "settings.account.buttonSave" : "Update profile", 212 "settings.account.buttonSave": "Update profile",
213 "settings.account.deleteAccount" : "Delete account", 213 "settings.account.deleteAccount": "Delete account",
214 "settings.account.deleteEmailSent" : "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 214 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
215 "settings.account.deleteInfo" : "If you don't need your Franz account any longer, you can delete your account and all related data here.", 215 "settings.account.deleteInfo": "If you don't need your Ferdi account any longer, you can delete your account and all related data here.",
216 "settings.account.headline" : "Account", 216 "settings.account.headline": "Account",
217 "settings.account.headlineAccount" : "Account information", 217 "settings.account.headlineAccount": "Account information",
218 "settings.account.headlineDangerZone" : "Danger Zone", 218 "settings.account.headlineDangerZone": "Danger Zone",
219 "settings.account.headlineInvoices" : "Invoices", 219 "settings.account.headlineInvoices": "Invoices",
220 "settings.account.headlinePassword" : "Change password", 220 "settings.account.headlinePassword": "Change password",
221 "settings.account.headlineProfile" : "Update profile", 221 "settings.account.headlineProfile": "Update profile",
222 "settings.account.headlineSubscription" : "Your subscription", 222 "settings.account.headlineSubscription": "Your subscription",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "Download", 225 "settings.account.invoiceDownload": "Download",
226 "settings.account.manageSubscription.label" : "Manage your subscription", 226 "settings.account.manageSubscription.label": "Manage your subscription",
227 "settings.account.successInfo" : "Your changes have been saved", 227 "settings.account.successInfo": "Your changes have been saved",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "Try again", 231 "settings.account.tryReloadServices": "Try again",
232 "settings.account.tryReloadUserInfoRequest" : "Try again", 232 "settings.account.tryReloadUserInfoRequest": "Try again",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "Could not load user information", 234 "settings.account.userInfoRequestFailed": "Could not load user information",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "Clear cache", 236 "settings.app.buttonClearAllCache": "Clear cache",
237 "settings.app.buttonInstallUpdate" : "Restart & install update", 237 "settings.app.buttonInstallUpdate": "Restart & install update",
238 "settings.app.buttonSearchForUpdate" : "Check for updates", 238 "settings.app.buttonSearchForUpdate": "Check for updates",
239 "settings.app.cacheInfo" : "Franz cache is currently using {size} of disk space.", 239 "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.",
240 "settings.app.currentVersion" : "Current version:", 240 "settings.app.currentVersion": "Current version:",
241 "settings.app.form.autoLaunchInBackground" : "Open in background", 241 "settings.app.form.autoLaunchInBackground": "Open in background",
242 "settings.app.form.autoLaunchOnStart" : "Launch Franz on start", 242 "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start",
243 "settings.app.form.beta" : "Include beta versions", 243 "settings.app.form.beta": "Include beta versions",
244 "settings.app.form.darkMode" : "Join the Dark Side", 244 "settings.app.form.darkMode": "Join the Dark Side",
245 "settings.app.form.enableGPUAcceleration" : "Enable GPU Acceleration", 245 "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration",
246 "settings.app.form.enableSpellchecking" : "Enable spell checking", 246 "settings.app.form.enableSpellchecking": "Enable spell checking",
247 "settings.app.form.enableSystemTray" : "Show Franz in system tray", 247 "settings.app.form.enableSystemTray": "Show Ferdi in system tray",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "Language", 250 "settings.app.form.language": "Language",
251 "settings.app.form.minimizeToSystemTray" : "Minimize Franz to system tray", 251 "settings.app.form.minimizeToSystemTray": "Minimize Ferdi to system tray",
252 "settings.app.form.runInBackground" : "Keep Franz in background when closing the window", 252 "settings.app.form.runInBackground": "Keep Ferdi in background when closing the window",
253 "settings.app.form.showDisabledServices" : "Display disabled services tabs", 253 "settings.app.form.showDisabledServices": "Display disabled services tabs",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Show unread message badge when notifications are disabled", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
255 "settings.app.headline" : "Settings", 255 "settings.app.headline": "Settings",
256 "settings.app.headlineAdvanced" : "Advanced", 256 "settings.app.headlineAdvanced": "Advanced",
257 "settings.app.headlineAppearance" : "Appearance", 257 "settings.app.headlineAppearance": "Appearance",
258 "settings.app.headlineGeneral" : "General", 258 "settings.app.headlineGeneral": "General",
259 "settings.app.headlineLanguage" : "Language", 259 "settings.app.headlineLanguage": "Language",
260 "settings.app.headlineUpdates" : "Updates", 260 "settings.app.headlineUpdates": "Updates",
261 "settings.app.languageDisclaimer" : "Official translations are English & German. All other languages are community based translations.", 261 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
262 "settings.app.restartRequired" : "Changes require restart", 262 "settings.app.restartRequired": "Changes require restart",
263 "settings.app.subheadlineCache" : "Cache", 263 "settings.app.subheadlineCache": "Cache",
264 "settings.app.translationHelp" : "Help us to translate Franz into your language.", 264 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
265 "settings.app.updateStatusAvailable" : "Update available, downloading...", 265 "settings.app.updateStatusAvailable": "Update available, downloading...",
266 "settings.app.updateStatusSearching" : "Is searching for update", 266 "settings.app.updateStatusSearching": "Is searching for update",
267 "settings.app.updateStatusUpToDate" : "You are using the latest version of Franz", 267 "settings.app.updateStatusUpToDate": "You are using the latest version of Ferdi",
268 "settings.invite.headline" : "Invite Friends", 268 "settings.invite.headline": "Invite Friends",
269 "settings.navigation.account" : "Account", 269 "settings.navigation.account": "Account",
270 "settings.navigation.availableServices" : "Available services", 270 "settings.navigation.availableServices": "Available services",
271 "settings.navigation.inviteFriends" : "Invite Friends", 271 "settings.navigation.inviteFriends": "Invite Friends",
272 "settings.navigation.logout" : "Logout", 272 "settings.navigation.logout": "Logout",
273 "settings.navigation.settings" : "Settings", 273 "settings.navigation.settings": "Settings",
274 "settings.navigation.team" : "Manage Team", 274 "settings.navigation.team": "Manage Team",
275 "settings.navigation.yourServices" : "Your services", 275 "settings.navigation.yourServices": "Your services",
276 "settings.navigation.yourWorkspaces" : "Your workspaces", 276 "settings.navigation.yourWorkspaces": "Your workspaces",
277 "settings.recipes.all" : "All services", 277 "settings.recipes.all": "All services",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "Available services", 285 "settings.recipes.headline": "Available services",
286 "settings.recipes.missingService" : "Missing a service?", 286 "settings.recipes.missingService": "Missing a service?",
287 "settings.recipes.mostPopular" : "Most popular", 287 "settings.recipes.mostPopular": "Most popular",
288 "settings.recipes.nothingFound" : "Sorry, but no service matched your search term.", 288 "settings.recipes.nothingFound": "Sorry, but no service matched your search term.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Service successfully added", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Service successfully added",
290 "settings.searchService" : "Search service", 290 "settings.searchService": "Search service",
291 "settings.service.error.goBack" : "Back to services", 291 "settings.service.error.goBack": "Back to services",
292 "settings.service.error.headline" : "Error", 292 "settings.service.error.headline": "Error",
293 "settings.service.error.message" : "Could not load service recipe.", 293 "settings.service.error.message": "Could not load service recipe.",
294 "settings.service.form.addServiceHeadline" : "Add {name}", 294 "settings.service.form.addServiceHeadline": "Add {name}",
295 "settings.service.form.availableServices" : "Available services", 295 "settings.service.form.availableServices": "Available services",
296 "settings.service.form.customUrl" : "Custom server", 296 "settings.service.form.customUrl": "Custom server",
297 "settings.service.form.customUrlPremiumInfo" : "To add self hosted services, you need a Franz Premium Supporter Account.", 297 "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.",
298 "settings.service.form.customUrlUpgradeAccount" : "Upgrade your account", 298 "settings.service.form.customUrlUpgradeAccount": "Upgrade your account",
299 "settings.service.form.customUrlValidationError" : "Could not validate custom {name} server.", 299 "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.",
300 "settings.service.form.deleteButton" : "Delete service", 300 "settings.service.form.deleteButton": "Delete service",
301 "settings.service.form.editServiceHeadline" : "Edit {name}", 301 "settings.service.form.editServiceHeadline": "Edit {name}",
302 "settings.service.form.enableAudio" : "Enable audio", 302 "settings.service.form.enableAudio": "Enable audio",
303 "settings.service.form.enableBadge" : "Show unread message badges", 303 "settings.service.form.enableBadge": "Show unread message badges",
304 "settings.service.form.enableDarkMode" : "Enable Dark Mode", 304 "settings.service.form.enableDarkMode": "Enable Dark Mode",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "Enable notifications", 306 "settings.service.form.enableNotification": "Enable notifications",
307 "settings.service.form.enableService" : "Enable service", 307 "settings.service.form.enableService": "Enable service",
308 "settings.service.form.headlineBadges" : "Unread message badges", 308 "settings.service.form.headlineBadges": "Unread message badges",
309 "settings.service.form.headlineGeneral" : "General", 309 "settings.service.form.headlineGeneral": "General",
310 "settings.service.form.headlineNotifications" : "Notifications", 310 "settings.service.form.headlineNotifications": "Notifications",
311 "settings.service.form.icon" : "Custom icon", 311 "settings.service.form.icon": "Custom icon",
312 "settings.service.form.iconDelete" : "Delete", 312 "settings.service.form.iconDelete": "Delete",
313 "settings.service.form.iconUpload" : "Drop your image, or click here", 313 "settings.service.form.iconUpload": "Drop your image, or click here",
314 "settings.service.form.indirectMessageInfo" : "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "Show message badge for all new messages", 315 "settings.service.form.indirectMessages": "Show message badge for all new messages",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "When disabled, all notification sounds and audio playback are muted", 317 "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted",
318 "settings.service.form.name" : "Name", 318 "settings.service.form.name": "Name",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS Proxy Settings", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
320 "settings.service.form.proxy.host" : "Proxy Host\/IP", 320 "settings.service.form.proxy.host": "Proxy Host/IP",
321 "settings.service.form.proxy.info" : "Proxy settings will not synced with the Franz servers.", 321 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
322 "settings.service.form.proxy.isEnabled" : "Use Proxy", 322 "settings.service.form.proxy.isEnabled": "Use Proxy",
323 "settings.service.form.proxy.password" : "Password (optional)", 323 "settings.service.form.proxy.password": "Password (optional)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Please restart Franz after changing proxy Settings.", 325 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
326 "settings.service.form.proxy.user" : "User (optional)", 326 "settings.service.form.proxy.user": "User (optional)",
327 "settings.service.form.saveButton" : "Save service", 327 "settings.service.form.saveButton": "Save service",
328 "settings.service.form.tabHosted" : "Hosted", 328 "settings.service.form.tabHosted": "Hosted",
329 "settings.service.form.tabOnPremise" : "Self hosted ⭐️", 329 "settings.service.form.tabOnPremise": "Self hosted ⭐️",
330 "settings.service.form.team" : "Team", 330 "settings.service.form.team": "Team",
331 "settings.service.form.useHostedService" : "Use the hosted {name} service.", 331 "settings.service.form.useHostedService": "Use the hosted {name} service.",
332 "settings.service.form.yourServices" : "Your services", 332 "settings.service.form.yourServices": "Your services",
333 "settings.services.deletedInfo" : "Service has been deleted", 333 "settings.services.deletedInfo": "Service has been deleted",
334 "settings.services.discoverServices" : "Discover services", 334 "settings.services.discoverServices": "Discover services",
335 "settings.services.headline" : "Your services", 335 "settings.services.headline": "Your services",
336 "settings.services.noServicesAdded" : "You haven't added any services yet.", 336 "settings.services.noServicesAdded": "You haven't added any services yet.",
337 "settings.services.servicesRequestFailed" : "Could not load your services", 337 "settings.services.servicesRequestFailed": "Could not load your services",
338 "settings.services.tooltip.isDisabled" : "Service is disabled", 338 "settings.services.tooltip.isDisabled": "Service is disabled",
339 "settings.services.tooltip.isMuted" : "All sounds are muted", 339 "settings.services.tooltip.isMuted": "All sounds are muted",
340 "settings.services.tooltip.notificationsDisabled" : "Notifications are disabled", 340 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled",
341 "settings.services.updatedInfo" : "Your changes have been saved", 341 "settings.services.updatedInfo": "Your changes have been saved",
342 "settings.team.contentHeadline" : "Franz for Teams", 342 "settings.team.contentHeadline": "Franz for Teams",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "Team", 344 "settings.team.headline": "Team",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "Manage your Team on meetfranz.com", 346 "settings.team.manageAction": "Manage your Team on meetfranz.com",
347 "settings.team.upgradeAction" : "Upgrade your Account", 347 "settings.team.upgradeAction": "Upgrade your Account",
348 "settings.user.form.accountType.company" : "Company", 348 "settings.user.form.accountType.company": "Company",
349 "settings.user.form.accountType.individual" : "Individual", 349 "settings.user.form.accountType.individual": "Individual",
350 "settings.user.form.accountType.label" : "Account type", 350 "settings.user.form.accountType.label": "Account type",
351 "settings.user.form.accountType.non-profit" : "Non-Profit", 351 "settings.user.form.accountType.non-profit": "Non-Profit",
352 "settings.user.form.currentPassword" : "Current password", 352 "settings.user.form.currentPassword": "Current password",
353 "settings.user.form.email" : "Email", 353 "settings.user.form.email": "Email",
354 "settings.user.form.firstname" : "First Name", 354 "settings.user.form.firstname": "First Name",
355 "settings.user.form.lastname" : "Last Name", 355 "settings.user.form.lastname": "Last Name",
356 "settings.user.form.newPassword" : "New password", 356 "settings.user.form.newPassword": "New password",
357 "settings.workspace.add.form.name" : "Name", 357 "settings.workspace.add.form.name": "Name",
358 "settings.workspace.add.form.submitButton" : "Create workspace", 358 "settings.workspace.add.form.submitButton": "Create workspace",
359 "settings.workspace.form.buttonDelete" : "Delete workspace", 359 "settings.workspace.form.buttonDelete": "Delete workspace",
360 "settings.workspace.form.buttonSave" : "Save workspace", 360 "settings.workspace.form.buttonSave": "Save workspace",
361 "settings.workspace.form.name" : "Name", 361 "settings.workspace.form.name": "Name",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Services in this Workspace", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
363 "settings.workspace.form.yourWorkspaces" : "Your workspaces", 363 "settings.workspace.form.yourWorkspaces": "Your workspaces",
364 "settings.workspaces.deletedInfo" : "Workspace has been deleted", 364 "settings.workspaces.deletedInfo": "Workspace has been deleted",
365 "settings.workspaces.headline" : "Your workspaces", 365 "settings.workspaces.headline": "Your workspaces",
366 "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", 366 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
367 "settings.workspaces.tryReloadWorkspaces" : "Try again", 367 "settings.workspaces.tryReloadWorkspaces": "Try again",
368 "settings.workspaces.updatedInfo" : "Your changes have been saved", 368 "settings.workspaces.updatedInfo": "Your changes have been saved",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", 371 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "Add new service", 375 "sidebar.addNewService": "Add new service",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", 377 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
378 "sidebar.muteApp" : "Disable notifications & audio", 378 "sidebar.muteApp": "Disable notifications & audio",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "Open workspace drawer", 380 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
381 "sidebar.settings" : "Settings", 381 "sidebar.settings": "Settings",
382 "sidebar.unmuteApp" : "Enable notifications & audio", 382 "sidebar.unmuteApp": "Enable notifications & audio",
383 "signup.email.label" : "Email address", 383 "signup.email.label": "Email address",
384 "signup.emailDuplicate" : "A user with that email address already exists", 384 "signup.emailDuplicate": "A user with that email address already exists",
385 "signup.firstname.label" : "First Name", 385 "signup.firstname.label": "First Name",
386 "signup.headline" : "Sign up", 386 "signup.headline": "Sign up",
387 "signup.lastname.label" : "Last Name", 387 "signup.lastname.label": "Last Name",
388 "signup.legal.info" : "By creating a Franz account you accept the", 388 "signup.legal.info": "By creating a Ferdi account you accept the",
389 "signup.legal.privacy" : "Privacy Statement", 389 "signup.legal.privacy": "Privacy Statement",
390 "signup.legal.terms" : "Terms of service", 390 "signup.legal.terms": "Terms of service",
391 "signup.link.login" : "Already have an account, sign in?", 391 "signup.link.login": "Already have an account, sign in?",
392 "signup.password.label" : "Password", 392 "signup.password.label": "Password",
393 "signup.submit.label" : "Create account", 393 "signup.submit.label": "Create account",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "Cancel", 405 "subscriptionPopup.buttonCancel": "Cancel",
406 "subscriptionPopup.buttonDone" : "Done", 406 "subscriptionPopup.buttonDone": "Done",
407 "tabs.item.deleteService" : "Delete service", 407 "tabs.item.deleteService": "Delete service",
408 "tabs.item.disableAudio" : "Disable audio", 408 "tabs.item.disableAudio": "Disable audio",
409 "tabs.item.disableNotifications" : "Disable notifications", 409 "tabs.item.disableNotifications": "Disable notifications",
410 "tabs.item.disableService" : "Disable service", 410 "tabs.item.disableService": "Disable service",
411 "tabs.item.edit" : "Edit", 411 "tabs.item.edit": "Edit",
412 "tabs.item.enableAudio" : "Enable audio", 412 "tabs.item.enableAudio": "Enable audio",
413 "tabs.item.enableNotification" : "Enable notifications", 413 "tabs.item.enableNotification": "Enable notifications",
414 "tabs.item.enableService" : "Enable service", 414 "tabs.item.enableService": "Enable service",
415 "tabs.item.reload" : "Reload", 415 "tabs.item.reload": "Reload",
416 "validation.email" : "{field} is not valid", 416 "validation.email": "{field} is not valid",
417 "validation.minLength" : "{field} should be at least {length} characters long", 417 "validation.minLength": "{field} should be at least {length} characters long",
418 "validation.oneRequired" : "At least one is required", 418 "validation.oneRequired": "At least one is required",
419 "validation.required" : "{field} is required", 419 "validation.required": "{field} is required",
420 "validation.url" : "{field} is not a valid URL", 420 "validation.url": "{field} is not a valid URL",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "Reload", 425 "webControls.reload": "Reload",
426 "welcome.loginButton" : "Login to your account", 426 "welcome.loginButton": "Login to your account",
427 "welcome.signupButton" : "Create a free account", 427 "welcome.signupButton": "Create a free account",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "All services", 429 "workspaceDrawer.allServices": "All services",
430 "workspaceDrawer.headline" : "Workspaces", 430 "workspaceDrawer.headline": "Workspaces",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/ko.json b/src/i18n/locales/ko.json
index dcdc75da8..0e53e8c81 100644
--- a/src/i18n/locales/ko.json
+++ b/src/i18n/locales/ko.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Ferdi 프로페셔널로 업그레이드 합니다.", 279 "settings.account.upgradeToPro.label": "Ferdi 프로페셔널로 업그레이드 합니다.",
280 "settings.account.userInfoRequestFailed": "사용자 정보를 불러올 수 없습니다.", 280 "settings.account.userInfoRequestFailed": "사용자 정보를 불러올 수 없습니다.",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "캐시 지우기", 283 "settings.app.buttonClearAllCache": "캐시 지우기",
284 "settings.app.buttonInstallUpdate": "재시작 후 업데이트 설치", 284 "settings.app.buttonInstallUpdate": "재시작 후 업데이트 설치",
285 "settings.app.buttonSearchForUpdate": "업데이트 확인", 285 "settings.app.buttonSearchForUpdate": "업데이트 확인",
diff --git a/src/i18n/locales/ms.json b/src/i18n/locales/ms.json
index d185878b6..2992d067c 100644
--- a/src/i18n/locales/ms.json
+++ b/src/i18n/locales/ms.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Refresh", 2 "app.errorHandler.action": "Refresh",
3 "app.errorHandler.headline" : "Ada sedikit masalah", 3 "app.errorHandler.headline": "Ada sedikit masalah",
4 "connectionLostBanner.cta" : "Ulangmuat Perkhidmatan", 4 "connectionLostBanner.cta": "Ulangmuat Perkhidmatan",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "Changes in Franz {version}", 7 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "Franz akan beroperasi semula dalam {seconds} saat", 9 "feature.delayApp.text": "Ferdi akan beroperasi semula dalam {seconds} saat",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "Naik taraf akaun", 14 "feature.delayApp.upgrade.actionShort": "Naik taraf akaun",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "Hantar sebagai emel", 32 "feature.shareFranz.action.email": "Hantar sebagai emel",
33 "feature.shareFranz.action.facebook" : "Kongsi ke Facebook", 33 "feature.shareFranz.action.facebook": "Kongsi ke Facebook",
34 "feature.shareFranz.action.twitter" : "Kongsi ke Twitter", 34 "feature.shareFranz.action.twitter": "Kongsi ke Twitter",
35 "feature.shareFranz.headline" : "Franz lebih elok digunakan bersama-sama rakan", 35 "feature.shareFranz.headline": "Ferdi lebih elok digunakan bersama-sama rakan",
36 "feature.shareFranz.shareText.email" : "Saya telah menambah {count] servis ke Franz! Dapatkan aplikasi percuma WhatsApp, Messenger, Slack, Skype dan lain-lain dari www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "Saya telah menambah {count] servis ke Ferdi! Dapatkan aplikasi percuma WhatsApp, Messenger, Slack, Skype dan lain-lain dari www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Beritahu rakan anda betapa hebatnya Franz dan bantu kami menyebarkan maklumat ini", 38 "feature.shareFranz.text": "Beritahu rakan anda betapa hebatnya Ferdi dan bantu kami menyebarkan maklumat ini",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "Tidak dapat bersambung ke perkhidmatan dalam talian Franz", 49 "global.api.unhealthy": "Tidak dapat bersambung ke perkhidmatan dalam talian Ferdi",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "Anda tidak disambungkan ke internet.", 51 "global.notConnectedToTheInternet": "Anda tidak disambungkan ke internet.",
52 "global.spellchecker.useDefault" : "Gunakan System Default ({default})", 52 "global.spellchecker.useDefault": "Gunakan System Default ({default})",
53 "global.spellchecking.autodetect" : "Kesan bahasa secara automatik", 53 "global.spellchecking.autodetect": "Kesan bahasa secara automatik",
54 "global.spellchecking.autodetect.short" : "Automatik", 54 "global.spellchecking.autodetect.short": "Automatik",
55 "global.spellchecking.language" : "Bahasa untuk semakan ejaan", 55 "global.spellchecking.language": "Bahasa untuk semakan ejaan",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "Import perkhidmatan Franz 4 anda", 57 "import.headline": "Import perkhidmatan Ferdi 4 anda",
58 "import.notSupportedHeadline" : "Perkhidmatan belum disokong dalam Franz 5", 58 "import.notSupportedHeadline": "Perkhidmatan belum disokong dalam Ferdi 5",
59 "import.skip.label" : "Saya mahu menambah perkhidmatan secara manual", 59 "import.skip.label": "Saya mahu menambah perkhidmatan secara manual",
60 "import.submit.label" : "Import perkhidmatan", 60 "import.submit.label": "Import perkhidmatan",
61 "infobar.buttonChangelog" : "Apa yang baru?", 61 "infobar.buttonChangelog": "Apa yang baru?",
62 "infobar.buttonInstallUpdate" : "Mulakan semula & pasang kemas kini?", 62 "infobar.buttonInstallUpdate": "Mulakan semula & pasang kemas kini?",
63 "infobar.buttonReloadServices" : "Mula semula perkhidmatan", 63 "infobar.buttonReloadServices": "Mula semula perkhidmatan",
64 "infobar.requiredRequestsFailed" : "Tidak dapat memuatkan perkhidmatan dan maklumat pengguna", 64 "infobar.requiredRequestsFailed": "Tidak dapat memuatkan perkhidmatan dan maklumat pengguna",
65 "infobar.servicesUpdated" : "Perkhidmatan anda telah dikemas kini.", 65 "infobar.servicesUpdated": "Perkhidmatan anda telah dikemas kini.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "Kemas kini baru untuk Franz boleh didapati.", 67 "infobar.updateAvailable": "Kemas kini baru untuk Ferdi boleh didapati.",
68 "invite.email.label" : "Alamat emel", 68 "invite.email.label": "Alamat emel",
69 "invite.headline.friends" : "Jemput 3 rakan atau rakan sekerja anda", 69 "invite.headline.friends": "Jemput 3 rakan atau rakan sekerja anda",
70 "invite.name.label" : "Nama", 70 "invite.name.label": "Nama",
71 "invite.skip.label" : "Saya akan lakukannya sebentar lagi", 71 "invite.skip.label": "Saya akan lakukannya sebentar lagi",
72 "invite.submit.label" : "Hantar jemputan", 72 "invite.submit.label": "Hantar jemputan",
73 "invite.successInfo" : "Jemputan telah berjaya dihantar", 73 "invite.successInfo": "Jemputan telah berjaya dihantar",
74 "login.email.label" : "Alamat e-mel", 74 "login.email.label": "Alamat e-mel",
75 "login.headline" : "Daftar Masuk", 75 "login.headline": "Daftar Masuk",
76 "login.invalidCredentials" : "E-mel atau kata laluan tidak sah", 76 "login.invalidCredentials": "E-mel atau kata laluan tidak sah",
77 "login.link.password" : "Set Semula Kata Laluan", 77 "login.link.password": "Set Semula Kata Laluan",
78 "login.link.signup" : "Buka akaun baru percuma", 78 "login.link.signup": "Buka akaun baru percuma",
79 "login.password.label" : "Kata laluan", 79 "login.password.label": "Kata laluan",
80 "login.serverLogout" : "Sesi anda tamat tempoh, sila log masuk sekali lagi.", 80 "login.serverLogout": "Sesi anda tamat tempoh, sila log masuk sekali lagi.",
81 "login.submit.label" : "Daftar Masuk", 81 "login.submit.label": "Daftar Masuk",
82 "login.tokenExpired" : "Sesi anda tamat tempoh, sila masuk sekali lagi.", 82 "login.tokenExpired": "Sesi anda tamat tempoh, sila masuk sekali lagi.",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "Tentang Franz", 85 "menu.app.about": "Tentang Ferdi",
86 "menu.app.announcement" : "What's new?", 86 "menu.app.announcement": "What's new?",
87 "menu.app.checkForUpdates" : "Semak untuk kemaskini", 87 "menu.app.checkForUpdates": "Semak untuk kemaskini",
88 "menu.app.hide" : "Sorokkan", 88 "menu.app.hide": "Sorokkan",
89 "menu.app.hideOthers" : "Sorokkan yang lain-lain", 89 "menu.app.hideOthers": "Sorokkan yang lain-lain",
90 "menu.app.quit" : "Keluar", 90 "menu.app.quit": "Keluar",
91 "menu.app.settings" : "Tetapan", 91 "menu.app.settings": "Tetapan",
92 "menu.app.unhide" : "Nyahsorok", 92 "menu.app.unhide": "Nyahsorok",
93 "menu.edit" : "Ubahsuai", 93 "menu.edit": "Ubahsuai",
94 "menu.edit.copy" : "Salin", 94 "menu.edit.copy": "Salin",
95 "menu.edit.cut" : "Sunting", 95 "menu.edit.cut": "Sunting",
96 "menu.edit.delete" : "Hapus", 96 "menu.edit.delete": "Hapus",
97 "menu.edit.emojiSymbols" : "Emoji & Simbol", 97 "menu.edit.emojiSymbols": "Emoji & Simbol",
98 "menu.edit.paste" : "Tampal", 98 "menu.edit.paste": "Tampal",
99 "menu.edit.pasteAndMatchStyle" : "Tampal Dan Padan Gaya", 99 "menu.edit.pasteAndMatchStyle": "Tampal Dan Padan Gaya",
100 "menu.edit.redo" : "Ulangbuat", 100 "menu.edit.redo": "Ulangbuat",
101 "menu.edit.selectAll" : "Pilih Semua", 101 "menu.edit.selectAll": "Pilih Semua",
102 "menu.edit.speech" : "Pertuturan", 102 "menu.edit.speech": "Pertuturan",
103 "menu.edit.startDictation" : "Mula Dikte", 103 "menu.edit.startDictation": "Mula Dikte",
104 "menu.edit.startSpeaking" : "Mula Bercakap", 104 "menu.edit.startSpeaking": "Mula Bercakap",
105 "menu.edit.stopSpeaking" : "Henti Bercakap", 105 "menu.edit.stopSpeaking": "Henti Bercakap",
106 "menu.edit.undo" : "Nyahcara", 106 "menu.edit.undo": "Nyahcara",
107 "menu.file" : "Fail", 107 "menu.file": "Fail",
108 "menu.help" : "Bantuan", 108 "menu.help": "Bantuan",
109 "menu.help.changelog" : "Log perubahan:", 109 "menu.help.changelog": "Log perubahan:",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "Ketahui Lebih Lanjut", 113 "menu.help.learnMore": "Ketahui Lebih Lanjut",
114 "menu.help.privacy" : "Pernyataan Privasi", 114 "menu.help.privacy": "Pernyataan Privasi",
115 "menu.help.support" : "Sokongan", 115 "menu.help.support": "Sokongan",
116 "menu.help.tos" : "Terma dan Syarat Perkhidmatan", 116 "menu.help.tos": "Terma dan Syarat Perkhidmatan",
117 "menu.services" : "Perkhidmatan", 117 "menu.services": "Perkhidmatan",
118 "menu.services.activatePreviousService" : "Activate previous service", 118 "menu.services.activatePreviousService": "Activate previous service",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "Activate next service", 121 "menu.services.setNextServiceActive": "Activate next service",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "Paparan", 124 "menu.view": "Paparan",
125 "menu.view.enterFullScreen" : "Masuk Skrin Penuh", 125 "menu.view.enterFullScreen": "Masuk Skrin Penuh",
126 "menu.view.exitFullScreen" : "Keluar Skrin Penuh", 126 "menu.view.exitFullScreen": "Keluar Skrin Penuh",
127 "menu.view.reloadFranz" : "Ulangmuat Franz", 127 "menu.view.reloadFranz": "Ulangmuat Ferdi",
128 "menu.view.reloadService" : "Ulangmuat Perkhidmatan", 128 "menu.view.reloadService": "Ulangmuat Perkhidmatan",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "Saiz Sebenar", 130 "menu.view.resetZoom": "Saiz Sebenar",
131 "menu.view.toggleDevTools" : "Tukar Peralatan Pemaju", 131 "menu.view.toggleDevTools": "Tukar Peralatan Pemaju",
132 "menu.view.toggleFullScreen" : "Tukar Skrin Penuh", 132 "menu.view.toggleFullScreen": "Tukar Skrin Penuh",
133 "menu.view.toggleServiceDevTools" : "Ubah Service Developer Tools", 133 "menu.view.toggleServiceDevTools": "Ubah Service Developer Tools",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "Zoom masuk", 135 "menu.view.zoomIn": "Zoom masuk",
136 "menu.view.zoomOut" : "Zoom keluar", 136 "menu.view.zoomOut": "Zoom keluar",
137 "menu.window" : "Tetingkap", 137 "menu.window": "Tetingkap",
138 "menu.window.close" : "Tutup", 138 "menu.window.close": "Tutup",
139 "menu.window.minimize" : "Kecilkan", 139 "menu.window.minimize": "Kecilkan",
140 "menu.workspaces" : "Workspaces", 140 "menu.workspaces": "Workspaces",
141 "menu.workspaces.addNewWorkspace" : "Add New Workspace...", 141 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Close workspace drawer", 142 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
143 "menu.workspaces.defaultWorkspace" : "All services", 143 "menu.workspaces.defaultWorkspace": "All services",
144 "menu.workspaces.openWorkspaceDrawer" : "Open workspace drawer", 144 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
145 "password.email.label" : "Alamat e-mel", 145 "password.email.label": "Alamat e-mel",
146 "password.headline" : "Set Semula Kata Laluan", 146 "password.headline": "Set Semula Kata Laluan",
147 "password.link.login" : "Log masuk akaun kamu", 147 "password.link.login": "Log masuk akaun kamu",
148 "password.link.signup" : "Buka akaun baru percuma", 148 "password.link.signup": "Buka akaun baru percuma",
149 "password.noUser" : "Tiada pengguna dengan alamat e-mel tersebut dijumpai", 149 "password.noUser": "Tiada pengguna dengan alamat e-mel tersebut dijumpai",
150 "password.submit.label" : "Hantar", 150 "password.submit.label": "Hantar",
151 "password.successInfo" : "Sila semak e-mel anda", 151 "password.successInfo": "Sila semak e-mel anda",
152 "premiumFeature.button.upgradeAccount" : "Naik taraf akaun", 152 "premiumFeature.button.upgradeAccount": "Naik taraf akaun",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "Ulangmuat {nama}", 190 "service.crashHandler.action": "Ulangmuat {nama}",
191 "service.crashHandler.autoReload" : "Sedang cuba pulihkan secara automatik {nama} dalam {saat} saat", 191 "service.crashHandler.autoReload": "Sedang cuba pulihkan secara automatik {nama} dalam {saat} saat",
192 "service.crashHandler.headline" : "Alamak!", 192 "service.crashHandler.headline": "Alamak!",
193 "service.crashHandler.text" : "{nama} telah menyebabkan satu ralat.", 193 "service.crashHandler.text": "{nama} telah menyebabkan satu ralat.",
194 "service.disabledHandler.action" : "Bolehkan {nama}", 194 "service.disabledHandler.action": "Bolehkan {nama}",
195 "service.disabledHandler.headline" : "{nama} dinyahdayakan", 195 "service.disabledHandler.headline": "{nama} dinyahdayakan",
196 "service.errorHandler.action" : "Ulangmuat {nama}", 196 "service.errorHandler.action": "Ulangmuat {nama}",
197 "service.errorHandler.editAction" : "Edit {name}", 197 "service.errorHandler.editAction": "Edit {name}",
198 "service.errorHandler.headline" : "Alamak!", 198 "service.errorHandler.headline": "Alamak!",
199 "service.errorHandler.message" : "Error", 199 "service.errorHandler.message": "Error",
200 "service.errorHandler.text" : "{name} has failed to load.", 200 "service.errorHandler.text": "{name} has failed to load.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "Loading", 206 "service.webviewLoader.loading": "Loading",
207 "services.getStarted" : "Bermula", 207 "services.getStarted": "Bermula",
208 "services.welcome" : "Selamat Datang ke Franz", 208 "services.welcome": "Selamat Datang ke Ferdi",
209 "settings.account.account.editButton" : "Edit account", 209 "settings.account.account.editButton": "Edit account",
210 "settings.account.accountType.basic" : "Akaun Asas", 210 "settings.account.accountType.basic": "Akaun Asas",
211 "settings.account.accountType.premium" : "Sokongan Akaun Premium", 211 "settings.account.accountType.premium": "Sokongan Akaun Premium",
212 "settings.account.buttonSave" : "Kemaskini profil", 212 "settings.account.buttonSave": "Kemaskini profil",
213 "settings.account.deleteAccount" : "Hapuskan akaun", 213 "settings.account.deleteAccount": "Hapuskan akaun",
214 "settings.account.deleteEmailSent" : "Anda telah menerima email yang mengandungi link pengesahan untuk memadamkan akaun. Akaun dan semua data anda tidak boleh lagi dikembalikan semula!", 214 "settings.account.deleteEmailSent": "Anda telah menerima email yang mengandungi link pengesahan untuk memadamkan akaun. Akaun dan semua data anda tidak boleh lagi dikembalikan semula!",
215 "settings.account.deleteInfo" : "Jika anda tidak perlukan lagi akaun Franz, anda boleh hapuskan akaun dan data berkaitan di sini.", 215 "settings.account.deleteInfo": "Jika anda tidak perlukan lagi akaun Ferdi, anda boleh hapuskan akaun dan data berkaitan di sini.",
216 "settings.account.headline" : "Akaun", 216 "settings.account.headline": "Akaun",
217 "settings.account.headlineAccount" : "Maklumat Akaun", 217 "settings.account.headlineAccount": "Maklumat Akaun",
218 "settings.account.headlineDangerZone" : "Zon Bahaya", 218 "settings.account.headlineDangerZone": "Zon Bahaya",
219 "settings.account.headlineInvoices" : "Invois", 219 "settings.account.headlineInvoices": "Invois",
220 "settings.account.headlinePassword" : "Tukar katalaluan", 220 "settings.account.headlinePassword": "Tukar katalaluan",
221 "settings.account.headlineProfile" : "Kemaskini maklumat peribadi", 221 "settings.account.headlineProfile": "Kemaskini maklumat peribadi",
222 "settings.account.headlineSubscription" : "Langganan anda", 222 "settings.account.headlineSubscription": "Langganan anda",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "Muat Turun", 225 "settings.account.invoiceDownload": "Muat Turun",
226 "settings.account.manageSubscription.label" : "Urus langganan anda", 226 "settings.account.manageSubscription.label": "Urus langganan anda",
227 "settings.account.successInfo" : "Kemaskini telah disimpan", 227 "settings.account.successInfo": "Kemaskini telah disimpan",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "Cuba lagi", 231 "settings.account.tryReloadServices": "Cuba lagi",
232 "settings.account.tryReloadUserInfoRequest" : "Cuba lagi", 232 "settings.account.tryReloadUserInfoRequest": "Cuba lagi",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "Maklumat pengguna tidak dapat dipapar", 234 "settings.account.userInfoRequestFailed": "Maklumat pengguna tidak dapat dipapar",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "Padamkan Cache", 236 "settings.app.buttonClearAllCache": "Padamkan Cache",
237 "settings.app.buttonInstallUpdate" : "Mulakan semula & pasang kemas kini", 237 "settings.app.buttonInstallUpdate": "Mulakan semula & pasang kemas kini",
238 "settings.app.buttonSearchForUpdate" : "Semak untuk kemaskini", 238 "settings.app.buttonSearchForUpdate": "Semak untuk kemaskini",
239 "settings.app.cacheInfo" : "Franz cache is currently using {size} of disk space.", 239 "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.",
240 "settings.app.currentVersion" : "Current version:", 240 "settings.app.currentVersion": "Current version:",
241 "settings.app.form.autoLaunchInBackground" : "Open in background", 241 "settings.app.form.autoLaunchInBackground": "Open in background",
242 "settings.app.form.autoLaunchOnStart" : "Launch Franz on start", 242 "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start",
243 "settings.app.form.beta" : "Termasuk versi beta", 243 "settings.app.form.beta": "Termasuk versi beta",
244 "settings.app.form.darkMode" : "Join the Dark Side", 244 "settings.app.form.darkMode": "Join the Dark Side",
245 "settings.app.form.enableGPUAcceleration" : "Enable GPU Acceleration", 245 "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration",
246 "settings.app.form.enableSpellchecking" : "Hidupkan semakan ejaan", 246 "settings.app.form.enableSpellchecking": "Hidupkan semakan ejaan",
247 "settings.app.form.enableSystemTray" : "Papar Franz dalam dulang sistem", 247 "settings.app.form.enableSystemTray": "Papar Ferdi dalam dulang sistem",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "Language", 250 "settings.app.form.language": "Language",
251 "settings.app.form.minimizeToSystemTray" : "Minimize Franz to system tray", 251 "settings.app.form.minimizeToSystemTray": "Minimize Ferdi to system tray",
252 "settings.app.form.runInBackground" : "Keep Franz in background when closing the window", 252 "settings.app.form.runInBackground": "Keep Ferdi in background when closing the window",
253 "settings.app.form.showDisabledServices" : "Display disabled services tabs", 253 "settings.app.form.showDisabledServices": "Display disabled services tabs",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Show unread message badge when notifications are disabled", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
255 "settings.app.headline" : "Tetapan", 255 "settings.app.headline": "Tetapan",
256 "settings.app.headlineAdvanced" : "Advanced", 256 "settings.app.headlineAdvanced": "Advanced",
257 "settings.app.headlineAppearance" : "Appearance", 257 "settings.app.headlineAppearance": "Appearance",
258 "settings.app.headlineGeneral" : "General", 258 "settings.app.headlineGeneral": "General",
259 "settings.app.headlineLanguage" : "Language", 259 "settings.app.headlineLanguage": "Language",
260 "settings.app.headlineUpdates" : "Updates", 260 "settings.app.headlineUpdates": "Updates",
261 "settings.app.languageDisclaimer" : "Official translations are English & German. All other languages are community based translations.", 261 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
262 "settings.app.restartRequired" : "Changes require restart", 262 "settings.app.restartRequired": "Changes require restart",
263 "settings.app.subheadlineCache" : "Cache", 263 "settings.app.subheadlineCache": "Cache",
264 "settings.app.translationHelp" : "Help us to translate Franz into your language.", 264 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
265 "settings.app.updateStatusAvailable" : "Update available, downloading...", 265 "settings.app.updateStatusAvailable": "Update available, downloading...",
266 "settings.app.updateStatusSearching" : "Is searching for update", 266 "settings.app.updateStatusSearching": "Is searching for update",
267 "settings.app.updateStatusUpToDate" : "You are using the latest version of Franz", 267 "settings.app.updateStatusUpToDate": "You are using the latest version of Ferdi",
268 "settings.invite.headline" : "Invite Friends", 268 "settings.invite.headline": "Invite Friends",
269 "settings.navigation.account" : "Akaun", 269 "settings.navigation.account": "Akaun",
270 "settings.navigation.availableServices" : "Available services", 270 "settings.navigation.availableServices": "Available services",
271 "settings.navigation.inviteFriends" : "Invite Friends", 271 "settings.navigation.inviteFriends": "Invite Friends",
272 "settings.navigation.logout" : "Logout", 272 "settings.navigation.logout": "Logout",
273 "settings.navigation.settings" : "Tetapan", 273 "settings.navigation.settings": "Tetapan",
274 "settings.navigation.team" : "Manage Team", 274 "settings.navigation.team": "Manage Team",
275 "settings.navigation.yourServices" : "Your services", 275 "settings.navigation.yourServices": "Your services",
276 "settings.navigation.yourWorkspaces" : "Your workspaces", 276 "settings.navigation.yourWorkspaces": "Your workspaces",
277 "settings.recipes.all" : "All services", 277 "settings.recipes.all": "All services",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "Available services", 285 "settings.recipes.headline": "Available services",
286 "settings.recipes.missingService" : "Missing a service?", 286 "settings.recipes.missingService": "Missing a service?",
287 "settings.recipes.mostPopular" : "Most popular", 287 "settings.recipes.mostPopular": "Most popular",
288 "settings.recipes.nothingFound" : "Sorry, but no service matched your search term.", 288 "settings.recipes.nothingFound": "Sorry, but no service matched your search term.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Service successfully added", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Service successfully added",
290 "settings.searchService" : "Search service", 290 "settings.searchService": "Search service",
291 "settings.service.error.goBack" : "Back to services", 291 "settings.service.error.goBack": "Back to services",
292 "settings.service.error.headline" : "Error", 292 "settings.service.error.headline": "Error",
293 "settings.service.error.message" : "Could not load service recipe.", 293 "settings.service.error.message": "Could not load service recipe.",
294 "settings.service.form.addServiceHeadline" : "Add {name}", 294 "settings.service.form.addServiceHeadline": "Add {name}",
295 "settings.service.form.availableServices" : "Available services", 295 "settings.service.form.availableServices": "Available services",
296 "settings.service.form.customUrl" : "Custom server", 296 "settings.service.form.customUrl": "Custom server",
297 "settings.service.form.customUrlPremiumInfo" : "To add self hosted services, you need a Franz Premium Supporter Account.", 297 "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.",
298 "settings.service.form.customUrlUpgradeAccount" : "Upgrade your account", 298 "settings.service.form.customUrlUpgradeAccount": "Upgrade your account",
299 "settings.service.form.customUrlValidationError" : "Could not validate custom {name} server.", 299 "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.",
300 "settings.service.form.deleteButton" : "Delete service", 300 "settings.service.form.deleteButton": "Delete service",
301 "settings.service.form.editServiceHeadline" : "Edit {name}", 301 "settings.service.form.editServiceHeadline": "Edit {name}",
302 "settings.service.form.enableAudio" : "Enable audio", 302 "settings.service.form.enableAudio": "Enable audio",
303 "settings.service.form.enableBadge" : "Show unread message badges", 303 "settings.service.form.enableBadge": "Show unread message badges",
304 "settings.service.form.enableDarkMode" : "Enable Dark Mode", 304 "settings.service.form.enableDarkMode": "Enable Dark Mode",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "Enable notifications", 306 "settings.service.form.enableNotification": "Enable notifications",
307 "settings.service.form.enableService" : "Enable service", 307 "settings.service.form.enableService": "Enable service",
308 "settings.service.form.headlineBadges" : "Unread message badges", 308 "settings.service.form.headlineBadges": "Unread message badges",
309 "settings.service.form.headlineGeneral" : "General", 309 "settings.service.form.headlineGeneral": "General",
310 "settings.service.form.headlineNotifications" : "Notifications", 310 "settings.service.form.headlineNotifications": "Notifications",
311 "settings.service.form.icon" : "Custom icon", 311 "settings.service.form.icon": "Custom icon",
312 "settings.service.form.iconDelete" : "Hapus", 312 "settings.service.form.iconDelete": "Hapus",
313 "settings.service.form.iconUpload" : "Drop your image, or click here", 313 "settings.service.form.iconUpload": "Drop your image, or click here",
314 "settings.service.form.indirectMessageInfo" : "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "Show message badge for all new messages", 315 "settings.service.form.indirectMessages": "Show message badge for all new messages",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "When disabled, all notification sounds and audio playback are muted", 317 "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted",
318 "settings.service.form.name" : "Nama", 318 "settings.service.form.name": "Nama",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS Proxy Settings", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
320 "settings.service.form.proxy.host" : "Proxy Host\/IP", 320 "settings.service.form.proxy.host": "Proxy Host/IP",
321 "settings.service.form.proxy.info" : "Proxy settings will not synced with the Franz servers.", 321 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
322 "settings.service.form.proxy.isEnabled" : "Use Proxy", 322 "settings.service.form.proxy.isEnabled": "Use Proxy",
323 "settings.service.form.proxy.password" : "Password (optional)", 323 "settings.service.form.proxy.password": "Password (optional)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Please restart Franz after changing proxy Settings.", 325 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
326 "settings.service.form.proxy.user" : "User (optional)", 326 "settings.service.form.proxy.user": "User (optional)",
327 "settings.service.form.saveButton" : "Save service", 327 "settings.service.form.saveButton": "Save service",
328 "settings.service.form.tabHosted" : "Hosted", 328 "settings.service.form.tabHosted": "Hosted",
329 "settings.service.form.tabOnPremise" : "Self hosted ⭐️", 329 "settings.service.form.tabOnPremise": "Self hosted ⭐️",
330 "settings.service.form.team" : "Team", 330 "settings.service.form.team": "Team",
331 "settings.service.form.useHostedService" : "Use the hosted {name} service.", 331 "settings.service.form.useHostedService": "Use the hosted {name} service.",
332 "settings.service.form.yourServices" : "Your services", 332 "settings.service.form.yourServices": "Your services",
333 "settings.services.deletedInfo" : "Service has been deleted", 333 "settings.services.deletedInfo": "Service has been deleted",
334 "settings.services.discoverServices" : "Discover services", 334 "settings.services.discoverServices": "Discover services",
335 "settings.services.headline" : "Your services", 335 "settings.services.headline": "Your services",
336 "settings.services.noServicesAdded" : "You haven't added any services yet.", 336 "settings.services.noServicesAdded": "You haven't added any services yet.",
337 "settings.services.servicesRequestFailed" : "Could not load your services", 337 "settings.services.servicesRequestFailed": "Could not load your services",
338 "settings.services.tooltip.isDisabled" : "Service is disabled", 338 "settings.services.tooltip.isDisabled": "Service is disabled",
339 "settings.services.tooltip.isMuted" : "All sounds are muted", 339 "settings.services.tooltip.isMuted": "All sounds are muted",
340 "settings.services.tooltip.notificationsDisabled" : "Notifications are disabled", 340 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled",
341 "settings.services.updatedInfo" : "Kemaskini telah disimpan", 341 "settings.services.updatedInfo": "Kemaskini telah disimpan",
342 "settings.team.contentHeadline" : "Franz for Teams", 342 "settings.team.contentHeadline": "Franz for Teams",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "Team", 344 "settings.team.headline": "Team",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "Manage your Team on meetfranz.com", 346 "settings.team.manageAction": "Manage your Team on meetfranz.com",
347 "settings.team.upgradeAction" : "Upgrade your Account", 347 "settings.team.upgradeAction": "Upgrade your Account",
348 "settings.user.form.accountType.company" : "Company", 348 "settings.user.form.accountType.company": "Company",
349 "settings.user.form.accountType.individual" : "Individual", 349 "settings.user.form.accountType.individual": "Individual",
350 "settings.user.form.accountType.label" : "Account type", 350 "settings.user.form.accountType.label": "Account type",
351 "settings.user.form.accountType.non-profit" : "Non-Profit", 351 "settings.user.form.accountType.non-profit": "Non-Profit",
352 "settings.user.form.currentPassword" : "Current password", 352 "settings.user.form.currentPassword": "Current password",
353 "settings.user.form.email" : "Email", 353 "settings.user.form.email": "Email",
354 "settings.user.form.firstname" : "First Name", 354 "settings.user.form.firstname": "First Name",
355 "settings.user.form.lastname" : "Last Name", 355 "settings.user.form.lastname": "Last Name",
356 "settings.user.form.newPassword" : "New password", 356 "settings.user.form.newPassword": "New password",
357 "settings.workspace.add.form.name" : "Nama", 357 "settings.workspace.add.form.name": "Nama",
358 "settings.workspace.add.form.submitButton" : "Create workspace", 358 "settings.workspace.add.form.submitButton": "Create workspace",
359 "settings.workspace.form.buttonDelete" : "Delete workspace", 359 "settings.workspace.form.buttonDelete": "Delete workspace",
360 "settings.workspace.form.buttonSave" : "Save workspace", 360 "settings.workspace.form.buttonSave": "Save workspace",
361 "settings.workspace.form.name" : "Nama", 361 "settings.workspace.form.name": "Nama",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Services in this Workspace", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
363 "settings.workspace.form.yourWorkspaces" : "Your workspaces", 363 "settings.workspace.form.yourWorkspaces": "Your workspaces",
364 "settings.workspaces.deletedInfo" : "Workspace has been deleted", 364 "settings.workspaces.deletedInfo": "Workspace has been deleted",
365 "settings.workspaces.headline" : "Your workspaces", 365 "settings.workspaces.headline": "Your workspaces",
366 "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", 366 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
367 "settings.workspaces.tryReloadWorkspaces" : "Cuba lagi", 367 "settings.workspaces.tryReloadWorkspaces": "Cuba lagi",
368 "settings.workspaces.updatedInfo" : "Kemaskini telah disimpan", 368 "settings.workspaces.updatedInfo": "Kemaskini telah disimpan",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", 371 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "Add new service", 375 "sidebar.addNewService": "Add new service",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", 377 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
378 "sidebar.muteApp" : "Disable notifications & audio", 378 "sidebar.muteApp": "Disable notifications & audio",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "Open workspace drawer", 380 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
381 "sidebar.settings" : "Tetapan", 381 "sidebar.settings": "Tetapan",
382 "sidebar.unmuteApp" : "Enable notifications & audio", 382 "sidebar.unmuteApp": "Enable notifications & audio",
383 "signup.email.label" : "Email address", 383 "signup.email.label": "Email address",
384 "signup.emailDuplicate" : "A user with that email address already exists", 384 "signup.emailDuplicate": "A user with that email address already exists",
385 "signup.firstname.label" : "First Name", 385 "signup.firstname.label": "First Name",
386 "signup.headline" : "Sign up", 386 "signup.headline": "Sign up",
387 "signup.lastname.label" : "Last Name", 387 "signup.lastname.label": "Last Name",
388 "signup.legal.info" : "By creating a Franz account you accept the", 388 "signup.legal.info": "By creating a Ferdi account you accept the",
389 "signup.legal.privacy" : "Pernyataan Privasi", 389 "signup.legal.privacy": "Pernyataan Privasi",
390 "signup.legal.terms" : "Terms of service", 390 "signup.legal.terms": "Terms of service",
391 "signup.link.login" : "Already have an account, sign in?", 391 "signup.link.login": "Already have an account, sign in?",
392 "signup.password.label" : "Kata laluan", 392 "signup.password.label": "Kata laluan",
393 "signup.submit.label" : "Create account", 393 "signup.submit.label": "Create account",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "Cancel", 405 "subscriptionPopup.buttonCancel": "Cancel",
406 "subscriptionPopup.buttonDone" : "Done", 406 "subscriptionPopup.buttonDone": "Done",
407 "tabs.item.deleteService" : "Delete service", 407 "tabs.item.deleteService": "Delete service",
408 "tabs.item.disableAudio" : "Disable audio", 408 "tabs.item.disableAudio": "Disable audio",
409 "tabs.item.disableNotifications" : "Disable notifications", 409 "tabs.item.disableNotifications": "Disable notifications",
410 "tabs.item.disableService" : "Disable service", 410 "tabs.item.disableService": "Disable service",
411 "tabs.item.edit" : "Ubahsuai", 411 "tabs.item.edit": "Ubahsuai",
412 "tabs.item.enableAudio" : "Enable audio", 412 "tabs.item.enableAudio": "Enable audio",
413 "tabs.item.enableNotification" : "Enable notifications", 413 "tabs.item.enableNotification": "Enable notifications",
414 "tabs.item.enableService" : "Enable service", 414 "tabs.item.enableService": "Enable service",
415 "tabs.item.reload" : "Refresh", 415 "tabs.item.reload": "Refresh",
416 "validation.email" : "{field} is not valid", 416 "validation.email": "{field} is not valid",
417 "validation.minLength" : "{field} should be at least {length} characters long", 417 "validation.minLength": "{field} should be at least {length} characters long",
418 "validation.oneRequired" : "At least one is required", 418 "validation.oneRequired": "At least one is required",
419 "validation.required" : "{field} is required", 419 "validation.required": "{field} is required",
420 "validation.url" : "{field} is not a valid URL", 420 "validation.url": "{field} is not a valid URL",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "Refresh", 425 "webControls.reload": "Refresh",
426 "welcome.loginButton" : "Login to your account", 426 "welcome.loginButton": "Login to your account",
427 "welcome.signupButton" : "Buka akaun baru percuma", 427 "welcome.signupButton": "Buka akaun baru percuma",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "All services", 429 "workspaceDrawer.allServices": "All services",
430 "workspaceDrawer.headline" : "Workspaces", 430 "workspaceDrawer.headline": "Workspaces",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/nl-BE.json b/src/i18n/locales/nl-BE.json
index 0e0076a4e..d29bbca3e 100644
--- a/src/i18n/locales/nl-BE.json
+++ b/src/i18n/locales/nl-BE.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Kon gebruikersinformatie niet laden", 280 "settings.account.userInfoRequestFailed": "Kon gebruikersinformatie niet laden",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Cache wissen", 283 "settings.app.buttonClearAllCache": "Cache wissen",
284 "settings.app.buttonInstallUpdate": "Opnieuw opstarten & update installeren", 284 "settings.app.buttonInstallUpdate": "Opnieuw opstarten & update installeren",
285 "settings.app.buttonSearchForUpdate": "Controleer op updates", 285 "settings.app.buttonSearchForUpdate": "Controleer op updates",
diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json
index f037d1777..14a90a245 100644
--- a/src/i18n/locales/nl.json
+++ b/src/i18n/locales/nl.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade naar Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade naar Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Kon gebruikersinformatie niet laden", 280 "settings.account.userInfoRequestFailed": "Kon gebruikersinformatie niet laden",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Cache legen", 283 "settings.app.buttonClearAllCache": "Cache legen",
284 "settings.app.buttonInstallUpdate": "Opnieuw opstarten & update installeren", 284 "settings.app.buttonInstallUpdate": "Opnieuw opstarten & update installeren",
285 "settings.app.buttonSearchForUpdate": "Controleer op updates", 285 "settings.app.buttonSearchForUpdate": "Controleer op updates",
diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json
index 0f0b6cc95..d4603ce01 100644
--- a/src/i18n/locales/no.json
+++ b/src/i18n/locales/no.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Oppgrader til Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Oppgrader til Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Kunne ikke laste brukerinformasjonen", 280 "settings.account.userInfoRequestFailed": "Kunne ikke laste brukerinformasjonen",
281 "settings.account.yourLicense": "Din Ferdi lisens", 281 "settings.account.yourLicense": "Din Ferdi lisens",
282 "settings.app.accentColorInfo": "Skriv inn din farge for fremhevelse i CSS-kompatibelt format. (Standard: #7367f0)", 282 "settings.app.accentColorInfo": "Skriv inn din farge for fremhevelse i CSS-kompatibelt format. (Standard: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Tøm hurtiglager", 283 "settings.app.buttonClearAllCache": "Tøm hurtiglager",
284 "settings.app.buttonInstallUpdate": "Start på nytt og installer oppdatering", 284 "settings.app.buttonInstallUpdate": "Start på nytt og installer oppdatering",
285 "settings.app.buttonSearchForUpdate": "Se etter oppdateringer", 285 "settings.app.buttonSearchForUpdate": "Se etter oppdateringer",
diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json
index 8eae2deac..0fc50612e 100644
--- a/src/i18n/locales/pl.json
+++ b/src/i18n/locales/pl.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Ulepsz konto do Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Ulepsz konto do Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Nie można wczytać informacji o użytkowniku", 280 "settings.account.userInfoRequestFailed": "Nie można wczytać informacji o użytkowniku",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Wyczyść pamięć podręczną (cache)", 283 "settings.app.buttonClearAllCache": "Wyczyść pamięć podręczną (cache)",
284 "settings.app.buttonInstallUpdate": "Uruchom ponownie i zainstaluj aktualizację", 284 "settings.app.buttonInstallUpdate": "Uruchom ponownie i zainstaluj aktualizację",
285 "settings.app.buttonSearchForUpdate": "Sprawdź aktualizacje", 285 "settings.app.buttonSearchForUpdate": "Sprawdź aktualizacje",
diff --git a/src/i18n/locales/pt-BR.json b/src/i18n/locales/pt-BR.json
index 3677e5205..018eb5ed7 100644
--- a/src/i18n/locales/pt-BR.json
+++ b/src/i18n/locales/pt-BR.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Atualizar para o Ferdi Profissional", 279 "settings.account.upgradeToPro.label": "Atualizar para o Ferdi Profissional",
280 "settings.account.userInfoRequestFailed": "Não é possível carregar a informação do utilizador", 280 "settings.account.userInfoRequestFailed": "Não é possível carregar a informação do utilizador",
281 "settings.account.yourLicense": "Sua lincença Ferdi", 281 "settings.account.yourLicense": "Sua lincença Ferdi",
282 "settings.app.accentColorInfo": "Informe sua cor de destaque em um formato compatível com CSS. (Padrão: #7367f0)", 282 "settings.app.accentColorInfo": "Informe sua cor de destaque em um formato compatível com CSS. (Padrão: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Limpar cache", 283 "settings.app.buttonClearAllCache": "Limpar cache",
284 "settings.app.buttonInstallUpdate": "Reiniciar e instalar atualizações", 284 "settings.app.buttonInstallUpdate": "Reiniciar e instalar atualizações",
285 "settings.app.buttonSearchForUpdate": "Procurar atualizações", 285 "settings.app.buttonSearchForUpdate": "Procurar atualizações",
diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json
index b3b110a7d..239efcf50 100644
--- a/src/i18n/locales/pt.json
+++ b/src/i18n/locales/pt.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Faça upgrade para Ferdi Profissional", 279 "settings.account.upgradeToPro.label": "Faça upgrade para Ferdi Profissional",
280 "settings.account.userInfoRequestFailed": "Não foi possível carregar as informações de utilizador", 280 "settings.account.userInfoRequestFailed": "Não foi possível carregar as informações de utilizador",
281 "settings.account.yourLicense": "A sua licença Ferdi", 281 "settings.account.yourLicense": "A sua licença Ferdi",
282 "settings.app.accentColorInfo": "Defina a cor de destaque em formato CSS compatível. (Padrão: #7367f0)", 282 "settings.app.accentColorInfo": "Defina a cor de destaque em formato CSS compatível. (Padrão: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Limpar cache", 283 "settings.app.buttonClearAllCache": "Limpar cache",
284 "settings.app.buttonInstallUpdate": "Reiniciar e instalar atualizações", 284 "settings.app.buttonInstallUpdate": "Reiniciar e instalar atualizações",
285 "settings.app.buttonSearchForUpdate": "Procurar atualizações", 285 "settings.app.buttonSearchForUpdate": "Procurar atualizações",
diff --git a/src/i18n/locales/ro.json b/src/i18n/locales/ro.json
index 99624bbdf..454ffe9e2 100644
--- a/src/i18n/locales/ro.json
+++ b/src/i18n/locales/ro.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade la Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade la Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json
index dc8ea7b6f..c935ce715 100644
--- a/src/i18n/locales/ru.json
+++ b/src/i18n/locales/ru.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Повысьте до Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Повысьте до Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Невозможно загрузить информацию пользователя", 280 "settings.account.userInfoRequestFailed": "Невозможно загрузить информацию пользователя",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Очистить кэш", 283 "settings.app.buttonClearAllCache": "Очистить кэш",
284 "settings.app.buttonInstallUpdate": "Перезапустить и установить обновления", 284 "settings.app.buttonInstallUpdate": "Перезапустить и установить обновления",
285 "settings.app.buttonSearchForUpdate": "Проверить обновления", 285 "settings.app.buttonSearchForUpdate": "Проверить обновления",
diff --git a/src/i18n/locales/si.json b/src/i18n/locales/si.json
index 3c26f4f22..b2ae71a3e 100644
--- a/src/i18n/locales/si.json
+++ b/src/i18n/locales/si.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Reload", 2 "app.errorHandler.action": "Reload",
3 "app.errorHandler.headline" : "Something went wrong", 3 "app.errorHandler.headline": "Something went wrong",
4 "connectionLostBanner.cta" : "Reload Service", 4 "connectionLostBanner.cta": "Reload Service",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "Changes in Franz {version}", 7 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "Franz will continue in {seconds} seconds.", 9 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "Upgrade account", 14 "feature.delayApp.upgrade.actionShort": "Upgrade account",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "Send as email", 32 "feature.shareFranz.action.email": "Send as email",
33 "feature.shareFranz.action.facebook" : "Share on Facebook", 33 "feature.shareFranz.action.facebook": "Share on Facebook",
34 "feature.shareFranz.action.twitter" : "Share on Twitter", 34 "feature.shareFranz.action.twitter": "Share on Twitter",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", 38 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "ෆ්රාන්ස් මාර්ගගත සේවාවන් වෙත සම්බන්ධ වීමට නොහැක.", 49 "global.api.unhealthy": "ෆ්රාන්ස් මාර්ගගත සේවාවන් වෙත සම්බන්ධ වීමට නොහැක.",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "ඔබ අන්තර්ජාලයට සම්බන්ධ වී නැත.", 51 "global.notConnectedToTheInternet": "ඔබ අන්තර්ජාලයට සම්බන්ධ වී නැත.",
52 "global.spellchecker.useDefault" : "Use System Default ({default})", 52 "global.spellchecker.useDefault": "Use System Default ({default})",
53 "global.spellchecking.autodetect" : "Detect language automatically", 53 "global.spellchecking.autodetect": "Detect language automatically",
54 "global.spellchecking.autodetect.short" : "Automatic", 54 "global.spellchecking.autodetect.short": "Automatic",
55 "global.spellchecking.language" : "Spell checking language", 55 "global.spellchecking.language": "Spell checking language",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "ඔබගේ ෆ්රාන්ස් සේවාවන් නැවත ඇතුලත් කරගන්න.", 57 "import.headline": "ඔබගේ ෆ්රාන්ස් සේවාවන් නැවත ඇතුලත් කරගන්න.",
58 "import.notSupportedHeadline" : "සේවාවන් සඳහා ෆ්රාන්ස් 5 හි තවමත් පහසුකම් සලසා නැත.", 58 "import.notSupportedHeadline": "සේවාවන් සඳහා ෆ්රාන්ස් 5 හි තවමත් පහසුකම් සලසා නැත.",
59 "import.skip.label" : "සේවාවන් මවිසින් ඇතුලත් කල යුතුය. ", 59 "import.skip.label": "සේවාවන් මවිසින් ඇතුලත් කල යුතුය. ",
60 "import.submit.label" : "සේවාවන් ස්වයං ඇතුලත් කරගැනීම ", 60 "import.submit.label": "සේවාවන් ස්වයං ඇතුලත් කරගැනීම ",
61 "infobar.buttonChangelog" : "අලුත් දෑ", 61 "infobar.buttonChangelog": "අලුත් දෑ",
62 "infobar.buttonInstallUpdate" : "නැවත අරඹා යාවත්කාල කරන්න.", 62 "infobar.buttonInstallUpdate": "නැවත අරඹා යාවත්කාල කරන්න.",
63 "infobar.buttonReloadServices" : "සේවාවන් නැවත ඇරඹීම", 63 "infobar.buttonReloadServices": "සේවාවන් නැවත ඇරඹීම",
64 "infobar.requiredRequestsFailed" : "සේවාවන් සහ පරිශීලක තොරතුරු ලබාගත නොහැක.", 64 "infobar.requiredRequestsFailed": "සේවාවන් සහ පරිශීලක තොරතුරු ලබාගත නොහැක.",
65 "infobar.servicesUpdated" : "ඔබගේ සේවාවන් යාවත්කාල කර ඇත.", 65 "infobar.servicesUpdated": "ඔබගේ සේවාවන් යාවත්කාල කර ඇත.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "ෆ්රාන්ස් හි නව සංස්කරණයක් දැන් ලබා ගත හැක.", 67 "infobar.updateAvailable": "ෆ්රාන්ස් හි නව සංස්කරණයක් දැන් ලබා ගත හැක.",
68 "invite.email.label" : "විද්‍යුත් තැපැල් ලිපිනය ", 68 "invite.email.label": "විද්‍යුත් තැපැල් ලිපිනය ",
69 "invite.headline.friends" : "මිතුරන් 3කට ආරාධනා කරන්න.", 69 "invite.headline.friends": "මිතුරන් 3කට ආරාධනා කරන්න.",
70 "invite.name.label" : "නම", 70 "invite.name.label": "නම",
71 "invite.skip.label" : "මා මෙය පසුව කරන්නම්", 71 "invite.skip.label": "මා මෙය පසුව කරන්නම්",
72 "invite.submit.label" : "ඇරයුම් යවන්න ", 72 "invite.submit.label": "ඇරයුම් යවන්න ",
73 "invite.successInfo" : "Invitations sent successfully", 73 "invite.successInfo": "Invitations sent successfully",
74 "login.email.label" : "විද්‍යුත් තැපැල් ලිපිනය", 74 "login.email.label": "විද්‍යුත් තැපැල් ලිපිනය",
75 "login.headline" : "ඇතුළු වන්න", 75 "login.headline": "ඇතුළු වන්න",
76 "login.invalidCredentials" : "විද්‍යුත් තැපැල් ලිපිනය හෝ මුර පදය වැරදියි", 76 "login.invalidCredentials": "විද්‍යුත් තැපැල් ලිපිනය හෝ මුර පදය වැරදියි",
77 "login.link.password" : "මුර පදය අලුත් කරන්න", 77 "login.link.password": "මුර පදය අලුත් කරන්න",
78 "login.link.signup" : "නොමිළ ගිණුමක් සකසන්න", 78 "login.link.signup": "නොමිළ ගිණුමක් සකසන්න",
79 "login.password.label" : "මුරපදය", 79 "login.password.label": "මුරපදය",
80 "login.serverLogout" : "ඔබේ ඇතුළු වීම් කාලය අවසන්, නැවත ඇතුල් වන්න.", 80 "login.serverLogout": "ඔබේ ඇතුළු වීම් කාලය අවසන්, නැවත ඇතුල් වන්න.",
81 "login.submit.label" : "ඇතුල් වන්න", 81 "login.submit.label": "ඇතුල් වන්න",
82 "login.tokenExpired" : "ඔබේ ඇතුළු වීම් කාලය අවසන්, නැවත ඇතුල් වන්න.", 82 "login.tokenExpired": "ඔබේ ඇතුළු වීම් කාලය අවසන්, නැවත ඇතුල් වන්න.",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "About Franz", 85 "menu.app.about": "About Ferdi",
86 "menu.app.announcement" : "What's new?", 86 "menu.app.announcement": "What's new?",
87 "menu.app.checkForUpdates" : "Check for updates", 87 "menu.app.checkForUpdates": "Check for updates",
88 "menu.app.hide" : "Hide", 88 "menu.app.hide": "Hide",
89 "menu.app.hideOthers" : "Hide Others", 89 "menu.app.hideOthers": "Hide Others",
90 "menu.app.quit" : "Quit", 90 "menu.app.quit": "Quit",
91 "menu.app.settings" : "Settings", 91 "menu.app.settings": "Settings",
92 "menu.app.unhide" : "Unhide", 92 "menu.app.unhide": "Unhide",
93 "menu.edit" : "Edit", 93 "menu.edit": "Edit",
94 "menu.edit.copy" : "Copy", 94 "menu.edit.copy": "Copy",
95 "menu.edit.cut" : "Cut", 95 "menu.edit.cut": "Cut",
96 "menu.edit.delete" : "Delete", 96 "menu.edit.delete": "Delete",
97 "menu.edit.emojiSymbols" : "Emoji & Symbols", 97 "menu.edit.emojiSymbols": "Emoji & Symbols",
98 "menu.edit.paste" : "Paste", 98 "menu.edit.paste": "Paste",
99 "menu.edit.pasteAndMatchStyle" : "Paste And Match Style", 99 "menu.edit.pasteAndMatchStyle": "Paste And Match Style",
100 "menu.edit.redo" : "Redo", 100 "menu.edit.redo": "Redo",
101 "menu.edit.selectAll" : "Select All", 101 "menu.edit.selectAll": "Select All",
102 "menu.edit.speech" : "Speech", 102 "menu.edit.speech": "Speech",
103 "menu.edit.startDictation" : "Start Dictation", 103 "menu.edit.startDictation": "Start Dictation",
104 "menu.edit.startSpeaking" : "Start Speaking", 104 "menu.edit.startSpeaking": "Start Speaking",
105 "menu.edit.stopSpeaking" : "Stop Speaking", 105 "menu.edit.stopSpeaking": "Stop Speaking",
106 "menu.edit.undo" : "Undo", 106 "menu.edit.undo": "Undo",
107 "menu.file" : "File", 107 "menu.file": "File",
108 "menu.help" : "Help", 108 "menu.help": "Help",
109 "menu.help.changelog" : "Changelog", 109 "menu.help.changelog": "Changelog",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "Learn More", 113 "menu.help.learnMore": "Learn More",
114 "menu.help.privacy" : "Privacy Statement", 114 "menu.help.privacy": "Privacy Statement",
115 "menu.help.support" : "Support", 115 "menu.help.support": "Support",
116 "menu.help.tos" : "Terms of Service", 116 "menu.help.tos": "Terms of Service",
117 "menu.services" : "Services", 117 "menu.services": "Services",
118 "menu.services.activatePreviousService" : "Activate previous service", 118 "menu.services.activatePreviousService": "Activate previous service",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "Activate next service", 121 "menu.services.setNextServiceActive": "Activate next service",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "View", 124 "menu.view": "View",
125 "menu.view.enterFullScreen" : "Enter Full Screen", 125 "menu.view.enterFullScreen": "Enter Full Screen",
126 "menu.view.exitFullScreen" : "Exit Full Screen", 126 "menu.view.exitFullScreen": "Exit Full Screen",
127 "menu.view.reloadFranz" : "Reload Franz", 127 "menu.view.reloadFranz": "Reload Ferdi",
128 "menu.view.reloadService" : "Reload Service", 128 "menu.view.reloadService": "Reload Service",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "Actual Size", 130 "menu.view.resetZoom": "Actual Size",
131 "menu.view.toggleDevTools" : "Toggle Developer Tools", 131 "menu.view.toggleDevTools": "Toggle Developer Tools",
132 "menu.view.toggleFullScreen" : "Toggle Full Screen", 132 "menu.view.toggleFullScreen": "Toggle Full Screen",
133 "menu.view.toggleServiceDevTools" : "Toggle Service Developer Tools", 133 "menu.view.toggleServiceDevTools": "Toggle Service Developer Tools",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "Zoom In", 135 "menu.view.zoomIn": "Zoom In",
136 "menu.view.zoomOut" : "Zoom Out", 136 "menu.view.zoomOut": "Zoom Out",
137 "menu.window" : "Window", 137 "menu.window": "Window",
138 "menu.window.close" : "Close", 138 "menu.window.close": "Close",
139 "menu.window.minimize" : "Minimize", 139 "menu.window.minimize": "Minimize",
140 "menu.workspaces" : "Workspaces", 140 "menu.workspaces": "Workspaces",
141 "menu.workspaces.addNewWorkspace" : "Add New Workspace...", 141 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Close workspace drawer", 142 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
143 "menu.workspaces.defaultWorkspace" : "All services", 143 "menu.workspaces.defaultWorkspace": "All services",
144 "menu.workspaces.openWorkspaceDrawer" : "Open workspace drawer", 144 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
145 "password.email.label" : "විද්‍යුත් තැපැල් ලිපිනය", 145 "password.email.label": "විද්‍යුත් තැපැල් ලිපිනය",
146 "password.headline" : "මුරපදය නැවත සකසන්න ", 146 "password.headline": "මුරපදය නැවත සකසන්න ",
147 "password.link.login" : "ඔබේ ගිණුමට ඇතුල් වන්න ", 147 "password.link.login": "ඔබේ ගිණුමට ඇතුල් වන්න ",
148 "password.link.signup" : "නව නොමිල ගිණුමක් අරඹන්න ", 148 "password.link.signup": "නව නොමිල ගිණුමක් අරඹන්න ",
149 "password.noUser" : "එම විද්‍යුත් තැපැල් ලිපිනය යටතේ කිසිදු පරිශීලකයෙක් නොමැත ", 149 "password.noUser": "එම විද්‍යුත් තැපැල් ලිපිනය යටතේ කිසිදු පරිශීලකයෙක් නොමැත ",
150 "password.submit.label" : "යවන්න", 150 "password.submit.label": "යවන්න",
151 "password.successInfo" : "කරුණාකර ඔබේ විද්‍යුත් තැපෑල පිරික්සන්න", 151 "password.successInfo": "කරුණාකර ඔබේ විද්‍යුත් තැපෑල පිරික්සන්න",
152 "premiumFeature.button.upgradeAccount" : "Upgrade account", 152 "premiumFeature.button.upgradeAccount": "Upgrade account",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "{name} නැවත ලබාගන්න", 190 "service.crashHandler.action": "{name} නැවත ලබාගන්න",
191 "service.crashHandler.autoReload" : "{name} ස්වයංක්‍රීය ප්‍රතිෂ්ඨාපනය තවත් තත්පර {seconds}කින් ", 191 "service.crashHandler.autoReload": "{name} ස්වයංක්‍රීය ප්‍රතිෂ්ඨාපනය තවත් තත්පර {seconds}කින් ",
192 "service.crashHandler.headline" : "අපොයි!", 192 "service.crashHandler.headline": "අපොයි!",
193 "service.crashHandler.text" : "{name} හි දෝෂයකි. ", 193 "service.crashHandler.text": "{name} හි දෝෂයකි. ",
194 "service.disabledHandler.action" : "{name} සක්‍රීය කරන්න", 194 "service.disabledHandler.action": "{name} සක්‍රීය කරන්න",
195 "service.disabledHandler.headline" : "{name} අක්‍රීයයි.", 195 "service.disabledHandler.headline": "{name} අක්‍රීයයි.",
196 "service.errorHandler.action" : "{name} නැවත ලබාගන්න", 196 "service.errorHandler.action": "{name} නැවත ලබාගන්න",
197 "service.errorHandler.editAction" : "Edit {name}", 197 "service.errorHandler.editAction": "Edit {name}",
198 "service.errorHandler.headline" : "අපොයි!", 198 "service.errorHandler.headline": "අපොයි!",
199 "service.errorHandler.message" : "Error", 199 "service.errorHandler.message": "Error",
200 "service.errorHandler.text" : "{name} has failed to load.", 200 "service.errorHandler.text": "{name} has failed to load.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "Loading", 206 "service.webviewLoader.loading": "Loading",
207 "services.getStarted" : "ආරම්භ කරන්න", 207 "services.getStarted": "ආරම්භ කරන්න",
208 "services.welcome" : "ෆ්‍රාන්ස් වෙත සාදරයෙන් පිළිගනිමු", 208 "services.welcome": "ෆ්‍රාන්ස් වෙත සාදරයෙන් පිළිගනිමු",
209 "settings.account.account.editButton" : "ගිණුම සකසන්න", 209 "settings.account.account.editButton": "ගිණුම සකසන්න",
210 "settings.account.accountType.basic" : "මුලික ගිණුම ", 210 "settings.account.accountType.basic": "මුලික ගිණුම ",
211 "settings.account.accountType.premium" : "විශේෂ ආධාරකාර ගිණුම ", 211 "settings.account.accountType.premium": "විශේෂ ආධාරකාර ගිණුම ",
212 "settings.account.buttonSave" : "පැතිකඩ යාවත්කාල කිරීම ", 212 "settings.account.buttonSave": "පැතිකඩ යාවත්කාල කිරීම ",
213 "settings.account.deleteAccount" : "ගිණුම මකා දමන්න ", 213 "settings.account.deleteAccount": "ගිණුම මකා දමන්න ",
214 "settings.account.deleteEmailSent" : "ගිණුම මකා දැමීම තහවුරු කිරීම සඳහා විද්‍යුත් තැපැල් පණිවුඩයක් ඔබ වෙත යවා ඇත. මකා දැමීමෙන් පසුව ඔබගේ ගිණුම සහ අනෙකුත් දත්ත නැවත ලබාගත නොහැකි බව කරුණාවෙන් සලකන්න.", 214 "settings.account.deleteEmailSent": "ගිණුම මකා දැමීම තහවුරු කිරීම සඳහා විද්‍යුත් තැපැල් පණිවුඩයක් ඔබ වෙත යවා ඇත. මකා දැමීමෙන් පසුව ඔබගේ ගිණුම සහ අනෙකුත් දත්ත නැවත ලබාගත නොහැකි බව කරුණාවෙන් සලකන්න.",
215 "settings.account.deleteInfo" : "ඔබට ෆ්‍රාන්ස් ගිණුම තවදුරටත් අනවශ්‍ය නම්, ගිණුම සහ ඒ සම්බන්ධ සියලු තොරතුරු මෙහිදී මකා දැමිය හැක.", 215 "settings.account.deleteInfo": "ඔබට ෆ්‍රාන්ස් ගිණුම තවදුරටත් අනවශ්‍ය නම්, ගිණුම සහ ඒ සම්බන්ධ සියලු තොරතුරු මෙහිදී මකා දැමිය හැක.",
216 "settings.account.headline" : "ගිණුම ", 216 "settings.account.headline": "ගිණුම ",
217 "settings.account.headlineAccount" : "ගිණුමේ තොරතුරු", 217 "settings.account.headlineAccount": "ගිණුමේ තොරතුරු",
218 "settings.account.headlineDangerZone" : "භයානක කලාපය ", 218 "settings.account.headlineDangerZone": "භයානක කලාපය ",
219 "settings.account.headlineInvoices" : "ලදුපත් ", 219 "settings.account.headlineInvoices": "ලදුපත් ",
220 "settings.account.headlinePassword" : "මුරපදය වෙනස් කරන්න", 220 "settings.account.headlinePassword": "මුරපදය වෙනස් කරන්න",
221 "settings.account.headlineProfile" : "පැතිකඩ යාවත්කාල කරන්න ", 221 "settings.account.headlineProfile": "පැතිකඩ යාවත්කාල කරන්න ",
222 "settings.account.headlineSubscription" : "ඔබගේ දායකත්වය ", 222 "settings.account.headlineSubscription": "ඔබගේ දායකත්වය ",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "Download", 225 "settings.account.invoiceDownload": "Download",
226 "settings.account.manageSubscription.label" : "Manage your subscription", 226 "settings.account.manageSubscription.label": "Manage your subscription",
227 "settings.account.successInfo" : "Your changes have been saved", 227 "settings.account.successInfo": "Your changes have been saved",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "Try again", 231 "settings.account.tryReloadServices": "Try again",
232 "settings.account.tryReloadUserInfoRequest" : "Try again", 232 "settings.account.tryReloadUserInfoRequest": "Try again",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "Could not load user information", 234 "settings.account.userInfoRequestFailed": "Could not load user information",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "Clear cache", 236 "settings.app.buttonClearAllCache": "Clear cache",
237 "settings.app.buttonInstallUpdate" : "නැවත අරඹා යාවත්කාල කරන්න.", 237 "settings.app.buttonInstallUpdate": "නැවත අරඹා යාවත්කාල කරන්න.",
238 "settings.app.buttonSearchForUpdate" : "Check for updates", 238 "settings.app.buttonSearchForUpdate": "Check for updates",
239 "settings.app.cacheInfo" : "Franz cache is currently using {size} of disk space.", 239 "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.",
240 "settings.app.currentVersion" : "Current version:", 240 "settings.app.currentVersion": "Current version:",
241 "settings.app.form.autoLaunchInBackground" : "Open in background", 241 "settings.app.form.autoLaunchInBackground": "Open in background",
242 "settings.app.form.autoLaunchOnStart" : "Launch Franz on start", 242 "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start",
243 "settings.app.form.beta" : "Include beta versions", 243 "settings.app.form.beta": "Include beta versions",
244 "settings.app.form.darkMode" : "Join the Dark Side", 244 "settings.app.form.darkMode": "Join the Dark Side",
245 "settings.app.form.enableGPUAcceleration" : "Enable GPU Acceleration", 245 "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration",
246 "settings.app.form.enableSpellchecking" : "Enable spell checking", 246 "settings.app.form.enableSpellchecking": "Enable spell checking",
247 "settings.app.form.enableSystemTray" : "Show Franz in system tray", 247 "settings.app.form.enableSystemTray": "Show Ferdi in system tray",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "Language", 250 "settings.app.form.language": "Language",
251 "settings.app.form.minimizeToSystemTray" : "Minimize Franz to system tray", 251 "settings.app.form.minimizeToSystemTray": "Minimize Ferdi to system tray",
252 "settings.app.form.runInBackground" : "Keep Franz in background when closing the window", 252 "settings.app.form.runInBackground": "Keep Ferdi in background when closing the window",
253 "settings.app.form.showDisabledServices" : "Display disabled services tabs", 253 "settings.app.form.showDisabledServices": "Display disabled services tabs",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Show unread message badge when notifications are disabled", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
255 "settings.app.headline" : "Settings", 255 "settings.app.headline": "Settings",
256 "settings.app.headlineAdvanced" : "Advanced", 256 "settings.app.headlineAdvanced": "Advanced",
257 "settings.app.headlineAppearance" : "Appearance", 257 "settings.app.headlineAppearance": "Appearance",
258 "settings.app.headlineGeneral" : "General", 258 "settings.app.headlineGeneral": "General",
259 "settings.app.headlineLanguage" : "Language", 259 "settings.app.headlineLanguage": "Language",
260 "settings.app.headlineUpdates" : "Updates", 260 "settings.app.headlineUpdates": "Updates",
261 "settings.app.languageDisclaimer" : "Official translations are English & German. All other languages are community based translations.", 261 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
262 "settings.app.restartRequired" : "Changes require restart", 262 "settings.app.restartRequired": "Changes require restart",
263 "settings.app.subheadlineCache" : "Cache", 263 "settings.app.subheadlineCache": "Cache",
264 "settings.app.translationHelp" : "Help us to translate Franz into your language.", 264 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
265 "settings.app.updateStatusAvailable" : "Update available, downloading...", 265 "settings.app.updateStatusAvailable": "Update available, downloading...",
266 "settings.app.updateStatusSearching" : "Is searching for update", 266 "settings.app.updateStatusSearching": "Is searching for update",
267 "settings.app.updateStatusUpToDate" : "You are using the latest version of Franz", 267 "settings.app.updateStatusUpToDate": "You are using the latest version of Ferdi",
268 "settings.invite.headline" : "Invite Friends", 268 "settings.invite.headline": "Invite Friends",
269 "settings.navigation.account" : "ගිණුම ", 269 "settings.navigation.account": "ගිණුම ",
270 "settings.navigation.availableServices" : "Available services", 270 "settings.navigation.availableServices": "Available services",
271 "settings.navigation.inviteFriends" : "Invite Friends", 271 "settings.navigation.inviteFriends": "Invite Friends",
272 "settings.navigation.logout" : "Logout", 272 "settings.navigation.logout": "Logout",
273 "settings.navigation.settings" : "Settings", 273 "settings.navigation.settings": "Settings",
274 "settings.navigation.team" : "Manage Team", 274 "settings.navigation.team": "Manage Team",
275 "settings.navigation.yourServices" : "Your services", 275 "settings.navigation.yourServices": "Your services",
276 "settings.navigation.yourWorkspaces" : "Your workspaces", 276 "settings.navigation.yourWorkspaces": "Your workspaces",
277 "settings.recipes.all" : "All services", 277 "settings.recipes.all": "All services",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "Available services", 285 "settings.recipes.headline": "Available services",
286 "settings.recipes.missingService" : "Missing a service?", 286 "settings.recipes.missingService": "Missing a service?",
287 "settings.recipes.mostPopular" : "Most popular", 287 "settings.recipes.mostPopular": "Most popular",
288 "settings.recipes.nothingFound" : "Sorry, but no service matched your search term.", 288 "settings.recipes.nothingFound": "Sorry, but no service matched your search term.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Service successfully added", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Service successfully added",
290 "settings.searchService" : "Search service", 290 "settings.searchService": "Search service",
291 "settings.service.error.goBack" : "Back to services", 291 "settings.service.error.goBack": "Back to services",
292 "settings.service.error.headline" : "Error", 292 "settings.service.error.headline": "Error",
293 "settings.service.error.message" : "Could not load service recipe.", 293 "settings.service.error.message": "Could not load service recipe.",
294 "settings.service.form.addServiceHeadline" : "Add {name}", 294 "settings.service.form.addServiceHeadline": "Add {name}",
295 "settings.service.form.availableServices" : "Available services", 295 "settings.service.form.availableServices": "Available services",
296 "settings.service.form.customUrl" : "Custom server", 296 "settings.service.form.customUrl": "Custom server",
297 "settings.service.form.customUrlPremiumInfo" : "To add self hosted services, you need a Franz Premium Supporter Account.", 297 "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.",
298 "settings.service.form.customUrlUpgradeAccount" : "Upgrade your account", 298 "settings.service.form.customUrlUpgradeAccount": "Upgrade your account",
299 "settings.service.form.customUrlValidationError" : "Could not validate custom {name} server.", 299 "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.",
300 "settings.service.form.deleteButton" : "Delete service", 300 "settings.service.form.deleteButton": "Delete service",
301 "settings.service.form.editServiceHeadline" : "Edit {name}", 301 "settings.service.form.editServiceHeadline": "Edit {name}",
302 "settings.service.form.enableAudio" : "Enable audio", 302 "settings.service.form.enableAudio": "Enable audio",
303 "settings.service.form.enableBadge" : "Show unread message badges", 303 "settings.service.form.enableBadge": "Show unread message badges",
304 "settings.service.form.enableDarkMode" : "Enable Dark Mode", 304 "settings.service.form.enableDarkMode": "Enable Dark Mode",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "Enable notifications", 306 "settings.service.form.enableNotification": "Enable notifications",
307 "settings.service.form.enableService" : "Enable service", 307 "settings.service.form.enableService": "Enable service",
308 "settings.service.form.headlineBadges" : "Unread message badges", 308 "settings.service.form.headlineBadges": "Unread message badges",
309 "settings.service.form.headlineGeneral" : "General", 309 "settings.service.form.headlineGeneral": "General",
310 "settings.service.form.headlineNotifications" : "Notifications", 310 "settings.service.form.headlineNotifications": "Notifications",
311 "settings.service.form.icon" : "Custom icon", 311 "settings.service.form.icon": "Custom icon",
312 "settings.service.form.iconDelete" : "Delete", 312 "settings.service.form.iconDelete": "Delete",
313 "settings.service.form.iconUpload" : "Drop your image, or click here", 313 "settings.service.form.iconUpload": "Drop your image, or click here",
314 "settings.service.form.indirectMessageInfo" : "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "Show message badge for all new messages", 315 "settings.service.form.indirectMessages": "Show message badge for all new messages",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "When disabled, all notification sounds and audio playback are muted", 317 "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted",
318 "settings.service.form.name" : "නම", 318 "settings.service.form.name": "නම",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS Proxy Settings", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
320 "settings.service.form.proxy.host" : "Proxy Host\/IP", 320 "settings.service.form.proxy.host": "Proxy Host/IP",
321 "settings.service.form.proxy.info" : "Proxy settings will not synced with the Franz servers.", 321 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
322 "settings.service.form.proxy.isEnabled" : "Use Proxy", 322 "settings.service.form.proxy.isEnabled": "Use Proxy",
323 "settings.service.form.proxy.password" : "Password (optional)", 323 "settings.service.form.proxy.password": "Password (optional)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Please restart Franz after changing proxy Settings.", 325 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
326 "settings.service.form.proxy.user" : "User (optional)", 326 "settings.service.form.proxy.user": "User (optional)",
327 "settings.service.form.saveButton" : "Save service", 327 "settings.service.form.saveButton": "Save service",
328 "settings.service.form.tabHosted" : "Hosted", 328 "settings.service.form.tabHosted": "Hosted",
329 "settings.service.form.tabOnPremise" : "Self hosted ⭐️", 329 "settings.service.form.tabOnPremise": "Self hosted ⭐️",
330 "settings.service.form.team" : "Team", 330 "settings.service.form.team": "Team",
331 "settings.service.form.useHostedService" : "Use the hosted {name} service.", 331 "settings.service.form.useHostedService": "Use the hosted {name} service.",
332 "settings.service.form.yourServices" : "Your services", 332 "settings.service.form.yourServices": "Your services",
333 "settings.services.deletedInfo" : "Service has been deleted", 333 "settings.services.deletedInfo": "Service has been deleted",
334 "settings.services.discoverServices" : "Discover services", 334 "settings.services.discoverServices": "Discover services",
335 "settings.services.headline" : "Your services", 335 "settings.services.headline": "Your services",
336 "settings.services.noServicesAdded" : "You haven't added any services yet.", 336 "settings.services.noServicesAdded": "You haven't added any services yet.",
337 "settings.services.servicesRequestFailed" : "Could not load your services", 337 "settings.services.servicesRequestFailed": "Could not load your services",
338 "settings.services.tooltip.isDisabled" : "Service is disabled", 338 "settings.services.tooltip.isDisabled": "Service is disabled",
339 "settings.services.tooltip.isMuted" : "All sounds are muted", 339 "settings.services.tooltip.isMuted": "All sounds are muted",
340 "settings.services.tooltip.notificationsDisabled" : "Notifications are disabled", 340 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled",
341 "settings.services.updatedInfo" : "Your changes have been saved", 341 "settings.services.updatedInfo": "Your changes have been saved",
342 "settings.team.contentHeadline" : "Franz for Teams", 342 "settings.team.contentHeadline": "Franz for Teams",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "Team", 344 "settings.team.headline": "Team",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "Manage your Team on meetfranz.com", 346 "settings.team.manageAction": "Manage your Team on meetfranz.com",
347 "settings.team.upgradeAction" : "Upgrade your Account", 347 "settings.team.upgradeAction": "Upgrade your Account",
348 "settings.user.form.accountType.company" : "Company", 348 "settings.user.form.accountType.company": "Company",
349 "settings.user.form.accountType.individual" : "Individual", 349 "settings.user.form.accountType.individual": "Individual",
350 "settings.user.form.accountType.label" : "Account type", 350 "settings.user.form.accountType.label": "Account type",
351 "settings.user.form.accountType.non-profit" : "Non-Profit", 351 "settings.user.form.accountType.non-profit": "Non-Profit",
352 "settings.user.form.currentPassword" : "Current password", 352 "settings.user.form.currentPassword": "Current password",
353 "settings.user.form.email" : "Email", 353 "settings.user.form.email": "Email",
354 "settings.user.form.firstname" : "First Name", 354 "settings.user.form.firstname": "First Name",
355 "settings.user.form.lastname" : "Last Name", 355 "settings.user.form.lastname": "Last Name",
356 "settings.user.form.newPassword" : "New password", 356 "settings.user.form.newPassword": "New password",
357 "settings.workspace.add.form.name" : "නම", 357 "settings.workspace.add.form.name": "නම",
358 "settings.workspace.add.form.submitButton" : "Create workspace", 358 "settings.workspace.add.form.submitButton": "Create workspace",
359 "settings.workspace.form.buttonDelete" : "Delete workspace", 359 "settings.workspace.form.buttonDelete": "Delete workspace",
360 "settings.workspace.form.buttonSave" : "Save workspace", 360 "settings.workspace.form.buttonSave": "Save workspace",
361 "settings.workspace.form.name" : "නම", 361 "settings.workspace.form.name": "නම",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Services in this Workspace", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
363 "settings.workspace.form.yourWorkspaces" : "Your workspaces", 363 "settings.workspace.form.yourWorkspaces": "Your workspaces",
364 "settings.workspaces.deletedInfo" : "Workspace has been deleted", 364 "settings.workspaces.deletedInfo": "Workspace has been deleted",
365 "settings.workspaces.headline" : "Your workspaces", 365 "settings.workspaces.headline": "Your workspaces",
366 "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", 366 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
367 "settings.workspaces.tryReloadWorkspaces" : "Try again", 367 "settings.workspaces.tryReloadWorkspaces": "Try again",
368 "settings.workspaces.updatedInfo" : "Your changes have been saved", 368 "settings.workspaces.updatedInfo": "Your changes have been saved",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", 371 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "Add new service", 375 "sidebar.addNewService": "Add new service",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", 377 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
378 "sidebar.muteApp" : "Disable notifications & audio", 378 "sidebar.muteApp": "Disable notifications & audio",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "Open workspace drawer", 380 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
381 "sidebar.settings" : "Settings", 381 "sidebar.settings": "Settings",
382 "sidebar.unmuteApp" : "Enable notifications & audio", 382 "sidebar.unmuteApp": "Enable notifications & audio",
383 "signup.email.label" : "Email address", 383 "signup.email.label": "Email address",
384 "signup.emailDuplicate" : "A user with that email address already exists", 384 "signup.emailDuplicate": "A user with that email address already exists",
385 "signup.firstname.label" : "First Name", 385 "signup.firstname.label": "First Name",
386 "signup.headline" : "Sign up", 386 "signup.headline": "Sign up",
387 "signup.lastname.label" : "Last Name", 387 "signup.lastname.label": "Last Name",
388 "signup.legal.info" : "By creating a Franz account you accept the", 388 "signup.legal.info": "By creating a Ferdi account you accept the",
389 "signup.legal.privacy" : "Privacy Statement", 389 "signup.legal.privacy": "Privacy Statement",
390 "signup.legal.terms" : "Terms of service", 390 "signup.legal.terms": "Terms of service",
391 "signup.link.login" : "Already have an account, sign in?", 391 "signup.link.login": "Already have an account, sign in?",
392 "signup.password.label" : "මුරපදය", 392 "signup.password.label": "මුරපදය",
393 "signup.submit.label" : "Create account", 393 "signup.submit.label": "Create account",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "Cancel", 405 "subscriptionPopup.buttonCancel": "Cancel",
406 "subscriptionPopup.buttonDone" : "Done", 406 "subscriptionPopup.buttonDone": "Done",
407 "tabs.item.deleteService" : "Delete service", 407 "tabs.item.deleteService": "Delete service",
408 "tabs.item.disableAudio" : "Disable audio", 408 "tabs.item.disableAudio": "Disable audio",
409 "tabs.item.disableNotifications" : "Disable notifications", 409 "tabs.item.disableNotifications": "Disable notifications",
410 "tabs.item.disableService" : "Disable service", 410 "tabs.item.disableService": "Disable service",
411 "tabs.item.edit" : "Edit", 411 "tabs.item.edit": "Edit",
412 "tabs.item.enableAudio" : "Enable audio", 412 "tabs.item.enableAudio": "Enable audio",
413 "tabs.item.enableNotification" : "Enable notifications", 413 "tabs.item.enableNotification": "Enable notifications",
414 "tabs.item.enableService" : "Enable service", 414 "tabs.item.enableService": "Enable service",
415 "tabs.item.reload" : "Reload", 415 "tabs.item.reload": "Reload",
416 "validation.email" : "{field} is not valid", 416 "validation.email": "{field} is not valid",
417 "validation.minLength" : "{field} should be at least {length} characters long", 417 "validation.minLength": "{field} should be at least {length} characters long",
418 "validation.oneRequired" : "At least one is required", 418 "validation.oneRequired": "At least one is required",
419 "validation.required" : "{field} is required", 419 "validation.required": "{field} is required",
420 "validation.url" : "{field} is not a valid URL", 420 "validation.url": "{field} is not a valid URL",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "Reload", 425 "webControls.reload": "Reload",
426 "welcome.loginButton" : "Login to your account", 426 "welcome.loginButton": "Login to your account",
427 "welcome.signupButton" : "Create a free account", 427 "welcome.signupButton": "Create a free account",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "All services", 429 "workspaceDrawer.allServices": "All services",
430 "workspaceDrawer.headline" : "Workspaces", 430 "workspaceDrawer.headline": "Workspaces",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/sk.json b/src/i18n/locales/sk.json
index 937129707..2340a6fe9 100644
--- a/src/i18n/locales/sk.json
+++ b/src/i18n/locales/sk.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Nebolo možné načítať informácie o používateľovi", 280 "settings.account.userInfoRequestFailed": "Nebolo možné načítať informácie o používateľovi",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Vyčistiť vyrovnávaciu pamäť", 283 "settings.app.buttonClearAllCache": "Vyčistiť vyrovnávaciu pamäť",
284 "settings.app.buttonInstallUpdate": "Reštartovať a nainštalovať aktualizáciu", 284 "settings.app.buttonInstallUpdate": "Reštartovať a nainštalovať aktualizáciu",
285 "settings.app.buttonSearchForUpdate": "Skontrolovať aktualizácie", 285 "settings.app.buttonSearchForUpdate": "Skontrolovať aktualizácie",
diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json
index 866a4ebe4..a0750afcf 100644
--- a/src/i18n/locales/sl.json
+++ b/src/i18n/locales/sl.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/sq.json b/src/i18n/locales/sq.json
index 078973fe8..809cfeedd 100644
--- a/src/i18n/locales/sq.json
+++ b/src/i18n/locales/sq.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "Reload", 2 "app.errorHandler.action": "Reload",
3 "app.errorHandler.headline" : "Something went wrong", 3 "app.errorHandler.headline": "Something went wrong",
4 "connectionLostBanner.cta" : "Reload Service", 4 "connectionLostBanner.cta": "Reload Service",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "Changes in Franz {version}", 7 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
8 "feature.delayApp.headline" : "Upgrade your Franz plan to skip the wait", 8 "feature.delayApp.headline": "Upgrade your Ferdi plan to skip the wait",
9 "feature.delayApp.text" : "Franz will continue in {seconds} seconds.", 9 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.",
10 "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", 10 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
11 "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", 11 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
12 "feature.delayApp.trial.headline" : "Get the free Franz Professional 14-days trial and skip the wait", 12 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14-days trial and skip the wait",
13 "feature.delayApp.upgrade.action" : "Upgrade Franz", 13 "feature.delayApp.upgrade.action": "Upgrade Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "Upgrade account", 14 "feature.delayApp.upgrade.actionShort": "Upgrade account",
15 "feature.planSelection.cta.ctaDowngradeFree" : "Downgrade to Free", 15 "feature.planSelection.cta.ctaDowngradeFree": "Downgrade to Free",
16 "feature.planSelection.cta.stayOnFree" : "Stay on Free", 16 "feature.planSelection.cta.stayOnFree": "Stay on Free",
17 "feature.planSelection.cta.trial" : "Start my free 14-days Trial", 17 "feature.planSelection.cta.trial": "Start my free 14-days Trial",
18 "feature.planSelection.cta.upgradePersonal" : "Choose Personal", 18 "feature.planSelection.cta.upgradePersonal": "Choose Personal",
19 "feature.planSelection.cta.upgradePro" : "Choose Professional", 19 "feature.planSelection.cta.upgradePro": "Choose Professional",
20 "feature.planSelection.free.text" : "Basic functionality", 20 "feature.planSelection.free.text": "Basic functionality",
21 "feature.planSelection.fullFeatureList" : "Complete comparison of all plans", 21 "feature.planSelection.fullFeatureList": "Complete comparison of all plans",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "Choose Personal", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "Choose Personal",
24 "feature.planSelection.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 24 "feature.planSelection.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
25 "feature.planSelection.fullscreen.dialog.title" : "Downgrade your Franz Plan", 25 "feature.planSelection.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
26 "feature.planSelection.fullscreen.subheadline" : "It's time to make a choice. Franz works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 26 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
27 "feature.planSelection.fullscreen.welcome" : "Are you ready to choose, {name}?", 27 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}?",
28 "feature.planSelection.personal.text" : "More services, no waiting - ideal for personal use.", 28 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "All prices based on yearly payment", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
30 "feature.planSelection.pro.text" : "Unlimited services and professional features for you - and your team.", 30 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
31 "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.", 31 "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.",
32 "feature.shareFranz.action.email" : "Send as email", 32 "feature.shareFranz.action.email": "Send as email",
33 "feature.shareFranz.action.facebook" : "Share on Facebook", 33 "feature.shareFranz.action.facebook": "Share on Facebook",
34 "feature.shareFranz.action.twitter" : "Share on Twitter", 34 "feature.shareFranz.action.twitter": "Share on Twitter",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com", 36 "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com",
37 "feature.shareFranz.shareText.twitter" : "I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com \/cc @FranzMessenger", 37 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
38 "feature.shareFranz.text" : "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", 38 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
39 "feature.todos.premium.info" : "Franz Todos are available to premium users now!", 39 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "Upgrade Account", 41 "feature.todos.premium.upgrade": "Upgrade Account",
42 "feature.trialStatusBar.cta" : "Upgrade now", 42 "feature.trialStatusBar.cta": "Upgrade now",
43 "feature.trialStatusBar.expired" : "Your free Franz {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "Downgrade to Free", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Downgrade to Free",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "Choose Personal", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Choose Personal",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.", 46 "feature.trialStatusBar.fullscreen.dialog.message": "You're about to downgrade to our Free account. Are you sure? Click here instead to get more services and functionality for just {currency}{price} a month.",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "Downgrade your Franz Plan", 47 "feature.trialStatusBar.fullscreen.dialog.title": "Downgrade your Ferdi Plan",
48 "feature.trialStatusBar.restTime" : "Your Free Franz {plan} Trial ends in {time}.", 48 "feature.trialStatusBar.restTime": "Your Free Ferdi {plan} Trial ends in {time}.",
49 "global.api.unhealthy" : "Can't connect to Franz online services", 49 "global.api.unhealthy": "Can't connect to Ferdi online services",
50 "global.franzProRequired" : "Franz Professional Required", 50 "global.franzProRequired": "Ferdi Professional Required",
51 "global.notConnectedToTheInternet" : "You are not connected to the internet.", 51 "global.notConnectedToTheInternet": "You are not connected to the internet.",
52 "global.spellchecker.useDefault" : "Use System Default ({default})", 52 "global.spellchecker.useDefault": "Use System Default ({default})",
53 "global.spellchecking.autodetect" : "Detect language automatically", 53 "global.spellchecking.autodetect": "Detect language automatically",
54 "global.spellchecking.autodetect.short" : "Automatic", 54 "global.spellchecking.autodetect.short": "Automatic",
55 "global.spellchecking.language" : "Spell checking language", 55 "global.spellchecking.language": "Spell checking language",
56 "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", 56 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
57 "import.headline" : "Import your Franz 4 services", 57 "import.headline": "Import your Ferdi 4 services",
58 "import.notSupportedHeadline" : "Services not yet supported in Franz 5", 58 "import.notSupportedHeadline": "Services not yet supported in Ferdi 5",
59 "import.skip.label" : "I want to add services manually", 59 "import.skip.label": "I want to add services manually",
60 "import.submit.label" : "Import services", 60 "import.submit.label": "Import services",
61 "infobar.buttonChangelog" : "What is new?", 61 "infobar.buttonChangelog": "What is new?",
62 "infobar.buttonInstallUpdate" : "Restart & install update", 62 "infobar.buttonInstallUpdate": "Restart & install update",
63 "infobar.buttonReloadServices" : "Reload services", 63 "infobar.buttonReloadServices": "Reload services",
64 "infobar.requiredRequestsFailed" : "Could not load services and user information", 64 "infobar.requiredRequestsFailed": "Could not load services and user information",
65 "infobar.servicesUpdated" : "Your services have been updated.", 65 "infobar.servicesUpdated": "Your services have been updated.",
66 "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", 66 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
67 "infobar.updateAvailable" : "A new update for Franz is available.", 67 "infobar.updateAvailable": "A new update for Ferdi is available.",
68 "invite.email.label" : "Email address", 68 "invite.email.label": "Email address",
69 "invite.headline.friends" : "Invite 3 of your friends or colleagues", 69 "invite.headline.friends": "Invite 3 of your friends or colleagues",
70 "invite.name.label" : "Name", 70 "invite.name.label": "Name",
71 "invite.skip.label" : "I want to do this later", 71 "invite.skip.label": "I want to do this later",
72 "invite.submit.label" : "Send invites", 72 "invite.submit.label": "Send invites",
73 "invite.successInfo" : "Invitations sent successfully", 73 "invite.successInfo": "Invitations sent successfully",
74 "login.email.label" : "Email address", 74 "login.email.label": "Email address",
75 "login.headline" : "Sign in", 75 "login.headline": "Sign in",
76 "login.invalidCredentials" : "Email or password not valid", 76 "login.invalidCredentials": "Email or password not valid",
77 "login.link.password" : "Reset password", 77 "login.link.password": "Reset password",
78 "login.link.signup" : "Create a free account", 78 "login.link.signup": "Create a free account",
79 "login.password.label" : "Password", 79 "login.password.label": "Password",
80 "login.serverLogout" : "Your session expired, please login again.", 80 "login.serverLogout": "Your session expired, please login again.",
81 "login.submit.label" : "Sign in", 81 "login.submit.label": "Sign in",
82 "login.tokenExpired" : "Your session expired, please login again.", 82 "login.tokenExpired": "Your session expired, please login again.",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "About Franz", 85 "menu.app.about": "About Ferdi",
86 "menu.app.announcement" : "What's new?", 86 "menu.app.announcement": "What's new?",
87 "menu.app.checkForUpdates" : "Check for updates", 87 "menu.app.checkForUpdates": "Check for updates",
88 "menu.app.hide" : "Hide", 88 "menu.app.hide": "Hide",
89 "menu.app.hideOthers" : "Hide Others", 89 "menu.app.hideOthers": "Hide Others",
90 "menu.app.quit" : "Quit", 90 "menu.app.quit": "Quit",
91 "menu.app.settings" : "Settings", 91 "menu.app.settings": "Settings",
92 "menu.app.unhide" : "Unhide", 92 "menu.app.unhide": "Unhide",
93 "menu.edit" : "Edit", 93 "menu.edit": "Edit",
94 "menu.edit.copy" : "Copy", 94 "menu.edit.copy": "Copy",
95 "menu.edit.cut" : "Cut", 95 "menu.edit.cut": "Cut",
96 "menu.edit.delete" : "Delete", 96 "menu.edit.delete": "Delete",
97 "menu.edit.emojiSymbols" : "Emoji & Symbols", 97 "menu.edit.emojiSymbols": "Emoji & Symbols",
98 "menu.edit.paste" : "Paste", 98 "menu.edit.paste": "Paste",
99 "menu.edit.pasteAndMatchStyle" : "Paste And Match Style", 99 "menu.edit.pasteAndMatchStyle": "Paste And Match Style",
100 "menu.edit.redo" : "Redo", 100 "menu.edit.redo": "Redo",
101 "menu.edit.selectAll" : "Select All", 101 "menu.edit.selectAll": "Select All",
102 "menu.edit.speech" : "Speech", 102 "menu.edit.speech": "Speech",
103 "menu.edit.startDictation" : "Start Dictation", 103 "menu.edit.startDictation": "Start Dictation",
104 "menu.edit.startSpeaking" : "Start Speaking", 104 "menu.edit.startSpeaking": "Start Speaking",
105 "menu.edit.stopSpeaking" : "Stop Speaking", 105 "menu.edit.stopSpeaking": "Stop Speaking",
106 "menu.edit.undo" : "Undo", 106 "menu.edit.undo": "Undo",
107 "menu.file" : "File", 107 "menu.file": "File",
108 "menu.help" : "Help", 108 "menu.help": "Help",
109 "menu.help.changelog" : "Changelog", 109 "menu.help.changelog": "Changelog",
110 "menu.help.debugInfo" : "Copy Debug Information", 110 "menu.help.debugInfo": "Copy Debug Information",
111 "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", 111 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
112 "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
113 "menu.help.learnMore" : "Learn More", 113 "menu.help.learnMore": "Learn More",
114 "menu.help.privacy" : "Privacy Statement", 114 "menu.help.privacy": "Privacy Statement",
115 "menu.help.support" : "Support", 115 "menu.help.support": "Support",
116 "menu.help.tos" : "Terms of Service", 116 "menu.help.tos": "Terms of Service",
117 "menu.services" : "Services", 117 "menu.services": "Services",
118 "menu.services.activatePreviousService" : "Activate previous service", 118 "menu.services.activatePreviousService": "Activate previous service",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "Home", 120 "menu.services.goHome": "Home",
121 "menu.services.setNextServiceActive" : "Activate next service", 121 "menu.services.setNextServiceActive": "Activate next service",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "View", 124 "menu.view": "View",
125 "menu.view.enterFullScreen" : "Enter Full Screen", 125 "menu.view.enterFullScreen": "Enter Full Screen",
126 "menu.view.exitFullScreen" : "Exit Full Screen", 126 "menu.view.exitFullScreen": "Exit Full Screen",
127 "menu.view.reloadFranz" : "Reload Franz", 127 "menu.view.reloadFranz": "Reload Ferdi",
128 "menu.view.reloadService" : "Reload Service", 128 "menu.view.reloadService": "Reload Service",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "Actual Size", 130 "menu.view.resetZoom": "Actual Size",
131 "menu.view.toggleDevTools" : "Toggle Developer Tools", 131 "menu.view.toggleDevTools": "Toggle Developer Tools",
132 "menu.view.toggleFullScreen" : "Toggle Full Screen", 132 "menu.view.toggleFullScreen": "Toggle Full Screen",
133 "menu.view.toggleServiceDevTools" : "Toggle Service Developer Tools", 133 "menu.view.toggleServiceDevTools": "Toggle Service Developer Tools",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "Zoom In", 135 "menu.view.zoomIn": "Zoom In",
136 "menu.view.zoomOut" : "Zoom Out", 136 "menu.view.zoomOut": "Zoom Out",
137 "menu.window" : "Window", 137 "menu.window": "Window",
138 "menu.window.close" : "Close", 138 "menu.window.close": "Close",
139 "menu.window.minimize" : "Minimize", 139 "menu.window.minimize": "Minimize",
140 "menu.workspaces" : "Workspaces", 140 "menu.workspaces": "Workspaces",
141 "menu.workspaces.addNewWorkspace" : "Add New Workspace...", 141 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
142 "menu.workspaces.closeWorkspaceDrawer" : "Close workspace drawer", 142 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
143 "menu.workspaces.defaultWorkspace" : "All services", 143 "menu.workspaces.defaultWorkspace": "All services",
144 "menu.workspaces.openWorkspaceDrawer" : "Open workspace drawer", 144 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
145 "password.email.label" : "Email address", 145 "password.email.label": "Email address",
146 "password.headline" : "Reset password", 146 "password.headline": "Reset password",
147 "password.link.login" : "Sign in to your account", 147 "password.link.login": "Sign in to your account",
148 "password.link.signup" : "Create a free account", 148 "password.link.signup": "Create a free account",
149 "password.noUser" : "No user with that email address was found", 149 "password.noUser": "No user with that email address was found",
150 "password.submit.label" : "Submit", 150 "password.submit.label": "Submit",
151 "password.successInfo" : "Please check your email", 151 "password.successInfo": "Please check your email",
152 "premiumFeature.button.upgradeAccount" : "Upgrade account", 152 "premiumFeature.button.upgradeAccount": "Upgrade account",
153 "pricing.features.accountSync" : "Account Synchronisation", 153 "pricing.features.accountSync": "Account Synchronisation",
154 "pricing.features.adFree" : "Forever ad-free", 154 "pricing.features.adFree": "Forever ad-free",
155 "pricing.features.appDelays" : "No Waiting Screens", 155 "pricing.features.appDelays": "No Waiting Screens",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "Add Custom Websites", 157 "pricing.features.customWebsites": "Add Custom Websites",
158 "pricing.features.desktopNotifications" : "Desktop Notifications", 158 "pricing.features.desktopNotifications": "Desktop Notifications",
159 "pricing.features.onPremise" : "On-premise & other Hosted Services", 159 "pricing.features.onPremise": "On-premise & other Hosted Services",
160 "pricing.features.recipes" : "Choose from more than 70 Services", 160 "pricing.features.recipes": "Choose from more than 70 Services",
161 "pricing.features.serviceProxies" : "Service Proxies", 161 "pricing.features.serviceProxies": "Service Proxies",
162 "pricing.features.spellchecker" : "Spellchecker support", 162 "pricing.features.spellchecker": "Spellchecker support",
163 "pricing.features.teamManagement" : "Team Management", 163 "pricing.features.teamManagement": "Team Management",
164 "pricing.features.thirdPartyServices" : "Install 3rd party services", 164 "pricing.features.thirdPartyServices": "Install 3rd party services",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "Workspaces", 168 "pricing.features.workspaces": "Workspaces",
169 "pricing.plan.free" : "Free", 169 "pricing.plan.free": "Free",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "Reload {name}", 190 "service.crashHandler.action": "Reload {name}",
191 "service.crashHandler.autoReload" : "Trying to automatically restore {name} in {seconds} seconds", 191 "service.crashHandler.autoReload": "Trying to automatically restore {name} in {seconds} seconds",
192 "service.crashHandler.headline" : "Oh no!", 192 "service.crashHandler.headline": "Oh no!",
193 "service.crashHandler.text" : "{name} has caused an error.", 193 "service.crashHandler.text": "{name} has caused an error.",
194 "service.disabledHandler.action" : "Enable {name}", 194 "service.disabledHandler.action": "Enable {name}",
195 "service.disabledHandler.headline" : "{name} is disabled", 195 "service.disabledHandler.headline": "{name} is disabled",
196 "service.errorHandler.action" : "Reload {name}", 196 "service.errorHandler.action": "Reload {name}",
197 "service.errorHandler.editAction" : "Edit {name}", 197 "service.errorHandler.editAction": "Edit {name}",
198 "service.errorHandler.headline" : "Oh no!", 198 "service.errorHandler.headline": "Oh no!",
199 "service.errorHandler.message" : "Error", 199 "service.errorHandler.message": "Error",
200 "service.errorHandler.text" : "{name} has failed to load.", 200 "service.errorHandler.text": "{name} has failed to load.",
201 "service.restrictedHandler.action" : "Upgrade Account", 201 "service.restrictedHandler.action": "Upgrade Account",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "Loading", 206 "service.webviewLoader.loading": "Loading",
207 "services.getStarted" : "Get started", 207 "services.getStarted": "Get started",
208 "services.welcome" : "Welcome to Franz", 208 "services.welcome": "Welcome to Ferdi",
209 "settings.account.account.editButton" : "Edit account", 209 "settings.account.account.editButton": "Edit account",
210 "settings.account.accountType.basic" : "Basic Account", 210 "settings.account.accountType.basic": "Basic Account",
211 "settings.account.accountType.premium" : "Premium Supporter Account", 211 "settings.account.accountType.premium": "Premium Supporter Account",
212 "settings.account.buttonSave" : "Update profile", 212 "settings.account.buttonSave": "Update profile",
213 "settings.account.deleteAccount" : "Delete account", 213 "settings.account.deleteAccount": "Delete account",
214 "settings.account.deleteEmailSent" : "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 214 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
215 "settings.account.deleteInfo" : "If you don't need your Franz account any longer, you can delete your account and all related data here.", 215 "settings.account.deleteInfo": "If you don't need your Ferdi account any longer, you can delete your account and all related data here.",
216 "settings.account.headline" : "Account", 216 "settings.account.headline": "Account",
217 "settings.account.headlineAccount" : "Account information", 217 "settings.account.headlineAccount": "Account information",
218 "settings.account.headlineDangerZone" : "Danger Zone", 218 "settings.account.headlineDangerZone": "Danger Zone",
219 "settings.account.headlineInvoices" : "Invoices", 219 "settings.account.headlineInvoices": "Invoices",
220 "settings.account.headlinePassword" : "Change password", 220 "settings.account.headlinePassword": "Change password",
221 "settings.account.headlineProfile" : "Update profile", 221 "settings.account.headlineProfile": "Update profile",
222 "settings.account.headlineSubscription" : "Your subscription", 222 "settings.account.headlineSubscription": "Your subscription",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "Download", 225 "settings.account.invoiceDownload": "Download",
226 "settings.account.manageSubscription.label" : "Manage your subscription", 226 "settings.account.manageSubscription.label": "Manage your subscription",
227 "settings.account.successInfo" : "Your changes have been saved", 227 "settings.account.successInfo": "Your changes have been saved",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "Try again", 231 "settings.account.tryReloadServices": "Try again",
232 "settings.account.tryReloadUserInfoRequest" : "Try again", 232 "settings.account.tryReloadUserInfoRequest": "Try again",
233 "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", 233 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
234 "settings.account.userInfoRequestFailed" : "Could not load user information", 234 "settings.account.userInfoRequestFailed": "Could not load user information",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "Clear cache", 236 "settings.app.buttonClearAllCache": "Clear cache",
237 "settings.app.buttonInstallUpdate" : "Restart & install update", 237 "settings.app.buttonInstallUpdate": "Restart & install update",
238 "settings.app.buttonSearchForUpdate" : "Check for updates", 238 "settings.app.buttonSearchForUpdate": "Check for updates",
239 "settings.app.cacheInfo" : "Franz cache is currently using {size} of disk space.", 239 "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.",
240 "settings.app.currentVersion" : "Current version:", 240 "settings.app.currentVersion": "Current version:",
241 "settings.app.form.autoLaunchInBackground" : "Open in background", 241 "settings.app.form.autoLaunchInBackground": "Open in background",
242 "settings.app.form.autoLaunchOnStart" : "Launch Franz on start", 242 "settings.app.form.autoLaunchOnStart": "Launch Ferdi on start",
243 "settings.app.form.beta" : "Include beta versions", 243 "settings.app.form.beta": "Include beta versions",
244 "settings.app.form.darkMode" : "Join the Dark Side", 244 "settings.app.form.darkMode": "Join the Dark Side",
245 "settings.app.form.enableGPUAcceleration" : "Enable GPU Acceleration", 245 "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration",
246 "settings.app.form.enableSpellchecking" : "Enable spell checking", 246 "settings.app.form.enableSpellchecking": "Enable spell checking",
247 "settings.app.form.enableSystemTray" : "Show Franz in system tray", 247 "settings.app.form.enableSystemTray": "Show Ferdi in system tray",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "Language", 250 "settings.app.form.language": "Language",
251 "settings.app.form.minimizeToSystemTray" : "Minimize Franz to system tray", 251 "settings.app.form.minimizeToSystemTray": "Minimize Ferdi to system tray",
252 "settings.app.form.runInBackground" : "Keep Franz in background when closing the window", 252 "settings.app.form.runInBackground": "Keep Ferdi in background when closing the window",
253 "settings.app.form.showDisabledServices" : "Display disabled services tabs", 253 "settings.app.form.showDisabledServices": "Display disabled services tabs",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "Show unread message badge when notifications are disabled", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
255 "settings.app.headline" : "Settings", 255 "settings.app.headline": "Settings",
256 "settings.app.headlineAdvanced" : "Advanced", 256 "settings.app.headlineAdvanced": "Advanced",
257 "settings.app.headlineAppearance" : "Appearance", 257 "settings.app.headlineAppearance": "Appearance",
258 "settings.app.headlineGeneral" : "General", 258 "settings.app.headlineGeneral": "General",
259 "settings.app.headlineLanguage" : "Language", 259 "settings.app.headlineLanguage": "Language",
260 "settings.app.headlineUpdates" : "Updates", 260 "settings.app.headlineUpdates": "Updates",
261 "settings.app.languageDisclaimer" : "Official translations are English & German. All other languages are community based translations.", 261 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
262 "settings.app.restartRequired" : "Changes require restart", 262 "settings.app.restartRequired": "Changes require restart",
263 "settings.app.subheadlineCache" : "Cache", 263 "settings.app.subheadlineCache": "Cache",
264 "settings.app.translationHelp" : "Help us to translate Franz into your language.", 264 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
265 "settings.app.updateStatusAvailable" : "Update available, downloading...", 265 "settings.app.updateStatusAvailable": "Update available, downloading...",
266 "settings.app.updateStatusSearching" : "Is searching for update", 266 "settings.app.updateStatusSearching": "Is searching for update",
267 "settings.app.updateStatusUpToDate" : "You are using the latest version of Franz", 267 "settings.app.updateStatusUpToDate": "You are using the latest version of Ferdi",
268 "settings.invite.headline" : "Invite Friends", 268 "settings.invite.headline": "Invite Friends",
269 "settings.navigation.account" : "Account", 269 "settings.navigation.account": "Account",
270 "settings.navigation.availableServices" : "Available services", 270 "settings.navigation.availableServices": "Available services",
271 "settings.navigation.inviteFriends" : "Invite Friends", 271 "settings.navigation.inviteFriends": "Invite Friends",
272 "settings.navigation.logout" : "Logout", 272 "settings.navigation.logout": "Logout",
273 "settings.navigation.settings" : "Settings", 273 "settings.navigation.settings": "Settings",
274 "settings.navigation.team" : "Manage Team", 274 "settings.navigation.team": "Manage Team",
275 "settings.navigation.yourServices" : "Your services", 275 "settings.navigation.yourServices": "Your services",
276 "settings.navigation.yourWorkspaces" : "Your workspaces", 276 "settings.navigation.yourWorkspaces": "Your workspaces",
277 "settings.recipes.all" : "All services", 277 "settings.recipes.all": "All services",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "Available services", 285 "settings.recipes.headline": "Available services",
286 "settings.recipes.missingService" : "Missing a service?", 286 "settings.recipes.missingService": "Missing a service?",
287 "settings.recipes.mostPopular" : "Most popular", 287 "settings.recipes.mostPopular": "Most popular",
288 "settings.recipes.nothingFound" : "Sorry, but no service matched your search term.", 288 "settings.recipes.nothingFound": "Sorry, but no service matched your search term.",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "Service successfully added", 289 "settings.recipes.servicesSuccessfulAddedInfo": "Service successfully added",
290 "settings.searchService" : "Search service", 290 "settings.searchService": "Search service",
291 "settings.service.error.goBack" : "Back to services", 291 "settings.service.error.goBack": "Back to services",
292 "settings.service.error.headline" : "Error", 292 "settings.service.error.headline": "Error",
293 "settings.service.error.message" : "Could not load service recipe.", 293 "settings.service.error.message": "Could not load service recipe.",
294 "settings.service.form.addServiceHeadline" : "Add {name}", 294 "settings.service.form.addServiceHeadline": "Add {name}",
295 "settings.service.form.availableServices" : "Available services", 295 "settings.service.form.availableServices": "Available services",
296 "settings.service.form.customUrl" : "Custom server", 296 "settings.service.form.customUrl": "Custom server",
297 "settings.service.form.customUrlPremiumInfo" : "To add self hosted services, you need a Franz Premium Supporter Account.", 297 "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.",
298 "settings.service.form.customUrlUpgradeAccount" : "Upgrade your account", 298 "settings.service.form.customUrlUpgradeAccount": "Upgrade your account",
299 "settings.service.form.customUrlValidationError" : "Could not validate custom {name} server.", 299 "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.",
300 "settings.service.form.deleteButton" : "Delete service", 300 "settings.service.form.deleteButton": "Delete service",
301 "settings.service.form.editServiceHeadline" : "Edit {name}", 301 "settings.service.form.editServiceHeadline": "Edit {name}",
302 "settings.service.form.enableAudio" : "Enable audio", 302 "settings.service.form.enableAudio": "Enable audio",
303 "settings.service.form.enableBadge" : "Show unread message badges", 303 "settings.service.form.enableBadge": "Show unread message badges",
304 "settings.service.form.enableDarkMode" : "Enable Dark Mode", 304 "settings.service.form.enableDarkMode": "Enable Dark Mode",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "Enable notifications", 306 "settings.service.form.enableNotification": "Enable notifications",
307 "settings.service.form.enableService" : "Enable service", 307 "settings.service.form.enableService": "Enable service",
308 "settings.service.form.headlineBadges" : "Unread message badges", 308 "settings.service.form.headlineBadges": "Unread message badges",
309 "settings.service.form.headlineGeneral" : "General", 309 "settings.service.form.headlineGeneral": "General",
310 "settings.service.form.headlineNotifications" : "Notifications", 310 "settings.service.form.headlineNotifications": "Notifications",
311 "settings.service.form.icon" : "Custom icon", 311 "settings.service.form.icon": "Custom icon",
312 "settings.service.form.iconDelete" : "Delete", 312 "settings.service.form.iconDelete": "Delete",
313 "settings.service.form.iconUpload" : "Drop your image, or click here", 313 "settings.service.form.iconUpload": "Drop your image, or click here",
314 "settings.service.form.indirectMessageInfo" : "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...", 314 "settings.service.form.indirectMessageInfo": "You will be notified about all new messages in a channel, not just @username, @channel, @here, ...",
315 "settings.service.form.indirectMessages" : "Show message badge for all new messages", 315 "settings.service.form.indirectMessages": "Show message badge for all new messages",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "When disabled, all notification sounds and audio playback are muted", 317 "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted",
318 "settings.service.form.name" : "Name", 318 "settings.service.form.name": "Name",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS Proxy Settings", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
320 "settings.service.form.proxy.host" : "Proxy Host\/IP", 320 "settings.service.form.proxy.host": "Proxy Host/IP",
321 "settings.service.form.proxy.info" : "Proxy settings will not synced with the Franz servers.", 321 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
322 "settings.service.form.proxy.isEnabled" : "Use Proxy", 322 "settings.service.form.proxy.isEnabled": "Use Proxy",
323 "settings.service.form.proxy.password" : "Password (optional)", 323 "settings.service.form.proxy.password": "Password (optional)",
324 "settings.service.form.proxy.port" : "Port", 324 "settings.service.form.proxy.port": "Port",
325 "settings.service.form.proxy.restartInfo" : "Please restart Franz after changing proxy Settings.", 325 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
326 "settings.service.form.proxy.user" : "User (optional)", 326 "settings.service.form.proxy.user": "User (optional)",
327 "settings.service.form.saveButton" : "Save service", 327 "settings.service.form.saveButton": "Save service",
328 "settings.service.form.tabHosted" : "Hosted", 328 "settings.service.form.tabHosted": "Hosted",
329 "settings.service.form.tabOnPremise" : "Self hosted ⭐️", 329 "settings.service.form.tabOnPremise": "Self hosted ⭐️",
330 "settings.service.form.team" : "Team", 330 "settings.service.form.team": "Team",
331 "settings.service.form.useHostedService" : "Use the hosted {name} service.", 331 "settings.service.form.useHostedService": "Use the hosted {name} service.",
332 "settings.service.form.yourServices" : "Your services", 332 "settings.service.form.yourServices": "Your services",
333 "settings.services.deletedInfo" : "Service has been deleted", 333 "settings.services.deletedInfo": "Service has been deleted",
334 "settings.services.discoverServices" : "Discover services", 334 "settings.services.discoverServices": "Discover services",
335 "settings.services.headline" : "Your services", 335 "settings.services.headline": "Your services",
336 "settings.services.noServicesAdded" : "You haven't added any services yet.", 336 "settings.services.noServicesAdded": "You haven't added any services yet.",
337 "settings.services.servicesRequestFailed" : "Could not load your services", 337 "settings.services.servicesRequestFailed": "Could not load your services",
338 "settings.services.tooltip.isDisabled" : "Service is disabled", 338 "settings.services.tooltip.isDisabled": "Service is disabled",
339 "settings.services.tooltip.isMuted" : "All sounds are muted", 339 "settings.services.tooltip.isMuted": "All sounds are muted",
340 "settings.services.tooltip.notificationsDisabled" : "Notifications are disabled", 340 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled",
341 "settings.services.updatedInfo" : "Your changes have been saved", 341 "settings.services.updatedInfo": "Your changes have been saved",
342 "settings.team.contentHeadline" : "Franz for Teams", 342 "settings.team.contentHeadline": "Franz for Teams",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "Team", 344 "settings.team.headline": "Team",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "Manage your Team on meetfranz.com", 346 "settings.team.manageAction": "Manage your Team on meetfranz.com",
347 "settings.team.upgradeAction" : "Upgrade your Account", 347 "settings.team.upgradeAction": "Upgrade your Account",
348 "settings.user.form.accountType.company" : "Company", 348 "settings.user.form.accountType.company": "Company",
349 "settings.user.form.accountType.individual" : "Individual", 349 "settings.user.form.accountType.individual": "Individual",
350 "settings.user.form.accountType.label" : "Account type", 350 "settings.user.form.accountType.label": "Account type",
351 "settings.user.form.accountType.non-profit" : "Non-Profit", 351 "settings.user.form.accountType.non-profit": "Non-Profit",
352 "settings.user.form.currentPassword" : "Current password", 352 "settings.user.form.currentPassword": "Current password",
353 "settings.user.form.email" : "Email", 353 "settings.user.form.email": "Email",
354 "settings.user.form.firstname" : "First Name", 354 "settings.user.form.firstname": "First Name",
355 "settings.user.form.lastname" : "Last Name", 355 "settings.user.form.lastname": "Last Name",
356 "settings.user.form.newPassword" : "New password", 356 "settings.user.form.newPassword": "New password",
357 "settings.workspace.add.form.name" : "Name", 357 "settings.workspace.add.form.name": "Name",
358 "settings.workspace.add.form.submitButton" : "Create workspace", 358 "settings.workspace.add.form.submitButton": "Create workspace",
359 "settings.workspace.form.buttonDelete" : "Delete workspace", 359 "settings.workspace.form.buttonDelete": "Delete workspace",
360 "settings.workspace.form.buttonSave" : "Save workspace", 360 "settings.workspace.form.buttonSave": "Save workspace",
361 "settings.workspace.form.name" : "Name", 361 "settings.workspace.form.name": "Name",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "Services in this Workspace", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
363 "settings.workspace.form.yourWorkspaces" : "Your workspaces", 363 "settings.workspace.form.yourWorkspaces": "Your workspaces",
364 "settings.workspaces.deletedInfo" : "Workspace has been deleted", 364 "settings.workspaces.deletedInfo": "Workspace has been deleted",
365 "settings.workspaces.headline" : "Your workspaces", 365 "settings.workspaces.headline": "Your workspaces",
366 "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", 366 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
367 "settings.workspaces.tryReloadWorkspaces" : "Try again", 367 "settings.workspaces.tryReloadWorkspaces": "Try again",
368 "settings.workspaces.updatedInfo" : "Your changes have been saved", 368 "settings.workspaces.updatedInfo": "Your changes have been saved",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", 371 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "Add new service", 375 "sidebar.addNewService": "Add new service",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", 377 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
378 "sidebar.muteApp" : "Disable notifications & audio", 378 "sidebar.muteApp": "Disable notifications & audio",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "Open workspace drawer", 380 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
381 "sidebar.settings" : "Settings", 381 "sidebar.settings": "Settings",
382 "sidebar.unmuteApp" : "Enable notifications & audio", 382 "sidebar.unmuteApp": "Enable notifications & audio",
383 "signup.email.label" : "Email address", 383 "signup.email.label": "Email address",
384 "signup.emailDuplicate" : "A user with that email address already exists", 384 "signup.emailDuplicate": "A user with that email address already exists",
385 "signup.firstname.label" : "First Name", 385 "signup.firstname.label": "First Name",
386 "signup.headline" : "Sign up", 386 "signup.headline": "Sign up",
387 "signup.lastname.label" : "Last Name", 387 "signup.lastname.label": "Last Name",
388 "signup.legal.info" : "By creating a Franz account you accept the", 388 "signup.legal.info": "By creating a Ferdi account you accept the",
389 "signup.legal.privacy" : "Privacy Statement", 389 "signup.legal.privacy": "Privacy Statement",
390 "signup.legal.terms" : "Terms of service", 390 "signup.legal.terms": "Terms of service",
391 "signup.link.login" : "Already have an account, sign in?", 391 "signup.link.login": "Already have an account, sign in?",
392 "signup.password.label" : "Password", 392 "signup.password.label": "Password",
393 "signup.submit.label" : "Create account", 393 "signup.submit.label": "Create account",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "Upgrade Account", 402 "subscription.planItem.upgradeAccount": "Upgrade Account",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "Cancel", 405 "subscriptionPopup.buttonCancel": "Cancel",
406 "subscriptionPopup.buttonDone" : "Done", 406 "subscriptionPopup.buttonDone": "Done",
407 "tabs.item.deleteService" : "Delete service", 407 "tabs.item.deleteService": "Delete service",
408 "tabs.item.disableAudio" : "Disable audio", 408 "tabs.item.disableAudio": "Disable audio",
409 "tabs.item.disableNotifications" : "Disable notifications", 409 "tabs.item.disableNotifications": "Disable notifications",
410 "tabs.item.disableService" : "Disable service", 410 "tabs.item.disableService": "Disable service",
411 "tabs.item.edit" : "Edit", 411 "tabs.item.edit": "Edit",
412 "tabs.item.enableAudio" : "Enable audio", 412 "tabs.item.enableAudio": "Enable audio",
413 "tabs.item.enableNotification" : "Enable notifications", 413 "tabs.item.enableNotification": "Enable notifications",
414 "tabs.item.enableService" : "Enable service", 414 "tabs.item.enableService": "Enable service",
415 "tabs.item.reload" : "Reload", 415 "tabs.item.reload": "Reload",
416 "validation.email" : "{field} is not valid", 416 "validation.email": "{field} is not valid",
417 "validation.minLength" : "{field} should be at least {length} characters long", 417 "validation.minLength": "{field} should be at least {length} characters long",
418 "validation.oneRequired" : "At least one is required", 418 "validation.oneRequired": "At least one is required",
419 "validation.required" : "{field} is required", 419 "validation.required": "{field} is required",
420 "validation.url" : "{field} is not a valid URL", 420 "validation.url": "{field} is not a valid URL",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "Home", 423 "webControls.goHome": "Home",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "Reload", 425 "webControls.reload": "Reload",
426 "welcome.loginButton" : "Login to your account", 426 "welcome.loginButton": "Login to your account",
427 "welcome.signupButton" : "Create a free account", 427 "welcome.signupButton": "Create a free account",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "All services", 429 "workspaceDrawer.allServices": "All services",
430 "workspaceDrawer.headline" : "Workspaces", 430 "workspaceDrawer.headline": "Workspaces",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/sr.json b/src/i18n/locales/sr.json
index b1dc13382..ff4a6b805 100644
--- a/src/i18n/locales/sr.json
+++ b/src/i18n/locales/sr.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Nije moguće učitati informacije o korisniku", 280 "settings.account.userInfoRequestFailed": "Nije moguće učitati informacije o korisniku",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Очисти кеш", 283 "settings.app.buttonClearAllCache": "Очисти кеш",
284 "settings.app.buttonInstallUpdate": "Ponovo pokreni i instaliraj ažuriranje ", 284 "settings.app.buttonInstallUpdate": "Ponovo pokreni i instaliraj ažuriranje ",
285 "settings.app.buttonSearchForUpdate": "Potraži ažuriranja", 285 "settings.app.buttonSearchForUpdate": "Potraži ažuriranja",
diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json
index 8bf52619b..a52f841c8 100644
--- a/src/i18n/locales/sv.json
+++ b/src/i18n/locales/sv.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Uppgradera till Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Uppgradera till Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Kunde inte ladda användarinformation", 280 "settings.account.userInfoRequestFailed": "Kunde inte ladda användarinformation",
281 "settings.account.yourLicense": "Din Ferdi-licens", 281 "settings.account.yourLicense": "Din Ferdi-licens",
282 "settings.app.accentColorInfo": "Ange din accentfärg i ett CSS-kompatibelt format (standard: #7367f0).", 282 "settings.app.accentColorInfo": "Ange din accentfärg i ett CSS-kompatibelt format (standard: {defaultAccentColor}).",
283 "settings.app.buttonClearAllCache": "Rensa cache", 283 "settings.app.buttonClearAllCache": "Rensa cache",
284 "settings.app.buttonInstallUpdate": "Starta om & installera uppdatering", 284 "settings.app.buttonInstallUpdate": "Starta om & installera uppdatering",
285 "settings.app.buttonSearchForUpdate": "Sök efter uppdateringar", 285 "settings.app.buttonSearchForUpdate": "Sök efter uppdateringar",
diff --git a/src/i18n/locales/tr.json b/src/i18n/locales/tr.json
index e7c305287..90e443800 100644
--- a/src/i18n/locales/tr.json
+++ b/src/i18n/locales/tr.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Ferdi Professional'a Yükselt", 279 "settings.account.upgradeToPro.label": "Ferdi Professional'a Yükselt",
280 "settings.account.userInfoRequestFailed": "Kullanıcı bilgisi yüklenemedi", 280 "settings.account.userInfoRequestFailed": "Kullanıcı bilgisi yüklenemedi",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Önbelleği temizle", 283 "settings.app.buttonClearAllCache": "Önbelleği temizle",
284 "settings.app.buttonInstallUpdate": "Yeniden Başlat ve Güncelleştirmeleri Kur", 284 "settings.app.buttonInstallUpdate": "Yeniden Başlat ve Güncelleştirmeleri Kur",
285 "settings.app.buttonSearchForUpdate": "Güncellemeleri kontrol et", 285 "settings.app.buttonSearchForUpdate": "Güncellemeleri kontrol et",
diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json
index 312eb2a15..3ff100ca9 100644
--- a/src/i18n/locales/uk.json
+++ b/src/i18n/locales/uk.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Підвищити до Fredi Professional", 279 "settings.account.upgradeToPro.label": "Підвищити до Fredi Professional",
280 "settings.account.userInfoRequestFailed": "Не вдалося завантажити інформацію користувача", 280 "settings.account.userInfoRequestFailed": "Не вдалося завантажити інформацію користувача",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Очистити кеш", 283 "settings.app.buttonClearAllCache": "Очистити кеш",
284 "settings.app.buttonInstallUpdate": "Перезавантажити і встановити оновлення", 284 "settings.app.buttonInstallUpdate": "Перезавантажити і встановити оновлення",
285 "settings.app.buttonSearchForUpdate": "Перевірити наявність оновлень", 285 "settings.app.buttonSearchForUpdate": "Перевірити наявність оновлень",
diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json
index b63ad7689..5bb4a1c7f 100644
--- a/src/i18n/locales/vi.json
+++ b/src/i18n/locales/vi.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Không thể tải được thông tin người dùng", 280 "settings.account.userInfoRequestFailed": "Không thể tải được thông tin người dùng",
281 "settings.account.yourLicense": "Giấy phép Ferdi của bạn", 281 "settings.account.yourLicense": "Giấy phép Ferdi của bạn",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Xóa bộ nhớ cache", 283 "settings.app.buttonClearAllCache": "Xóa bộ nhớ cache",
284 "settings.app.buttonInstallUpdate": "Khởi động lại và cài đặt bản cập nhật", 284 "settings.app.buttonInstallUpdate": "Khởi động lại và cài đặt bản cập nhật",
285 "settings.app.buttonSearchForUpdate": "Kiểm tra cập nhật", 285 "settings.app.buttonSearchForUpdate": "Kiểm tra cập nhật",
diff --git a/src/i18n/locales/whitelist_en-US.json b/src/i18n/locales/whitelist_en-US.json
index 32960f8ce..fe51488c7 100644
--- a/src/i18n/locales/whitelist_en-US.json
+++ b/src/i18n/locales/whitelist_en-US.json
@@ -1,2 +1 @@
1[ []
2] \ No newline at end of file
diff --git a/src/i18n/locales/zh-CN.json b/src/i18n/locales/zh-CN.json
index 0c83bc021..37133ce62 100644
--- a/src/i18n/locales/zh-CN.json
+++ b/src/i18n/locales/zh-CN.json
@@ -259,7 +259,7 @@
259 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 259 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
260 "settings.account.userInfoRequestFailed": "Could not load user information", 260 "settings.account.userInfoRequestFailed": "Could not load user information",
261 "settings.account.yourLicense": "Your Ferdi License", 261 "settings.account.yourLicense": "Your Ferdi License",
262 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 262 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
263 "settings.app.buttonClearAllCache": "Clear cache", 263 "settings.app.buttonClearAllCache": "Clear cache",
264 "settings.app.buttonInstallUpdate": "Restart & install update", 264 "settings.app.buttonInstallUpdate": "Restart & install update",
265 "settings.app.buttonSearchForUpdate": "Check for updates", 265 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/locales/zh-HANS.json b/src/i18n/locales/zh-HANS.json
index 5783b301c..3d329e18b 100644
--- a/src/i18n/locales/zh-HANS.json
+++ b/src/i18n/locales/zh-HANS.json
@@ -1,439 +1,439 @@
1{ 1{
2 "app.errorHandler.action" : "重新加载", 2 "app.errorHandler.action": "重新加载",
3 "app.errorHandler.headline" : "出现问题了", 3 "app.errorHandler.headline": "出现问题了",
4 "connectionLostBanner.cta" : "重启服务", 4 "connectionLostBanner.cta": "重启服务",
5 "connectionLostBanner.informationLink" : "What happened?", 5 "connectionLostBanner.informationLink": "What happened?",
6 "connectionLostBanner.message" : "Oh no! Franz lost the connection to {name}.", 6 "connectionLostBanner.message": "Oh no! Ferdi lost the connection to {name}.",
7 "feature.announcements.changelog.headline" : "在{version}版本中的更改", 7 "feature.announcements.changelog.headline": "在{version}版本中的更改",
8 "feature.delayApp.headline" : "升级您的Franz订阅计划以跳过等待", 8 "feature.delayApp.headline": "升级您的Ferdi订阅计划以跳过等待",
9 "feature.delayApp.text" : "Franz会在 {seconds} 秒后继续。", 9 "feature.delayApp.text": "Ferdi会在 {seconds} 秒后继续。",
10 "feature.delayApp.trial.action" : "是的,我想开始14天的Franz 专业版免费试用", 10 "feature.delayApp.trial.action": "是的,我想开始14天的Ferdi 专业版免费试用",
11 "feature.delayApp.trial.actionShort" : "激活免费的Franz 专业版试用", 11 "feature.delayApp.trial.actionShort": "激活免费的Ferdi 专业版试用",
12 "feature.delayApp.trial.headline" : "免费获得Franz 专业版 14天试用版,无需等待", 12 "feature.delayApp.trial.headline": "免费获得Ferdi 专业版 14天试用版,无需等待",
13 "feature.delayApp.upgrade.action" : "更新Franz", 13 "feature.delayApp.upgrade.action": "更新Ferdi",
14 "feature.delayApp.upgrade.actionShort" : "升级账户", 14 "feature.delayApp.upgrade.actionShort": "升级账户",
15 "feature.planSelection.cta.ctaDowngradeFree" : "降级到Free订阅计划", 15 "feature.planSelection.cta.ctaDowngradeFree": "降级到Free订阅计划",
16 "feature.planSelection.cta.stayOnFree" : "保持Free订阅计划", 16 "feature.planSelection.cta.stayOnFree": "保持Free订阅计划",
17 "feature.planSelection.cta.trial" : "开始我的14天免费试用", 17 "feature.planSelection.cta.trial": "开始我的14天免费试用",
18 "feature.planSelection.cta.upgradePersonal" : "选择Personal订阅计划", 18 "feature.planSelection.cta.upgradePersonal": "选择Personal订阅计划",
19 "feature.planSelection.cta.upgradePro" : "选择Professional订阅计划", 19 "feature.planSelection.cta.upgradePro": "选择Professional订阅计划",
20 "feature.planSelection.free.text" : "基本功能", 20 "feature.planSelection.free.text": "基本功能",
21 "feature.planSelection.fullFeatureList" : "完整的对比所有订阅计划", 21 "feature.planSelection.fullFeatureList": "完整的对比所有订阅计划",
22 "feature.planSelection.fullscreen.dialog.cta.downgrade" : "降级到Free", 22 "feature.planSelection.fullscreen.dialog.cta.downgrade": "降级到Free",
23 "feature.planSelection.fullscreen.dialog.cta.upgrade" : "选择Personal订阅计划", 23 "feature.planSelection.fullscreen.dialog.cta.upgrade": "选择Personal订阅计划",
24 "feature.planSelection.fullscreen.dialog.message" : "您将降级到我们的免费帐户。您确定吗?单击此处每月只需{currency} {price}即可获得更多服务和功能。", 24 "feature.planSelection.fullscreen.dialog.message": "您将降级到我们的免费帐户。您确定吗?单击此处每月只需{currency} {price}即可获得更多服务和功能。",
25 "feature.planSelection.fullscreen.dialog.title" : "降级您的Franz订阅计划", 25 "feature.planSelection.fullscreen.dialog.title": "降级您的Ferdi订阅计划",
26 "feature.planSelection.fullscreen.subheadline" : "是时候做出选择了。 Franz在我们的Personal和Professional订阅计划上表现最佳。请看看并为做出您的最佳选择。", 26 "feature.planSelection.fullscreen.subheadline": "是时候做出选择了。 Ferdi在我们的Personal和Professional订阅计划上表现最佳。请看看并为做出您的最佳选择。",
27 "feature.planSelection.fullscreen.welcome" : "你已经准备好了吗, {name}?", 27 "feature.planSelection.fullscreen.welcome": "你已经准备好了吗, {name}?",
28 "feature.planSelection.personal.text" : "更多的服务,无需等待 - 个人使用的理想选择。", 28 "feature.planSelection.personal.text": "更多的服务,无需等待 - 个人使用的理想选择。",
29 "feature.planSelection.pricesBasedOnAnnualPayment" : "所有价格均基于年度付款", 29 "feature.planSelection.pricesBasedOnAnnualPayment": "所有价格均基于年度付款",
30 "feature.planSelection.pro.text" : "为您和您的团队提供无限的服务和专业功能。", 30 "feature.planSelection.pro.text": "为您和您的团队提供无限的服务和专业功能。",
31 "feature.serviceLimit.limitReached" : "您已在计划中包含的{limit}个服务中添加了{amount}个。请升级您的帐户以添加更多服务。", 31 "feature.serviceLimit.limitReached": "您已在计划中包含的{limit}个服务中添加了{amount}个。请升级您的帐户以添加更多服务。",
32 "feature.shareFranz.action.email" : "使用电子邮件发送", 32 "feature.shareFranz.action.email": "使用电子邮件发送",
33 "feature.shareFranz.action.facebook" : "在Facebook上分享", 33 "feature.shareFranz.action.facebook": "在Facebook上分享",
34 "feature.shareFranz.action.twitter" : "在Twitter上分享", 34 "feature.shareFranz.action.twitter": "在Twitter上分享",
35 "feature.shareFranz.headline" : "Franz is better together!", 35 "feature.shareFranz.headline": "Ferdi is better together!",
36 "feature.shareFranz.shareText.email" : "我们在Franz里添加了 {count} 服务!请前往 www.meetfranz.com 获得支持WhatsApp,Messenger,Slack,Skype的免费应用程序. ", 36 "feature.shareFranz.shareText.email": "我们在Ferdi里添加了 {count} 服务!请前往 www.getferdi.com 获得支持WhatsApp,Messenger,Slack,Skype的免费应用程序. ",
37 "feature.shareFranz.shareText.twitter" : "我已经为Franz添加了{count}个服务!在www.meetfranz.com\/cc @FranzMessenger上获得适用于WhatsApp,Messenger,Slack,Skype和co的免费应用程序", 37 "feature.shareFranz.shareText.twitter": "我已经为Ferdi添加了{count}个服务!在www.getferdi.com/cc @FerdiMessenger上获得适用于WhatsApp,Messenger,Slack,Skype和co的免费应用程序",
38 "feature.shareFranz.text" : "告诉你的朋友和同事Franz有多棒并且帮助我们传播Franz。", 38 "feature.shareFranz.text": "告诉你的朋友和同事Ferdi有多棒并且帮助我们传播Ferdi。",
39 "feature.todos.premium.info" : "Franz Todos现在对高级用户可用!", 39 "feature.todos.premium.info": "Ferdi Todos现在对高级用户可用!",
40 "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", 40 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
41 "feature.todos.premium.upgrade" : "升级帐户", 41 "feature.todos.premium.upgrade": "升级帐户",
42 "feature.trialStatusBar.cta" : "立即升级", 42 "feature.trialStatusBar.cta": "立即升级",
43 "feature.trialStatusBar.expired" : "您的Franz免费订阅计划{plan}已过期,请升级您的帐户。", 43 "feature.trialStatusBar.expired": "您的Ferdi免费订阅计划{plan}已过期,请升级您的帐户。",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade" : "降级free订阅计划", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "降级free订阅计划",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade" : "选择Personal订阅计划", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "选择Personal订阅计划",
46 "feature.trialStatusBar.fullscreen.dialog.message" : "您将降级到我们的免费帐户。您确定吗?单击此处每月只需{currency} {price}即可获得更多服务和功能。", 46 "feature.trialStatusBar.fullscreen.dialog.message": "您将降级到我们的免费帐户。您确定吗?单击此处每月只需{currency} {price}即可获得更多服务和功能。",
47 "feature.trialStatusBar.fullscreen.dialog.title" : "降级您的Franz订阅计划", 47 "feature.trialStatusBar.fullscreen.dialog.title": "降级您的Ferdi订阅计划",
48 "feature.trialStatusBar.restTime" : "您的 Franz 免费 {plan} 试用期在 {时间} 结束。", 48 "feature.trialStatusBar.restTime": "您的 Ferdi 免费 {plan} 试用期在 {时间} 结束。",
49 "global.api.unhealthy" : "无法连接Franz在线服务", 49 "global.api.unhealthy": "无法连接Ferdi在线服务",
50 "global.franzProRequired" : "需要 Franz 专业版。", 50 "global.franzProRequired": "需要 Ferdi 专业版。",
51 "global.notConnectedToTheInternet" : "没有网络服务", 51 "global.notConnectedToTheInternet": "没有网络服务",
52 "global.spellchecker.useDefault" : "使用系统默认设置({default})", 52 "global.spellchecker.useDefault": "使用系统默认设置({default})",
53 "global.spellchecking.autodetect" : "自动检测语言", 53 "global.spellchecking.autodetect": "自动检测语言",
54 "global.spellchecking.autodetect.short" : "自动", 54 "global.spellchecking.autodetect.short": "自动",
55 "global.spellchecking.language" : "语言拼写检查", 55 "global.spellchecking.language": "语言拼写检查",
56 "global.upgradeButton.upgradeToPro" : "升级到 Franz 专业版。", 56 "global.upgradeButton.upgradeToPro": "升级到 Ferdi 专业版。",
57 "import.headline" : "导入自定义Franz 4服务", 57 "import.headline": "导入自定义Ferdi 4服务",
58 "import.notSupportedHeadline" : "Franz 5 目前不支持此项服务", 58 "import.notSupportedHeadline": "Ferdi 5 目前不支持此项服务",
59 "import.skip.label" : "手动添加服务", 59 "import.skip.label": "手动添加服务",
60 "import.submit.label" : "导入服务", 60 "import.submit.label": "导入服务",
61 "infobar.buttonChangelog" : "新功能", 61 "infobar.buttonChangelog": "新功能",
62 "infobar.buttonInstallUpdate" : "重启并安装更新", 62 "infobar.buttonInstallUpdate": "重启并安装更新",
63 "infobar.buttonReloadServices" : "重新加载服务", 63 "infobar.buttonReloadServices": "重新加载服务",
64 "infobar.requiredRequestsFailed" : "无法加载服务列表和用户信息", 64 "infobar.requiredRequestsFailed": "无法加载服务列表和用户信息",
65 "infobar.servicesUpdated" : "服务已更新", 65 "infobar.servicesUpdated": "服务已更新",
66 "infobar.trialActivated" : "您的试用已成功激活。祝您愉快!", 66 "infobar.trialActivated": "您的试用已成功激活。祝您愉快!",
67 "infobar.updateAvailable" : "Franz更新可用.", 67 "infobar.updateAvailable": "Ferdi更新可用.",
68 "invite.email.label" : "电子邮件地址", 68 "invite.email.label": "电子邮件地址",
69 "invite.headline.friends" : "邀请3个好友或同事", 69 "invite.headline.friends": "邀请3个好友或同事",
70 "invite.name.label" : "名字", 70 "invite.name.label": "名字",
71 "invite.skip.label" : "稍后再进行此项操作", 71 "invite.skip.label": "稍后再进行此项操作",
72 "invite.submit.label" : "发送邀请", 72 "invite.submit.label": "发送邀请",
73 "invite.successInfo" : "邀请发送成功", 73 "invite.successInfo": "邀请发送成功",
74 "login.email.label" : "Email 地址", 74 "login.email.label": "Email 地址",
75 "login.headline" : "登陆", 75 "login.headline": "登陆",
76 "login.invalidCredentials" : "Email或密码无效", 76 "login.invalidCredentials": "Email或密码无效",
77 "login.link.password" : "重置密码", 77 "login.link.password": "重置密码",
78 "login.link.signup" : "创建账户", 78 "login.link.signup": "创建账户",
79 "login.password.label" : "密码:", 79 "login.password.label": "密码:",
80 "login.serverLogout" : "您的登陆已过期,请重新登录。", 80 "login.serverLogout": "您的登陆已过期,请重新登录。",
81 "login.submit.label" : "登陆", 81 "login.submit.label": "登陆",
82 "login.tokenExpired" : "登录已过期,请重新登录", 82 "login.tokenExpired": "登录已过期,请重新登录",
83 "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", 83 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
84 "menu.Todoss.openTodosDrawer" : "Open Todos drawer", 84 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
85 "menu.app.about" : "关于 Franz", 85 "menu.app.about": "关于 Ferdi",
86 "menu.app.announcement" : "新变化", 86 "menu.app.announcement": "新变化",
87 "menu.app.checkForUpdates" : "检查更新", 87 "menu.app.checkForUpdates": "检查更新",
88 "menu.app.hide" : "隐藏", 88 "menu.app.hide": "隐藏",
89 "menu.app.hideOthers" : "隐藏其它", 89 "menu.app.hideOthers": "隐藏其它",
90 "menu.app.quit" : "退出", 90 "menu.app.quit": "退出",
91 "menu.app.settings" : "设置", 91 "menu.app.settings": "设置",
92 "menu.app.unhide" : "显示", 92 "menu.app.unhide": "显示",
93 "menu.edit" : "编辑", 93 "menu.edit": "编辑",
94 "menu.edit.copy" : "复制", 94 "menu.edit.copy": "复制",
95 "menu.edit.cut" : "剪切", 95 "menu.edit.cut": "剪切",
96 "menu.edit.delete" : "删除", 96 "menu.edit.delete": "删除",
97 "menu.edit.emojiSymbols" : "表情与符号", 97 "menu.edit.emojiSymbols": "表情与符号",
98 "menu.edit.paste" : "粘贴", 98 "menu.edit.paste": "粘贴",
99 "menu.edit.pasteAndMatchStyle" : "粘贴并适应格式", 99 "menu.edit.pasteAndMatchStyle": "粘贴并适应格式",
100 "menu.edit.redo" : "重做", 100 "menu.edit.redo": "重做",
101 "menu.edit.selectAll" : "全选", 101 "menu.edit.selectAll": "全选",
102 "menu.edit.speech" : "演讲", 102 "menu.edit.speech": "演讲",
103 "menu.edit.startDictation" : "开始听写", 103 "menu.edit.startDictation": "开始听写",
104 "menu.edit.startSpeaking" : "开始说话", 104 "menu.edit.startSpeaking": "开始说话",
105 "menu.edit.stopSpeaking" : "停止说话", 105 "menu.edit.stopSpeaking": "停止说话",
106 "menu.edit.undo" : "撤销", 106 "menu.edit.undo": "撤销",
107 "menu.file" : "文件", 107 "menu.file": "文件",
108 "menu.help" : "帮助", 108 "menu.help": "帮助",
109 "menu.help.changelog" : "更新日志", 109 "menu.help.changelog": "更新日志",
110 "menu.help.debugInfo" : "复制调试信息", 110 "menu.help.debugInfo": "复制调试信息",
111 "menu.help.debugInfoCopiedBody" : "您的调试信息已复制到剪贴板。", 111 "menu.help.debugInfoCopiedBody": "您的调试信息已复制到剪贴板。",
112 "menu.help.debugInfoCopiedHeadline" : "Franz 调试信息", 112 "menu.help.debugInfoCopiedHeadline": "Ferdi 调试信息",
113 "menu.help.learnMore" : "了解更多", 113 "menu.help.learnMore": "了解更多",
114 "menu.help.privacy" : "隐私条款", 114 "menu.help.privacy": "隐私条款",
115 "menu.help.support" : "支持", 115 "menu.help.support": "支持",
116 "menu.help.tos" : "服务条款", 116 "menu.help.tos": "服务条款",
117 "menu.services" : "服务", 117 "menu.services": "服务",
118 "menu.services.activatePreviousService" : "激活以前的服务", 118 "menu.services.activatePreviousService": "激活以前的服务",
119 "menu.services.addNewService" : "Add New Service", 119 "menu.services.addNewService": "Add New Service",
120 "menu.services.goHome" : "主页", 120 "menu.services.goHome": "主页",
121 "menu.services.setNextServiceActive" : "激活下一个服务", 121 "menu.services.setNextServiceActive": "激活下一个服务",
122 "menu.todos" : "Todos", 122 "menu.todos": "Todos",
123 "menu.todos.enableTodos" : "Enable Todos", 123 "menu.todos.enableTodos": "Enable Todos",
124 "menu.view" : "视图", 124 "menu.view": "视图",
125 "menu.view.enterFullScreen" : "全屏", 125 "menu.view.enterFullScreen": "全屏",
126 "menu.view.exitFullScreen" : "退出全屏", 126 "menu.view.exitFullScreen": "退出全屏",
127 "menu.view.reloadFranz" : "重启Franz", 127 "menu.view.reloadFranz": "重启Ferdi",
128 "menu.view.reloadService" : "重启服务", 128 "menu.view.reloadService": "重启服务",
129 "menu.view.reloadTodos" : "Reload ToDos", 129 "menu.view.reloadTodos": "Reload ToDos",
130 "menu.view.resetZoom" : "实际尺寸", 130 "menu.view.resetZoom": "实际尺寸",
131 "menu.view.toggleDevTools" : "打开开发者工具", 131 "menu.view.toggleDevTools": "打开开发者工具",
132 "menu.view.toggleFullScreen" : "切换全屏", 132 "menu.view.toggleFullScreen": "切换全屏",
133 "menu.view.toggleServiceDevTools" : "切换服务开发工具", 133 "menu.view.toggleServiceDevTools": "切换服务开发工具",
134 "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", 134 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
135 "menu.view.zoomIn" : "放大", 135 "menu.view.zoomIn": "放大",
136 "menu.view.zoomOut" : "缩小", 136 "menu.view.zoomOut": "缩小",
137 "menu.window" : "窗口", 137 "menu.window": "窗口",
138 "menu.window.close" : "关闭", 138 "menu.window.close": "关闭",
139 "menu.window.minimize" : "最小化", 139 "menu.window.minimize": "最小化",
140 "menu.workspaces" : "工作组", 140 "menu.workspaces": "工作组",
141 "menu.workspaces.addNewWorkspace" : "增加一个工作组", 141 "menu.workspaces.addNewWorkspace": "增加一个工作组",
142 "menu.workspaces.closeWorkspaceDrawer" : "关闭工作区列表", 142 "menu.workspaces.closeWorkspaceDrawer": "关闭工作区列表",
143 "menu.workspaces.defaultWorkspace" : "所有服务", 143 "menu.workspaces.defaultWorkspace": "所有服务",
144 "menu.workspaces.openWorkspaceDrawer" : "打开工作组列表", 144 "menu.workspaces.openWorkspaceDrawer": "打开工作组列表",
145 "password.email.label" : "Email地址", 145 "password.email.label": "Email地址",
146 "password.headline" : "重置密码", 146 "password.headline": "重置密码",
147 "password.link.login" : "登录到您的帐户", 147 "password.link.login": "登录到您的帐户",
148 "password.link.signup" : "创建一个免费账户", 148 "password.link.signup": "创建一个免费账户",
149 "password.noUser" : "该邮箱尚未注册", 149 "password.noUser": "该邮箱尚未注册",
150 "password.submit.label" : "提交", 150 "password.submit.label": "提交",
151 "password.successInfo" : "请检查您的 email 邮箱", 151 "password.successInfo": "请检查您的 email 邮箱",
152 "premiumFeature.button.upgradeAccount" : "升级账户", 152 "premiumFeature.button.upgradeAccount": "升级账户",
153 "pricing.features.accountSync" : "帐户同步", 153 "pricing.features.accountSync": "帐户同步",
154 "pricing.features.adFree" : "永远无广告", 154 "pricing.features.adFree": "永远无广告",
155 "pricing.features.appDelays" : "没有等待画面", 155 "pricing.features.appDelays": "没有等待画面",
156 "pricing.features.appDelaysEnabled" : "Occasional Waiting Screens", 156 "pricing.features.appDelaysEnabled": "Occasional Waiting Screens",
157 "pricing.features.customWebsites" : "添加自定义网站", 157 "pricing.features.customWebsites": "添加自定义网站",
158 "pricing.features.desktopNotifications" : "桌面通知", 158 "pricing.features.desktopNotifications": "桌面通知",
159 "pricing.features.onPremise" : "本地和其他托管服务", 159 "pricing.features.onPremise": "本地和其他托管服务",
160 "pricing.features.recipes" : "从70多种服务中选择", 160 "pricing.features.recipes": "从70多种服务中选择",
161 "pricing.features.serviceProxies" : "代理服务", 161 "pricing.features.serviceProxies": "代理服务",
162 "pricing.features.spellchecker" : "拼写检查器支持", 162 "pricing.features.spellchecker": "拼写检查器支持",
163 "pricing.features.teamManagement" : "团队管理", 163 "pricing.features.teamManagement": "团队管理",
164 "pricing.features.thirdPartyServices" : "安装第三方服务", 164 "pricing.features.thirdPartyServices": "安装第三方服务",
165 "pricing.features.unlimitedServices" : "Add unlimited services", 165 "pricing.features.unlimitedServices": "Add unlimited services",
166 "pricing.features.upToSixServices" : "Add up to 6 services", 166 "pricing.features.upToSixServices": "Add up to 6 services",
167 "pricing.features.upToThreeServices" : "Add up to 3 services", 167 "pricing.features.upToThreeServices": "Add up to 3 services",
168 "pricing.features.workspaces" : "工作组", 168 "pricing.features.workspaces": "工作组",
169 "pricing.plan.free" : "免费", 169 "pricing.plan.free": "免费",
170 "pricing.plan.legacy" : "Premium", 170 "pricing.plan.legacy": "Premium",
171 "pricing.plan.personal" : "Personal", 171 "pricing.plan.personal": "Personal",
172 "pricing.plan.personal-monthly" : "Personal Monthly", 172 "pricing.plan.personal-monthly": "Personal Monthly",
173 "pricing.plan.personal-yearly" : "Personal Yearly", 173 "pricing.plan.personal-yearly": "Personal Yearly",
174 "pricing.plan.pro" : "Professional", 174 "pricing.plan.pro": "Professional",
175 "pricing.plan.pro-monthly" : "Professional Monthly", 175 "pricing.plan.pro-monthly": "Professional Monthly",
176 "pricing.plan.pro-yearly" : "Professional Yearly", 176 "pricing.plan.pro-yearly": "Professional Yearly",
177 "pricing.trial.cta.accept" : "Start my 14-day Franz Professional Trial ", 177 "pricing.trial.cta.accept": "Start my 14-day Ferdi Professional Trial ",
178 "pricing.trial.cta.skip" : "Continue to Franz", 178 "pricing.trial.cta.skip": "Continue to Ferdi",
179 "pricing.trial.cta.start" : "Start using Franz", 179 "pricing.trial.cta.start": "Start using Ferdi",
180 "pricing.trial.error" : "Sorry, we could not activate your trial!", 180 "pricing.trial.error": "Sorry, we could not activate your trial!",
181 "pricing.trial.features.headline" : "Franz Professional includes:", 181 "pricing.trial.features.headline": "Ferdi Professional includes:",
182 "pricing.trial.headline.pro" : "Hi {name}, welcome to Franz", 182 "pricing.trial.headline.pro": "Hi {name}, welcome to Ferdi",
183 "pricing.trial.intro.happyMessaging" : "Happy messaging,", 183 "pricing.trial.intro.happyMessaging": "Happy messaging,",
184 "pricing.trial.intro.specialTreat" : "We have a special treat for you.", 184 "pricing.trial.intro.specialTreat": "We have a special treat for you.",
185 "pricing.trial.intro.tryPro" : "Enjoy the full Franz Professional experience completely free for 14 days.", 185 "pricing.trial.intro.tryPro": "Enjoy the full Ferdi Professional experience completely free for 14 days.",
186 "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", 186 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
187 "pricing.trial.terms.headline" : "No strings attached", 187 "pricing.trial.terms.headline": "No strings attached",
188 "pricing.trial.terms.noCreditCard" : "No credit card required", 188 "pricing.trial.terms.noCreditCard": "No credit card required",
189 "pricing.trial.terms.trialWorth" : "Free trial (normally {currency}{price} per month)", 189 "pricing.trial.terms.trialWorth": "Free trial (normally {currency}{price} per month)",
190 "service.crashHandler.action" : "重新载入", 190 "service.crashHandler.action": "重新载入",
191 "service.crashHandler.autoReload" : "在{seconds}秒内尝试自动恢复{name}", 191 "service.crashHandler.autoReload": "在{seconds}秒内尝试自动恢复{name}",
192 "service.crashHandler.headline" : "啊,糟糕!", 192 "service.crashHandler.headline": "啊,糟糕!",
193 "service.crashHandler.text" : "项目{name}引起了一个错误。", 193 "service.crashHandler.text": "项目{name}引起了一个错误。",
194 "service.disabledHandler.action" : "启用{name}", 194 "service.disabledHandler.action": "启用{name}",
195 "service.disabledHandler.headline" : "项目{name}已停用", 195 "service.disabledHandler.headline": "项目{name}已停用",
196 "service.errorHandler.action" : "重新载入 {name}", 196 "service.errorHandler.action": "重新载入 {name}",
197 "service.errorHandler.editAction" : "编辑{name}", 197 "service.errorHandler.editAction": "编辑{name}",
198 "service.errorHandler.headline" : "啊,糟糕!", 198 "service.errorHandler.headline": "啊,糟糕!",
199 "service.errorHandler.message" : "错误", 199 "service.errorHandler.message": "错误",
200 "service.errorHandler.text" : "{name} 没有办法加载", 200 "service.errorHandler.text": "{name} 没有办法加载",
201 "service.restrictedHandler.action" : "升级帐户", 201 "service.restrictedHandler.action": "升级帐户",
202 "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", 202 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
203 "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", 203 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
204 "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", 204 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
205 "service.restrictedHandler.serviceLimit.text" : "Please upgrade your account to use more than {count} services.", 205 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
206 "service.webviewLoader.loading" : "正在加载,请稍后", 206 "service.webviewLoader.loading": "正在加载,请稍后",
207 "services.getStarted" : "开始", 207 "services.getStarted": "开始",
208 "services.welcome" : "欢迎使用 Franz", 208 "services.welcome": "欢迎使用 Ferdi",
209 "settings.account.account.editButton" : "编辑账户", 209 "settings.account.account.editButton": "编辑账户",
210 "settings.account.accountType.basic" : "基本账户", 210 "settings.account.accountType.basic": "基本账户",
211 "settings.account.accountType.premium" : "高级支持者账户", 211 "settings.account.accountType.premium": "高级支持者账户",
212 "settings.account.buttonSave" : "上传文件", 212 "settings.account.buttonSave": "上传文件",
213 "settings.account.deleteAccount" : "删除账号", 213 "settings.account.deleteAccount": "删除账号",
214 "settings.account.deleteEmailSent" : "您将收到一封邮件,在这封邮件中包含有确认删除您的账号的链接。请注意,您的账号和数据无法被恢复!", 214 "settings.account.deleteEmailSent": "您将收到一封邮件,在这封邮件中包含有确认删除您的账号的链接。请注意,您的账号和数据无法被恢复!",
215 "settings.account.deleteInfo" : "如果您不再需要Franz账户,您可以在这里删除您的账户及其相关联的数据。", 215 "settings.account.deleteInfo": "如果您不再需要Ferdi账户,您可以在这里删除您的账户及其相关联的数据。",
216 "settings.account.headline" : "账户", 216 "settings.account.headline": "账户",
217 "settings.account.headlineAccount" : "账户信息", 217 "settings.account.headlineAccount": "账户信息",
218 "settings.account.headlineDangerZone" : "注意!", 218 "settings.account.headlineDangerZone": "注意!",
219 "settings.account.headlineInvoices" : "发票", 219 "settings.account.headlineInvoices": "发票",
220 "settings.account.headlinePassword" : "修改密码", 220 "settings.account.headlinePassword": "修改密码",
221 "settings.account.headlineProfile" : "更新个人资料", 221 "settings.account.headlineProfile": "更新个人资料",
222 "settings.account.headlineSubscription" : "您的订阅", 222 "settings.account.headlineSubscription": "您的订阅",
223 "settings.account.headlineTrialUpgrade" : "Get the free 14 day Franz Professional Trial", 223 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
224 "settings.account.headlineUpgradeAccount" : "Upgrade your account & get the full Franz experience", 224 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
225 "settings.account.invoiceDownload" : "下载", 225 "settings.account.invoiceDownload": "下载",
226 "settings.account.manageSubscription.label" : "管理您的订阅", 226 "settings.account.manageSubscription.label": "管理您的订阅",
227 "settings.account.successInfo" : "已保存您的设置", 227 "settings.account.successInfo": "已保存您的设置",
228 "settings.account.trial" : "Free Trial", 228 "settings.account.trial": "Free Trial",
229 "settings.account.trialEndsIn" : "Your free trial ends in {duration}.", 229 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
230 "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", 230 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
231 "settings.account.tryReloadServices" : "重试", 231 "settings.account.tryReloadServices": "重试",
232 "settings.account.tryReloadUserInfoRequest" : "重试", 232 "settings.account.tryReloadUserInfoRequest": "重试",
233 "settings.account.upgradeToPro.label" : "升级到 Franz 专业版。", 233 "settings.account.upgradeToPro.label": "升级到 Ferdi 专业版。",
234 "settings.account.userInfoRequestFailed" : "无法加载用户信息", 234 "settings.account.userInfoRequestFailed": "无法加载用户信息",
235 "settings.account.yourLicense" : "Your Franz License", 235 "settings.account.yourLicense": "Your Ferdi License",
236 "settings.app.buttonClearAllCache" : "清除缓存", 236 "settings.app.buttonClearAllCache": "清除缓存",
237 "settings.app.buttonInstallUpdate" : "重启并安装更新", 237 "settings.app.buttonInstallUpdate": "重启并安装更新",
238 "settings.app.buttonSearchForUpdate" : "检查更新", 238 "settings.app.buttonSearchForUpdate": "检查更新",
239 "settings.app.cacheInfo" : "Franz 的缓存占用磁盘:{size} .", 239 "settings.app.cacheInfo": "Ferdi 的缓存占用磁盘:{size} .",
240 "settings.app.currentVersion" : "当前版本:", 240 "settings.app.currentVersion": "当前版本:",
241 "settings.app.form.autoLaunchInBackground" : "在后台打开", 241 "settings.app.form.autoLaunchInBackground": "在后台打开",
242 "settings.app.form.autoLaunchOnStart" : "开机启动Franz", 242 "settings.app.form.autoLaunchOnStart": "开机启动Ferdi",
243 "settings.app.form.beta" : "包含测试版本", 243 "settings.app.form.beta": "包含测试版本",
244 "settings.app.form.darkMode" : "加入黑色主题", 244 "settings.app.form.darkMode": "加入黑色主题",
245 "settings.app.form.enableGPUAcceleration" : "启用 GPU 加速", 245 "settings.app.form.enableGPUAcceleration": "启用 GPU 加速",
246 "settings.app.form.enableSpellchecking" : "启用拼写检查", 246 "settings.app.form.enableSpellchecking": "启用拼写检查",
247 "settings.app.form.enableSystemTray" : "在系统托盘中显示 Franz", 247 "settings.app.form.enableSystemTray": "在系统托盘中显示 Ferdi",
248 "settings.app.form.enableTodos" : "Enable Franz Todos", 248 "settings.app.form.enableTodos": "Enable Ferdi Todos",
249 "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", 249 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
250 "settings.app.form.language" : "语言", 250 "settings.app.form.language": "语言",
251 "settings.app.form.minimizeToSystemTray" : "最小化 Franz 到系统托盘", 251 "settings.app.form.minimizeToSystemTray": "最小化 Ferdi 到系统托盘",
252 "settings.app.form.runInBackground" : "关闭窗口时保持 Franz 在后台运行", 252 "settings.app.form.runInBackground": "关闭窗口时保持 Ferdi 在后台运行",
253 "settings.app.form.showDisabledServices" : "显示已禁用的服务标签页", 253 "settings.app.form.showDisabledServices": "显示已禁用的服务标签页",
254 "settings.app.form.showMessagesBadgesWhenMuted" : "在通知被禁用时显示未读消息提示。", 254 "settings.app.form.showMessagesBadgesWhenMuted": "在通知被禁用时显示未读消息提示。",
255 "settings.app.headline" : "设置", 255 "settings.app.headline": "设置",
256 "settings.app.headlineAdvanced" : "高级", 256 "settings.app.headlineAdvanced": "高级",
257 "settings.app.headlineAppearance" : "外观", 257 "settings.app.headlineAppearance": "外观",
258 "settings.app.headlineGeneral" : "通用", 258 "settings.app.headlineGeneral": "通用",
259 "settings.app.headlineLanguage" : "语言", 259 "settings.app.headlineLanguage": "语言",
260 "settings.app.headlineUpdates" : "更新", 260 "settings.app.headlineUpdates": "更新",
261 "settings.app.languageDisclaimer" : "英语和德语为官方翻译。其他语言都是来自社区的翻译", 261 "settings.app.languageDisclaimer": "英语和德语为官方翻译。其他语言都是来自社区的翻译",
262 "settings.app.restartRequired" : "重启后生效", 262 "settings.app.restartRequired": "重启后生效",
263 "settings.app.subheadlineCache" : "缓存", 263 "settings.app.subheadlineCache": "缓存",
264 "settings.app.translationHelp" : "帮助我们将Franz翻译至您的语言。", 264 "settings.app.translationHelp": "帮助我们将Ferdi翻译至您的语言。",
265 "settings.app.updateStatusAvailable" : "更新可用,下载中……", 265 "settings.app.updateStatusAvailable": "更新可用,下载中……",
266 "settings.app.updateStatusSearching" : "正在查找更新", 266 "settings.app.updateStatusSearching": "正在查找更新",
267 "settings.app.updateStatusUpToDate" : "您使用的Franz是最新版本", 267 "settings.app.updateStatusUpToDate": "您使用的Ferdi是最新版本",
268 "settings.invite.headline" : "邀请朋友", 268 "settings.invite.headline": "邀请朋友",
269 "settings.navigation.account" : "账户", 269 "settings.navigation.account": "账户",
270 "settings.navigation.availableServices" : "可用的服务", 270 "settings.navigation.availableServices": "可用的服务",
271 "settings.navigation.inviteFriends" : "邀请朋友", 271 "settings.navigation.inviteFriends": "邀请朋友",
272 "settings.navigation.logout" : "退出账户", 272 "settings.navigation.logout": "退出账户",
273 "settings.navigation.settings" : "设置", 273 "settings.navigation.settings": "设置",
274 "settings.navigation.team" : "管理团队", 274 "settings.navigation.team": "管理团队",
275 "settings.navigation.yourServices" : "您的服务", 275 "settings.navigation.yourServices": "您的服务",
276 "settings.navigation.yourWorkspaces" : "你的工作组", 276 "settings.navigation.yourWorkspaces": "你的工作组",
277 "settings.recipes.all" : "所有服务", 277 "settings.recipes.all": "所有服务",
278 "settings.recipes.custom" : "Custom Services", 278 "settings.recipes.custom": "Custom Services",
279 "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", 279 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
280 "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", 280 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
281 "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", 281 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
282 "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", 282 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
283 "settings.recipes.customService.openDevDocs" : "Developer Documentation", 283 "settings.recipes.customService.openDevDocs": "Developer Documentation",
284 "settings.recipes.customService.openFolder" : "Open folder", 284 "settings.recipes.customService.openFolder": "Open folder",
285 "settings.recipes.headline" : "可用的服务", 285 "settings.recipes.headline": "可用的服务",
286 "settings.recipes.missingService" : "服务丢失?", 286 "settings.recipes.missingService": "服务丢失?",
287 "settings.recipes.mostPopular" : "最受欢迎的", 287 "settings.recipes.mostPopular": "最受欢迎的",
288 "settings.recipes.nothingFound" : "抱歉,没有找到相关服务", 288 "settings.recipes.nothingFound": "抱歉,没有找到相关服务",
289 "settings.recipes.servicesSuccessfulAddedInfo" : "服务添加成功", 289 "settings.recipes.servicesSuccessfulAddedInfo": "服务添加成功",
290 "settings.searchService" : "搜索服务", 290 "settings.searchService": "搜索服务",
291 "settings.service.error.goBack" : "返回服务", 291 "settings.service.error.goBack": "返回服务",
292 "settings.service.error.headline" : "错误", 292 "settings.service.error.headline": "错误",
293 "settings.service.error.message" : "无法加载服务配置。", 293 "settings.service.error.message": "无法加载服务配置。",
294 "settings.service.form.addServiceHeadline" : "添加 {name}", 294 "settings.service.form.addServiceHeadline": "添加 {name}",
295 "settings.service.form.availableServices" : "可用的服务", 295 "settings.service.form.availableServices": "可用的服务",
296 "settings.service.form.customUrl" : "自定义服务器", 296 "settings.service.form.customUrl": "自定义服务器",
297 "settings.service.form.customUrlPremiumInfo" : "如要添加自设服务,您需要一个Franz高级支持者账户。", 297 "settings.service.form.customUrlPremiumInfo": "如要添加自设服务,您需要一个Ferdi高级支持者账户。",
298 "settings.service.form.customUrlUpgradeAccount" : "升级您的账户", 298 "settings.service.form.customUrlUpgradeAccount": "升级您的账户",
299 "settings.service.form.customUrlValidationError" : "无法验证自定义{name}服务器。", 299 "settings.service.form.customUrlValidationError": "无法验证自定义{name}服务器。",
300 "settings.service.form.deleteButton" : "删除服务", 300 "settings.service.form.deleteButton": "删除服务",
301 "settings.service.form.editServiceHeadline" : "编辑{name}", 301 "settings.service.form.editServiceHeadline": "编辑{name}",
302 "settings.service.form.enableAudio" : "启用声音", 302 "settings.service.form.enableAudio": "启用声音",
303 "settings.service.form.enableBadge" : "启用未读消息通知", 303 "settings.service.form.enableBadge": "启用未读消息通知",
304 "settings.service.form.enableDarkMode" : "使用黑色模式", 304 "settings.service.form.enableDarkMode": "使用黑色模式",
305 "settings.service.form.enableHibernation" : "Enable hibernation", 305 "settings.service.form.enableHibernation": "Enable hibernation",
306 "settings.service.form.enableNotification" : "启用通知", 306 "settings.service.form.enableNotification": "启用通知",
307 "settings.service.form.enableService" : "启用服务", 307 "settings.service.form.enableService": "启用服务",
308 "settings.service.form.headlineBadges" : "未读消息通知", 308 "settings.service.form.headlineBadges": "未读消息通知",
309 "settings.service.form.headlineGeneral" : "常规", 309 "settings.service.form.headlineGeneral": "常规",
310 "settings.service.form.headlineNotifications" : "未读消息通知", 310 "settings.service.form.headlineNotifications": "未读消息通知",
311 "settings.service.form.icon" : "自定义图标", 311 "settings.service.form.icon": "自定义图标",
312 "settings.service.form.iconDelete" : "删除", 312 "settings.service.form.iconDelete": "删除",
313 "settings.service.form.iconUpload" : "点击或把图片拖放到这里", 313 "settings.service.form.iconUpload": "点击或把图片拖放到这里",
314 "settings.service.form.indirectMessageInfo" : "频道内的所有新消息都会通知到您,包括@用户名、@频道等等...", 314 "settings.service.form.indirectMessageInfo": "频道内的所有新消息都会通知到您,包括@用户名、@频道等等...",
315 "settings.service.form.indirectMessages" : "显示所有新消息的标志", 315 "settings.service.form.indirectMessages": "显示所有新消息的标志",
316 "settings.service.form.isHibernatedEnabledInfo" : "When enabled, a service will be shut down after a period of time to save system resources.", 316 "settings.service.form.isHibernatedEnabledInfo": "When enabled, a service will be shut down after a period of time to save system resources.",
317 "settings.service.form.isMutedInfo" : "禁用后所有的通知和软件声音都会消失", 317 "settings.service.form.isMutedInfo": "禁用后所有的通知和软件声音都会消失",
318 "settings.service.form.name" : "名字", 318 "settings.service.form.name": "名字",
319 "settings.service.form.proxy.headline" : "HTTP\/HTTPS 端口设定", 319 "settings.service.form.proxy.headline": "HTTP/HTTPS 端口设定",
320 "settings.service.form.proxy.host" : "端口主机\/IP", 320 "settings.service.form.proxy.host": "端口主机/IP",
321 "settings.service.form.proxy.info" : "代理服务器的设置将不会与 Franz 的服务器同步。", 321 "settings.service.form.proxy.info": "代理服务器的设置将不会与 Ferdi 的服务器同步。",
322 "settings.service.form.proxy.isEnabled" : "使用代理", 322 "settings.service.form.proxy.isEnabled": "使用代理",
323 "settings.service.form.proxy.password" : "密码(可选)", 323 "settings.service.form.proxy.password": "密码(可选)",
324 "settings.service.form.proxy.port" : "端口", 324 "settings.service.form.proxy.port": "端口",
325 "settings.service.form.proxy.restartInfo" : "请在设定端口后重启Franz。", 325 "settings.service.form.proxy.restartInfo": "请在设定端口后重启Ferdi。",
326 "settings.service.form.proxy.user" : "用户(可选)", 326 "settings.service.form.proxy.user": "用户(可选)",
327 "settings.service.form.saveButton" : "保存服务", 327 "settings.service.form.saveButton": "保存服务",
328 "settings.service.form.tabHosted" : "托管", 328 "settings.service.form.tabHosted": "托管",
329 "settings.service.form.tabOnPremise" : "自托管", 329 "settings.service.form.tabOnPremise": "自托管",
330 "settings.service.form.team" : "团队", 330 "settings.service.form.team": "团队",
331 "settings.service.form.useHostedService" : "使用主服务", 331 "settings.service.form.useHostedService": "使用主服务",
332 "settings.service.form.yourServices" : "您的服务", 332 "settings.service.form.yourServices": "您的服务",
333 "settings.services.deletedInfo" : "已删除服务", 333 "settings.services.deletedInfo": "已删除服务",
334 "settings.services.discoverServices" : "发现服务", 334 "settings.services.discoverServices": "发现服务",
335 "settings.services.headline" : "您的服务", 335 "settings.services.headline": "您的服务",
336 "settings.services.noServicesAdded" : "您还没添加任何服务", 336 "settings.services.noServicesAdded": "您还没添加任何服务",
337 "settings.services.servicesRequestFailed" : "无法加载你的服务", 337 "settings.services.servicesRequestFailed": "无法加载你的服务",
338 "settings.services.tooltip.isDisabled" : "已禁止服务", 338 "settings.services.tooltip.isDisabled": "已禁止服务",
339 "settings.services.tooltip.isMuted" : "已全部静音", 339 "settings.services.tooltip.isMuted": "已全部静音",
340 "settings.services.tooltip.notificationsDisabled" : "已禁用通知", 340 "settings.services.tooltip.notificationsDisabled": "已禁用通知",
341 "settings.services.updatedInfo" : "已保存您的设置", 341 "settings.services.updatedInfo": "已保存您的设置",
342 "settings.team.contentHeadline" : "适用于团队的Franz", 342 "settings.team.contentHeadline": "适用于团队的Franz",
343 "settings.team.copy" : "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!", 343 "settings.team.copy": "Franz for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
344 "settings.team.headline" : "团队", 344 "settings.team.headline": "团队",
345 "settings.team.intro" : "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 345 "settings.team.intro": "You and your team use Franz? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
346 "settings.team.manageAction" : "在meetfranz.com管理你的团队", 346 "settings.team.manageAction": "在meetfranz.com管理你的团队",
347 "settings.team.upgradeAction" : "注册账号", 347 "settings.team.upgradeAction": "注册账号",
348 "settings.user.form.accountType.company" : "公司", 348 "settings.user.form.accountType.company": "公司",
349 "settings.user.form.accountType.individual" : "个人", 349 "settings.user.form.accountType.individual": "个人",
350 "settings.user.form.accountType.label" : "账户类型", 350 "settings.user.form.accountType.label": "账户类型",
351 "settings.user.form.accountType.non-profit" : "非盈利", 351 "settings.user.form.accountType.non-profit": "非盈利",
352 "settings.user.form.currentPassword" : "当前密码", 352 "settings.user.form.currentPassword": "当前密码",
353 "settings.user.form.email" : "电子邮件", 353 "settings.user.form.email": "电子邮件",
354 "settings.user.form.firstname" : "名字", 354 "settings.user.form.firstname": "名字",
355 "settings.user.form.lastname" : "姓氏", 355 "settings.user.form.lastname": "姓氏",
356 "settings.user.form.newPassword" : "新的密码", 356 "settings.user.form.newPassword": "新的密码",
357 "settings.workspace.add.form.name" : "姓名", 357 "settings.workspace.add.form.name": "姓名",
358 "settings.workspace.add.form.submitButton" : "创建工作组", 358 "settings.workspace.add.form.submitButton": "创建工作组",
359 "settings.workspace.form.buttonDelete" : "删除工作组", 359 "settings.workspace.form.buttonDelete": "删除工作组",
360 "settings.workspace.form.buttonSave" : "保存工作组", 360 "settings.workspace.form.buttonSave": "保存工作组",
361 "settings.workspace.form.name" : "名字", 361 "settings.workspace.form.name": "名字",
362 "settings.workspace.form.servicesInWorkspaceHeadline" : "这个工作组里的服务", 362 "settings.workspace.form.servicesInWorkspaceHeadline": "这个工作组里的服务",
363 "settings.workspace.form.yourWorkspaces" : "你的工作组", 363 "settings.workspace.form.yourWorkspaces": "你的工作组",
364 "settings.workspaces.deletedInfo" : "此工作组已被删除", 364 "settings.workspaces.deletedInfo": "此工作组已被删除",
365 "settings.workspaces.headline" : "你的工作组", 365 "settings.workspaces.headline": "你的工作组",
366 "settings.workspaces.noWorkspacesAdded" : "你尚未添加任何工作组。", 366 "settings.workspaces.noWorkspacesAdded": "你尚未添加任何工作组。",
367 "settings.workspaces.tryReloadWorkspaces" : "重试", 367 "settings.workspaces.tryReloadWorkspaces": "重试",
368 "settings.workspaces.updatedInfo" : "已保存您的设置", 368 "settings.workspaces.updatedInfo": "已保存您的设置",
369 "settings.workspaces.workspaceFeatureHeadline" : "Less is More: Introducing Franz Workspaces", 369 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
370 "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.", 370 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
371 "settings.workspaces.workspacesRequestFailed" : "不能加载你的工作组", 371 "settings.workspaces.workspacesRequestFailed": "不能加载你的工作组",
372 "setupAssistant.headline" : "Let's get started", 372 "setupAssistant.headline": "Let's get started",
373 "setupAssistant.subheadline" : "Choose from our most used services and get back on top of your messaging now.", 373 "setupAssistant.subheadline": "Choose from our most used services and get back on top of your messaging now.",
374 "setupAssistant.submit.label" : "Let's go", 374 "setupAssistant.submit.label": "Let's go",
375 "sidebar.addNewService" : "添加新服务", 375 "sidebar.addNewService": "添加新服务",
376 "sidebar.closeTodosDrawer" : "Close Franz Todos", 376 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
377 "sidebar.closeWorkspaceDrawer" : "关闭工作区列表", 377 "sidebar.closeWorkspaceDrawer": "关闭工作区列表",
378 "sidebar.muteApp" : "关闭通知和声音提醒", 378 "sidebar.muteApp": "关闭通知和声音提醒",
379 "sidebar.openTodosDrawer" : "Open Franz Todos", 379 "sidebar.openTodosDrawer": "Open Ferdi Todos",
380 "sidebar.openWorkspaceDrawer" : "打开工作组列表", 380 "sidebar.openWorkspaceDrawer": "打开工作组列表",
381 "sidebar.settings" : "设置", 381 "sidebar.settings": "设置",
382 "sidebar.unmuteApp" : "开启通知和声音提醒", 382 "sidebar.unmuteApp": "开启通知和声音提醒",
383 "signup.email.label" : "电子邮件", 383 "signup.email.label": "电子邮件",
384 "signup.emailDuplicate" : "此邮箱已被注册", 384 "signup.emailDuplicate": "此邮箱已被注册",
385 "signup.firstname.label" : "名字", 385 "signup.firstname.label": "名字",
386 "signup.headline" : "注册", 386 "signup.headline": "注册",
387 "signup.lastname.label" : "姓氏", 387 "signup.lastname.label": "姓氏",
388 "signup.legal.info" : "新建 Franz 账户时您将同意", 388 "signup.legal.info": "新建 Ferdi 账户时您将同意",
389 "signup.legal.privacy" : "隐私条款", 389 "signup.legal.privacy": "隐私条款",
390 "signup.legal.terms" : "服务条款", 390 "signup.legal.terms": "服务条款",
391 "signup.link.login" : "已有账户?登陆", 391 "signup.link.login": "已有账户?登陆",
392 "signup.password.label" : "密码:", 392 "signup.password.label": "密码:",
393 "signup.submit.label" : "创建账户", 393 "signup.submit.label": "创建账户",
394 "subscription.bestValue" : "Best value", 394 "subscription.bestValue": "Best value",
395 "subscription.cta.activateTrial" : "Yes, start the free Franz Professional trial", 395 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
396 "subscription.cta.allOptions" : "See all options", 396 "subscription.cta.allOptions": "See all options",
397 "subscription.cta.choosePlan" : "Choose your plan", 397 "subscription.cta.choosePlan": "Choose your plan",
398 "subscription.includedProFeatures" : "The Franz Professional Plan includes:", 398 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
399 "subscription.interval.per" : "per {interval}", 399 "subscription.interval.per": "per {interval}",
400 "subscription.interval.perMonth" : "per month", 400 "subscription.interval.perMonth": "per month",
401 "subscription.interval.perMonthPerUser" : "per month & user", 401 "subscription.interval.perMonthPerUser": "per month & user",
402 "subscription.planItem.upgradeAccount" : "升级帐户", 402 "subscription.planItem.upgradeAccount": "升级帐户",
403 "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", 403 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
404 "subscription.teaser.intro" : "Franz 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!", 404 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
405 "subscriptionPopup.buttonCancel" : "取消", 405 "subscriptionPopup.buttonCancel": "取消",
406 "subscriptionPopup.buttonDone" : "完成", 406 "subscriptionPopup.buttonDone": "完成",
407 "tabs.item.deleteService" : "删除服务", 407 "tabs.item.deleteService": "删除服务",
408 "tabs.item.disableAudio" : "禁止声音", 408 "tabs.item.disableAudio": "禁止声音",
409 "tabs.item.disableNotifications" : "停止通知", 409 "tabs.item.disableNotifications": "停止通知",
410 "tabs.item.disableService" : "停用服务", 410 "tabs.item.disableService": "停用服务",
411 "tabs.item.edit" : "编辑", 411 "tabs.item.edit": "编辑",
412 "tabs.item.enableAudio" : "启用声音", 412 "tabs.item.enableAudio": "启用声音",
413 "tabs.item.enableNotification" : "启用通知", 413 "tabs.item.enableNotification": "启用通知",
414 "tabs.item.enableService" : "启用服务", 414 "tabs.item.enableService": "启用服务",
415 "tabs.item.reload" : "重新加载", 415 "tabs.item.reload": "重新加载",
416 "validation.email" : "无效的{field}", 416 "validation.email": "无效的{field}",
417 "validation.minLength" : "{field}至少 {length} 个字符", 417 "validation.minLength": "{field}至少 {length} 个字符",
418 "validation.oneRequired" : "至少需要一个", 418 "validation.oneRequired": "至少需要一个",
419 "validation.required" : "{field}必填", 419 "validation.required": "{field}必填",
420 "validation.url" : "无效的URL:{field} ", 420 "validation.url": "无效的URL:{field} ",
421 "webControls.back" : "Back", 421 "webControls.back": "Back",
422 "webControls.forward" : "Forward", 422 "webControls.forward": "Forward",
423 "webControls.goHome" : "主页", 423 "webControls.goHome": "主页",
424 "webControls.openInBrowser" : "Open in Browser", 424 "webControls.openInBrowser": "Open in Browser",
425 "webControls.reload" : "重新加载", 425 "webControls.reload": "重新加载",
426 "welcome.loginButton" : "登陆您的账户", 426 "welcome.loginButton": "登陆您的账户",
427 "welcome.signupButton" : "创建免费账户", 427 "welcome.signupButton": "创建免费账户",
428 "workspaceDrawer.addNewWorkspaceLabel" : "Add new workspace", 428 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
429 "workspaceDrawer.allServices" : "所有服务", 429 "workspaceDrawer.allServices": "所有服务",
430 "workspaceDrawer.headline" : "工作组", 430 "workspaceDrawer.headline": "工作组",
431 "workspaceDrawer.item.contextMenuEdit" : "edit", 431 "workspaceDrawer.item.contextMenuEdit": "edit",
432 "workspaceDrawer.item.noServicesAddedYet" : "No services added yet", 432 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
433 "workspaceDrawer.premiumCtaButtonLabel" : "Create your first workspace", 433 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
434 "workspaceDrawer.proFeatureBadge" : "Premium feature", 434 "workspaceDrawer.proFeatureBadge": "Premium feature",
435 "workspaceDrawer.reactivatePremiumAccountLabel" : "Reactivate premium account", 435 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
436 "workspaceDrawer.workspaceFeatureInfo" : "<p>Franz Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.<\/p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.<\/p>", 436 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
437 "workspaceDrawer.workspacesSettingsTooltip" : "Edit workspaces settings", 437 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
438 "workspaces.switchingIndicator.switchingTo" : "Switching to" 438 "workspaces.switchingIndicator.switchingTo": "Switching to"
439} 439}
diff --git a/src/i18n/locales/zh-HANT.json b/src/i18n/locales/zh-HANT.json
index 33385ea75..6580c3d7f 100644
--- a/src/i18n/locales/zh-HANT.json
+++ b/src/i18n/locales/zh-HANT.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "無法載入帳戶資訊", 280 "settings.account.userInfoRequestFailed": "無法載入帳戶資訊",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "清除緩存", 283 "settings.app.buttonClearAllCache": "清除緩存",
284 "settings.app.buttonInstallUpdate": "重新啟動並且更新", 284 "settings.app.buttonInstallUpdate": "重新啟動並且更新",
285 "settings.app.buttonSearchForUpdate": "檢查更新", 285 "settings.app.buttonSearchForUpdate": "檢查更新",
diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh.json
index bcbe537c6..70b657a8a 100644
--- a/src/i18n/locales/zh.json
+++ b/src/i18n/locales/zh.json
@@ -279,7 +279,7 @@
279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional", 279 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
280 "settings.account.userInfoRequestFailed": "Could not load user information", 280 "settings.account.userInfoRequestFailed": "Could not load user information",
281 "settings.account.yourLicense": "Your Ferdi License", 281 "settings.account.yourLicense": "Your Ferdi License",
282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)", 282 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
283 "settings.app.buttonClearAllCache": "Clear cache", 283 "settings.app.buttonClearAllCache": "Clear cache",
284 "settings.app.buttonInstallUpdate": "Restart & install update", 284 "settings.app.buttonInstallUpdate": "Restart & install update",
285 "settings.app.buttonSearchForUpdate": "Check for updates", 285 "settings.app.buttonSearchForUpdate": "Check for updates",
diff --git a/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json b/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json
index ccd006117..4b672afc2 100644
--- a/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json
+++ b/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json
@@ -4,11 +4,11 @@
4 "defaultMessage": "!!!Settings", 4 "defaultMessage": "!!!Settings",
5 "file": "src/components/settings/settings/EditSettingsForm.js", 5 "file": "src/components/settings/settings/EditSettingsForm.js",
6 "start": { 6 "start": {
7 "line": 23, 7 "line": 26,
8 "column": 12 8 "column": 12
9 }, 9 },
10 "end": { 10 "end": {
11 "line": 26, 11 "line": 29,
12 "column": 3 12 "column": 3
13 } 13 }
14 }, 14 },
@@ -17,11 +17,11 @@
17 "defaultMessage": "!!!General", 17 "defaultMessage": "!!!General",
18 "file": "src/components/settings/settings/EditSettingsForm.js", 18 "file": "src/components/settings/settings/EditSettingsForm.js",
19 "start": { 19 "start": {
20 "line": 27, 20 "line": 30,
21 "column": 19 21 "column": 19
22 }, 22 },
23 "end": { 23 "end": {
24 "line": 30, 24 "line": 33,
25 "column": 3 25 "column": 3
26 } 26 }
27 }, 27 },
@@ -30,11 +30,11 @@
30 "defaultMessage": "!!!Sending telemetry data allows us to find errors in Ferdi - we will not send any personal information like your message data! Changing this option requires you to restart Ferdi.", 30 "defaultMessage": "!!!Sending telemetry data allows us to find errors in Ferdi - we will not send any personal information like your message data! Changing this option requires you to restart Ferdi.",
31 "file": "src/components/settings/settings/EditSettingsForm.js", 31 "file": "src/components/settings/settings/EditSettingsForm.js",
32 "start": { 32 "start": {
33 "line": 31, 33 "line": 34,
34 "column": 14 34 "column": 14
35 }, 35 },
36 "end": { 36 "end": {
37 "line": 34, 37 "line": 37,
38 "column": 3 38 "column": 3
39 } 39 }
40 }, 40 },
@@ -43,11 +43,11 @@
43 "defaultMessage": "!!!By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.", 43 "defaultMessage": "!!!By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.",
44 "file": "src/components/settings/settings/EditSettingsForm.js", 44 "file": "src/components/settings/settings/EditSettingsForm.js",
45 "start": { 45 "start": {
46 "line": 35, 46 "line": 38,
47 "column": 17 47 "column": 17
48 }, 48 },
49 "end": { 49 "end": {
50 "line": 38, 50 "line": 41,
51 "column": 3 51 "column": 3
52 } 52 }
53 }, 53 },
@@ -56,11 +56,11 @@
56 "defaultMessage": "!!!Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable", 56 "defaultMessage": "!!!Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable",
57 "file": "src/components/settings/settings/EditSettingsForm.js", 57 "file": "src/components/settings/settings/EditSettingsForm.js",
58 "start": { 58 "start": {
59 "line": 39, 59 "line": 42,
60 "column": 22 60 "column": 22
61 }, 61 },
62 "end": { 62 "end": {
63 "line": 42, 63 "line": 45,
64 "column": 3 64 "column": 3
65 } 65 }
66 }, 66 },
@@ -69,11 +69,11 @@
69 "defaultMessage": "!!!This server will be used for the \"Franz Todo\" feature. (default: https://app.franztodos.com)", 69 "defaultMessage": "!!!This server will be used for the \"Franz Todo\" feature. (default: https://app.franztodos.com)",
70 "file": "src/components/settings/settings/EditSettingsForm.js", 70 "file": "src/components/settings/settings/EditSettingsForm.js",
71 "start": { 71 "start": {
72 "line": 43, 72 "line": 46,
73 "column": 18 73 "column": 18
74 }, 74 },
75 "end": { 75 "end": {
76 "line": 46, 76 "line": 49,
77 "column": 3 77 "column": 3
78 } 78 }
79 }, 79 },
@@ -82,11 +82,11 @@
82 "defaultMessage": "!!!Password", 82 "defaultMessage": "!!!Password",
83 "file": "src/components/settings/settings/EditSettingsForm.js", 83 "file": "src/components/settings/settings/EditSettingsForm.js",
84 "start": { 84 "start": {
85 "line": 47, 85 "line": 50,
86 "column": 18 86 "column": 18
87 }, 87 },
88 "end": { 88 "end": {
89 "line": 50, 89 "line": 53,
90 "column": 3 90 "column": 3
91 } 91 }
92 }, 92 },
@@ -95,11 +95,11 @@
95 "defaultMessage": "!!!Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.", 95 "defaultMessage": "!!!Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.",
96 "file": "src/components/settings/settings/EditSettingsForm.js", 96 "file": "src/components/settings/settings/EditSettingsForm.js",
97 "start": { 97 "start": {
98 "line": 51, 98 "line": 54,
99 "column": 22 99 "column": 22
100 }, 100 },
101 "end": { 101 "end": {
102 "line": 54, 102 "line": 57,
103 "column": 3 103 "column": 3
104 } 104 }
105 }, 105 },
@@ -108,11 +108,11 @@
108 "defaultMessage": "!!!Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.", 108 "defaultMessage": "!!!Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.",
109 "file": "src/components/settings/settings/EditSettingsForm.js", 109 "file": "src/components/settings/settings/EditSettingsForm.js",
110 "start": { 110 "start": {
111 "line": 55, 111 "line": 58,
112 "column": 12 112 "column": 12
113 }, 113 },
114 "end": { 114 "end": {
115 "line": 58, 115 "line": 61,
116 "column": 3 116 "column": 3
117 } 117 }
118 }, 118 },
@@ -121,11 +121,11 @@
121 "defaultMessage": "!!!Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.", 121 "defaultMessage": "!!!Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.",
122 "file": "src/components/settings/settings/EditSettingsForm.js", 122 "file": "src/components/settings/settings/EditSettingsForm.js",
123 "start": { 123 "start": {
124 "line": 59, 124 "line": 62,
125 "column": 24 125 "column": 24
126 }, 126 },
127 "end": { 127 "end": {
128 "line": 62, 128 "line": 65,
129 "column": 3 129 "column": 3
130 } 130 }
131 }, 131 },
@@ -134,11 +134,11 @@
134 "defaultMessage": "!!!Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.", 134 "defaultMessage": "!!!Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.",
135 "file": "src/components/settings/settings/EditSettingsForm.js", 135 "file": "src/components/settings/settings/EditSettingsForm.js",
136 "start": { 136 "start": {
137 "line": 63, 137 "line": 66,
138 "column": 20 138 "column": 20
139 }, 139 },
140 "end": { 140 "end": {
141 "line": 66, 141 "line": 69,
142 "column": 3 142 "column": 3
143 } 143 }
144 }, 144 },
@@ -147,11 +147,11 @@
147 "defaultMessage": "!!!Language", 147 "defaultMessage": "!!!Language",
148 "file": "src/components/settings/settings/EditSettingsForm.js", 148 "file": "src/components/settings/settings/EditSettingsForm.js",
149 "start": { 149 "start": {
150 "line": 67, 150 "line": 70,
151 "column": 20 151 "column": 20
152 }, 152 },
153 "end": { 153 "end": {
154 "line": 70, 154 "line": 73,
155 "column": 3 155 "column": 3
156 } 156 }
157 }, 157 },
@@ -160,11 +160,11 @@
160 "defaultMessage": "!!!Updates", 160 "defaultMessage": "!!!Updates",
161 "file": "src/components/settings/settings/EditSettingsForm.js", 161 "file": "src/components/settings/settings/EditSettingsForm.js",
162 "start": { 162 "start": {
163 "line": 71, 163 "line": 74,
164 "column": 19 164 "column": 19
165 }, 165 },
166 "end": { 166 "end": {
167 "line": 74, 167 "line": 77,
168 "column": 3 168 "column": 3
169 } 169 }
170 }, 170 },
@@ -173,11 +173,11 @@
173 "defaultMessage": "!!!Appearance", 173 "defaultMessage": "!!!Appearance",
174 "file": "src/components/settings/settings/EditSettingsForm.js", 174 "file": "src/components/settings/settings/EditSettingsForm.js",
175 "start": { 175 "start": {
176 "line": 75, 176 "line": 78,
177 "column": 22 177 "column": 22
178 }, 178 },
179 "end": { 179 "end": {
180 "line": 78, 180 "line": 81,
181 "column": 3 181 "column": 3
182 } 182 }
183 }, 183 },
@@ -186,24 +186,24 @@
186 "defaultMessage": "!!!Universal Dark Mode tries to dynamically generate dark mode styles for services that are otherwise not currently supported.", 186 "defaultMessage": "!!!Universal Dark Mode tries to dynamically generate dark mode styles for services that are otherwise not currently supported.",
187 "file": "src/components/settings/settings/EditSettingsForm.js", 187 "file": "src/components/settings/settings/EditSettingsForm.js",
188 "start": { 188 "start": {
189 "line": 79, 189 "line": 82,
190 "column": 25 190 "column": 25
191 }, 191 },
192 "end": { 192 "end": {
193 "line": 82, 193 "line": 85,
194 "column": 3 194 "column": 3
195 } 195 }
196 }, 196 },
197 { 197 {
198 "id": "settings.app.accentColorInfo", 198 "id": "settings.app.accentColorInfo",
199 "defaultMessage": "!!!Write your accent color in a CSS-compatible format. (Default: #7367f0)", 199 "defaultMessage": "!!!Write your accent color in a CSS-compatible format. (Default: {defaultAccentColor})",
200 "file": "src/components/settings/settings/EditSettingsForm.js", 200 "file": "src/components/settings/settings/EditSettingsForm.js",
201 "start": { 201 "start": {
202 "line": 83, 202 "line": 86,
203 "column": 19 203 "column": 19
204 }, 204 },
205 "end": { 205 "end": {
206 "line": 86, 206 "line": 89,
207 "column": 3 207 "column": 3
208 } 208 }
209 }, 209 },
@@ -212,11 +212,11 @@
212 "defaultMessage": "!!!Advanced", 212 "defaultMessage": "!!!Advanced",
213 "file": "src/components/settings/settings/EditSettingsForm.js", 213 "file": "src/components/settings/settings/EditSettingsForm.js",
214 "start": { 214 "start": {
215 "line": 87, 215 "line": 90,
216 "column": 20 216 "column": 20
217 }, 217 },
218 "end": { 218 "end": {
219 "line": 90, 219 "line": 93,
220 "column": 3 220 "column": 3
221 } 221 }
222 }, 222 },
@@ -225,11 +225,11 @@
225 "defaultMessage": "!!!Help us to translate Ferdi into your language.", 225 "defaultMessage": "!!!Help us to translate Ferdi into your language.",
226 "file": "src/components/settings/settings/EditSettingsForm.js", 226 "file": "src/components/settings/settings/EditSettingsForm.js",
227 "start": { 227 "start": {
228 "line": 91, 228 "line": 94,
229 "column": 19 229 "column": 19
230 }, 230 },
231 "end": { 231 "end": {
232 "line": 94, 232 "line": 97,
233 "column": 3 233 "column": 3
234 } 234 }
235 }, 235 },
@@ -238,11 +238,11 @@
238 "defaultMessage": "!!!Ferdi uses your Mac's build-in spellchecker to check for typos. If you want to change the languages the spellchecker checks for, you can do so in your Mac's System Preferences.", 238 "defaultMessage": "!!!Ferdi uses your Mac's build-in spellchecker to check for typos. If you want to change the languages the spellchecker checks for, you can do so in your Mac's System Preferences.",
239 "file": "src/components/settings/settings/EditSettingsForm.js", 239 "file": "src/components/settings/settings/EditSettingsForm.js",
240 "start": { 240 "start": {
241 "line": 95, 241 "line": 98,
242 "column": 28 242 "column": 28
243 }, 243 },
244 "end": { 244 "end": {
245 "line": 98, 245 "line": 101,
246 "column": 3 246 "column": 3
247 } 247 }
248 }, 248 },
@@ -251,11 +251,11 @@
251 "defaultMessage": "!!!Cache", 251 "defaultMessage": "!!!Cache",
252 "file": "src/components/settings/settings/EditSettingsForm.js", 252 "file": "src/components/settings/settings/EditSettingsForm.js",
253 "start": { 253 "start": {
254 "line": 99, 254 "line": 102,
255 "column": 20 255 "column": 20
256 }, 256 },
257 "end": { 257 "end": {
258 "line": 102, 258 "line": 105,
259 "column": 3 259 "column": 3
260 } 260 }
261 }, 261 },
@@ -264,11 +264,11 @@
264 "defaultMessage": "!!!Ferdi cache is currently using {size} of disk space.", 264 "defaultMessage": "!!!Ferdi cache is currently using {size} of disk space.",
265 "file": "src/components/settings/settings/EditSettingsForm.js", 265 "file": "src/components/settings/settings/EditSettingsForm.js",
266 "start": { 266 "start": {
267 "line": 103, 267 "line": 106,
268 "column": 13 268 "column": 13
269 }, 269 },
270 "end": { 270 "end": {
271 "line": 106, 271 "line": 109,
272 "column": 3 272 "column": 3
273 } 273 }
274 }, 274 },
@@ -277,11 +277,11 @@
277 "defaultMessage": "!!!Couldn't clear all cache", 277 "defaultMessage": "!!!Couldn't clear all cache",
278 "file": "src/components/settings/settings/EditSettingsForm.js", 278 "file": "src/components/settings/settings/EditSettingsForm.js",
279 "start": { 279 "start": {
280 "line": 107, 280 "line": 110,
281 "column": 19 281 "column": 19
282 }, 282 },
283 "end": { 283 "end": {
284 "line": 110, 284 "line": 113,
285 "column": 3 285 "column": 3
286 } 286 }
287 }, 287 },
@@ -290,11 +290,11 @@
290 "defaultMessage": "!!!Clear cache", 290 "defaultMessage": "!!!Clear cache",
291 "file": "src/components/settings/settings/EditSettingsForm.js", 291 "file": "src/components/settings/settings/EditSettingsForm.js",
292 "start": { 292 "start": {
293 "line": 111, 293 "line": 114,
294 "column": 23 294 "column": 23
295 }, 295 },
296 "end": { 296 "end": {
297 "line": 114, 297 "line": 117,
298 "column": 3 298 "column": 3
299 } 299 }
300 }, 300 },
@@ -303,11 +303,11 @@
303 "defaultMessage": "!!!Check for updates", 303 "defaultMessage": "!!!Check for updates",
304 "file": "src/components/settings/settings/EditSettingsForm.js", 304 "file": "src/components/settings/settings/EditSettingsForm.js",
305 "start": { 305 "start": {
306 "line": 115, 306 "line": 118,
307 "column": 25 307 "column": 25
308 }, 308 },
309 "end": { 309 "end": {
310 "line": 118, 310 "line": 121,
311 "column": 3 311 "column": 3
312 } 312 }
313 }, 313 },
@@ -316,11 +316,11 @@
316 "defaultMessage": "!!!Restart & install update", 316 "defaultMessage": "!!!Restart & install update",
317 "file": "src/components/settings/settings/EditSettingsForm.js", 317 "file": "src/components/settings/settings/EditSettingsForm.js",
318 "start": { 318 "start": {
319 "line": 119, 319 "line": 122,
320 "column": 23 320 "column": 23
321 }, 321 },
322 "end": { 322 "end": {
323 "line": 122, 323 "line": 125,
324 "column": 3 324 "column": 3
325 } 325 }
326 }, 326 },
@@ -329,11 +329,11 @@
329 "defaultMessage": "!!!Is searching for update", 329 "defaultMessage": "!!!Is searching for update",
330 "file": "src/components/settings/settings/EditSettingsForm.js", 330 "file": "src/components/settings/settings/EditSettingsForm.js",
331 "start": { 331 "start": {
332 "line": 123, 332 "line": 126,
333 "column": 25 333 "column": 25
334 }, 334 },
335 "end": { 335 "end": {
336 "line": 126, 336 "line": 129,
337 "column": 3 337 "column": 3
338 } 338 }
339 }, 339 },
@@ -342,11 +342,11 @@
342 "defaultMessage": "!!!Update available, downloading...", 342 "defaultMessage": "!!!Update available, downloading...",
343 "file": "src/components/settings/settings/EditSettingsForm.js", 343 "file": "src/components/settings/settings/EditSettingsForm.js",
344 "start": { 344 "start": {
345 "line": 127, 345 "line": 130,
346 "column": 25 346 "column": 25
347 }, 347 },
348 "end": { 348 "end": {
349 "line": 130, 349 "line": 133,
350 "column": 3 350 "column": 3
351 } 351 }
352 }, 352 },
@@ -355,11 +355,11 @@
355 "defaultMessage": "!!!You are using the latest version of Ferdi", 355 "defaultMessage": "!!!You are using the latest version of Ferdi",
356 "file": "src/components/settings/settings/EditSettingsForm.js", 356 "file": "src/components/settings/settings/EditSettingsForm.js",
357 "start": { 357 "start": {
358 "line": 131, 358 "line": 134,
359 "column": 24 359 "column": 24
360 }, 360 },
361 "end": { 361 "end": {
362 "line": 134, 362 "line": 137,
363 "column": 3 363 "column": 3
364 } 364 }
365 }, 365 },
@@ -368,11 +368,11 @@
368 "defaultMessage": "!!!Current version:", 368 "defaultMessage": "!!!Current version:",
369 "file": "src/components/settings/settings/EditSettingsForm.js", 369 "file": "src/components/settings/settings/EditSettingsForm.js",
370 "start": { 370 "start": {
371 "line": 135, 371 "line": 138,
372 "column": 18 372 "column": 18
373 }, 373 },
374 "end": { 374 "end": {
375 "line": 138, 375 "line": 141,
376 "column": 3 376 "column": 3
377 } 377 }
378 }, 378 },
@@ -381,11 +381,11 @@
381 "defaultMessage": "!!!Changes require restart", 381 "defaultMessage": "!!!Changes require restart",
382 "file": "src/components/settings/settings/EditSettingsForm.js", 382 "file": "src/components/settings/settings/EditSettingsForm.js",
383 "start": { 383 "start": {
384 "line": 139, 384 "line": 142,
385 "column": 29 385 "column": 29
386 }, 386 },
387 "end": { 387 "end": {
388 "line": 142, 388 "line": 145,
389 "column": 3 389 "column": 3
390 } 390 }
391 }, 391 },
@@ -394,11 +394,11 @@
394 "defaultMessage": "!!!Official translations are English & German. All other languages are community based translations.", 394 "defaultMessage": "!!!Official translations are English & German. All other languages are community based translations.",
395 "file": "src/components/settings/settings/EditSettingsForm.js", 395 "file": "src/components/settings/settings/EditSettingsForm.js",
396 "start": { 396 "start": {
397 "line": 143, 397 "line": 146,
398 "column": 22 398 "column": 22
399 }, 399 },
400 "end": { 400 "end": {
401 "line": 146, 401 "line": 149,
402 "column": 3 402 "column": 3
403 } 403 }
404 } 404 }
diff --git a/src/i18n/messages/src/lib/Menu.json b/src/i18n/messages/src/lib/Menu.json
index 5b185c4e7..1c5c93261 100644
--- a/src/i18n/messages/src/lib/Menu.json
+++ b/src/i18n/messages/src/lib/Menu.json
@@ -4,11 +4,11 @@
4 "defaultMessage": "!!!Edit", 4 "defaultMessage": "!!!Edit",
5 "file": "src/lib/Menu.js", 5 "file": "src/lib/Menu.js",
6 "start": { 6 "start": {
7 "line": 19, 7 "line": 22,
8 "column": 8 8 "column": 8
9 }, 9 },
10 "end": { 10 "end": {
11 "line": 22, 11 "line": 25,
12 "column": 3 12 "column": 3
13 } 13 }
14 }, 14 },
@@ -17,11 +17,11 @@
17 "defaultMessage": "!!!Undo", 17 "defaultMessage": "!!!Undo",
18 "file": "src/lib/Menu.js", 18 "file": "src/lib/Menu.js",
19 "start": { 19 "start": {
20 "line": 23, 20 "line": 26,
21 "column": 8 21 "column": 8
22 }, 22 },
23 "end": { 23 "end": {
24 "line": 26, 24 "line": 29,
25 "column": 3 25 "column": 3
26 } 26 }
27 }, 27 },
@@ -30,11 +30,11 @@
30 "defaultMessage": "!!!Redo", 30 "defaultMessage": "!!!Redo",
31 "file": "src/lib/Menu.js", 31 "file": "src/lib/Menu.js",
32 "start": { 32 "start": {
33 "line": 27, 33 "line": 30,
34 "column": 8 34 "column": 8
35 }, 35 },
36 "end": { 36 "end": {
37 "line": 30, 37 "line": 33,
38 "column": 3 38 "column": 3
39 } 39 }
40 }, 40 },
@@ -43,11 +43,11 @@
43 "defaultMessage": "!!!Cut", 43 "defaultMessage": "!!!Cut",
44 "file": "src/lib/Menu.js", 44 "file": "src/lib/Menu.js",
45 "start": { 45 "start": {
46 "line": 31, 46 "line": 34,
47 "column": 7 47 "column": 7
48 }, 48 },
49 "end": { 49 "end": {
50 "line": 34, 50 "line": 37,
51 "column": 3 51 "column": 3
52 } 52 }
53 }, 53 },
@@ -56,11 +56,11 @@
56 "defaultMessage": "!!!Copy", 56 "defaultMessage": "!!!Copy",
57 "file": "src/lib/Menu.js", 57 "file": "src/lib/Menu.js",
58 "start": { 58 "start": {
59 "line": 35, 59 "line": 38,
60 "column": 8 60 "column": 8
61 }, 61 },
62 "end": { 62 "end": {
63 "line": 38, 63 "line": 41,
64 "column": 3 64 "column": 3
65 } 65 }
66 }, 66 },
@@ -69,11 +69,11 @@
69 "defaultMessage": "!!!Paste", 69 "defaultMessage": "!!!Paste",
70 "file": "src/lib/Menu.js", 70 "file": "src/lib/Menu.js",
71 "start": { 71 "start": {
72 "line": 39, 72 "line": 42,
73 "column": 9 73 "column": 9
74 }, 74 },
75 "end": { 75 "end": {
76 "line": 42, 76 "line": 45,
77 "column": 3 77 "column": 3
78 } 78 }
79 }, 79 },
@@ -82,11 +82,11 @@
82 "defaultMessage": "!!!Paste And Match Style", 82 "defaultMessage": "!!!Paste And Match Style",
83 "file": "src/lib/Menu.js", 83 "file": "src/lib/Menu.js",
84 "start": { 84 "start": {
85 "line": 43, 85 "line": 46,
86 "column": 22 86 "column": 22
87 }, 87 },
88 "end": { 88 "end": {
89 "line": 46, 89 "line": 49,
90 "column": 3 90 "column": 3
91 } 91 }
92 }, 92 },
@@ -95,11 +95,11 @@
95 "defaultMessage": "!!!Delete", 95 "defaultMessage": "!!!Delete",
96 "file": "src/lib/Menu.js", 96 "file": "src/lib/Menu.js",
97 "start": { 97 "start": {
98 "line": 47, 98 "line": 50,
99 "column": 10 99 "column": 10
100 }, 100 },
101 "end": { 101 "end": {
102 "line": 50, 102 "line": 53,
103 "column": 3 103 "column": 3
104 } 104 }
105 }, 105 },
@@ -108,11 +108,11 @@
108 "defaultMessage": "!!!Select All", 108 "defaultMessage": "!!!Select All",
109 "file": "src/lib/Menu.js", 109 "file": "src/lib/Menu.js",
110 "start": { 110 "start": {
111 "line": 51, 111 "line": 54,
112 "column": 13 112 "column": 13
113 }, 113 },
114 "end": { 114 "end": {
115 "line": 54, 115 "line": 57,
116 "column": 3 116 "column": 3
117 } 117 }
118 }, 118 },
@@ -121,11 +121,11 @@
121 "defaultMessage": "!!!Find in Page", 121 "defaultMessage": "!!!Find in Page",
122 "file": "src/lib/Menu.js", 122 "file": "src/lib/Menu.js",
123 "start": { 123 "start": {
124 "line": 55, 124 "line": 58,
125 "column": 14 125 "column": 14
126 }, 126 },
127 "end": { 127 "end": {
128 "line": 58, 128 "line": 61,
129 "column": 3 129 "column": 3
130 } 130 }
131 }, 131 },
@@ -134,11 +134,11 @@
134 "defaultMessage": "!!!Speech", 134 "defaultMessage": "!!!Speech",
135 "file": "src/lib/Menu.js", 135 "file": "src/lib/Menu.js",
136 "start": { 136 "start": {
137 "line": 59, 137 "line": 62,
138 "column": 10 138 "column": 10
139 }, 139 },
140 "end": { 140 "end": {
141 "line": 62, 141 "line": 65,
142 "column": 3 142 "column": 3
143 } 143 }
144 }, 144 },
@@ -147,11 +147,11 @@
147 "defaultMessage": "!!!Start Speaking", 147 "defaultMessage": "!!!Start Speaking",
148 "file": "src/lib/Menu.js", 148 "file": "src/lib/Menu.js",
149 "start": { 149 "start": {
150 "line": 63, 150 "line": 66,
151 "column": 17 151 "column": 17
152 }, 152 },
153 "end": { 153 "end": {
154 "line": 66, 154 "line": 69,
155 "column": 3 155 "column": 3
156 } 156 }
157 }, 157 },
@@ -160,11 +160,11 @@
160 "defaultMessage": "!!!Stop Speaking", 160 "defaultMessage": "!!!Stop Speaking",
161 "file": "src/lib/Menu.js", 161 "file": "src/lib/Menu.js",
162 "start": { 162 "start": {
163 "line": 67, 163 "line": 70,
164 "column": 16 164 "column": 16
165 }, 165 },
166 "end": { 166 "end": {
167 "line": 70, 167 "line": 73,
168 "column": 3 168 "column": 3
169 } 169 }
170 }, 170 },
@@ -173,11 +173,11 @@
173 "defaultMessage": "!!!Start Dictation", 173 "defaultMessage": "!!!Start Dictation",
174 "file": "src/lib/Menu.js", 174 "file": "src/lib/Menu.js",
175 "start": { 175 "start": {
176 "line": 71, 176 "line": 74,
177 "column": 18 177 "column": 18
178 }, 178 },
179 "end": { 179 "end": {
180 "line": 74, 180 "line": 77,
181 "column": 3 181 "column": 3
182 } 182 }
183 }, 183 },
@@ -186,11 +186,11 @@
186 "defaultMessage": "!!!Emoji & Symbols", 186 "defaultMessage": "!!!Emoji & Symbols",
187 "file": "src/lib/Menu.js", 187 "file": "src/lib/Menu.js",
188 "start": { 188 "start": {
189 "line": 75, 189 "line": 78,
190 "column": 16 190 "column": 16
191 }, 191 },
192 "end": { 192 "end": {
193 "line": 78, 193 "line": 81,
194 "column": 3 194 "column": 3
195 } 195 }
196 }, 196 },
@@ -199,11 +199,11 @@
199 "defaultMessage": "!!!Open Quick Switch", 199 "defaultMessage": "!!!Open Quick Switch",
200 "file": "src/lib/Menu.js", 200 "file": "src/lib/Menu.js",
201 "start": { 201 "start": {
202 "line": 79, 202 "line": 82,
203 "column": 19 203 "column": 19
204 }, 204 },
205 "end": { 205 "end": {
206 "line": 82, 206 "line": 85,
207 "column": 3 207 "column": 3
208 } 208 }
209 }, 209 },
@@ -212,11 +212,11 @@
212 "defaultMessage": "!!!Back", 212 "defaultMessage": "!!!Back",
213 "file": "src/lib/Menu.js", 213 "file": "src/lib/Menu.js",
214 "start": { 214 "start": {
215 "line": 83, 215 "line": 86,
216 "column": 8 216 "column": 8
217 }, 217 },
218 "end": { 218 "end": {
219 "line": 86, 219 "line": 89,
220 "column": 3 220 "column": 3
221 } 221 }
222 }, 222 },
@@ -225,11 +225,11 @@
225 "defaultMessage": "!!!Forward", 225 "defaultMessage": "!!!Forward",
226 "file": "src/lib/Menu.js", 226 "file": "src/lib/Menu.js",
227 "start": { 227 "start": {
228 "line": 87, 228 "line": 90,
229 "column": 11 229 "column": 11
230 }, 230 },
231 "end": { 231 "end": {
232 "line": 90, 232 "line": 93,
233 "column": 3 233 "column": 3
234 } 234 }
235 }, 235 },
@@ -238,11 +238,11 @@
238 "defaultMessage": "!!!Actual Size", 238 "defaultMessage": "!!!Actual Size",
239 "file": "src/lib/Menu.js", 239 "file": "src/lib/Menu.js",
240 "start": { 240 "start": {
241 "line": 91, 241 "line": 94,
242 "column": 13 242 "column": 13
243 }, 243 },
244 "end": { 244 "end": {
245 "line": 94, 245 "line": 97,
246 "column": 3 246 "column": 3
247 } 247 }
248 }, 248 },
@@ -251,11 +251,11 @@
251 "defaultMessage": "!!!Zoom In", 251 "defaultMessage": "!!!Zoom In",
252 "file": "src/lib/Menu.js", 252 "file": "src/lib/Menu.js",
253 "start": { 253 "start": {
254 "line": 95, 254 "line": 98,
255 "column": 10 255 "column": 10
256 }, 256 },
257 "end": { 257 "end": {
258 "line": 98, 258 "line": 101,
259 "column": 3 259 "column": 3
260 } 260 }
261 }, 261 },
@@ -264,11 +264,11 @@
264 "defaultMessage": "!!!Zoom Out", 264 "defaultMessage": "!!!Zoom Out",
265 "file": "src/lib/Menu.js", 265 "file": "src/lib/Menu.js",
266 "start": { 266 "start": {
267 "line": 99, 267 "line": 102,
268 "column": 11 268 "column": 11
269 }, 269 },
270 "end": { 270 "end": {
271 "line": 102, 271 "line": 105,
272 "column": 3 272 "column": 3
273 } 273 }
274 }, 274 },
@@ -277,11 +277,11 @@
277 "defaultMessage": "!!!Enter Full Screen", 277 "defaultMessage": "!!!Enter Full Screen",
278 "file": "src/lib/Menu.js", 278 "file": "src/lib/Menu.js",
279 "start": { 279 "start": {
280 "line": 103, 280 "line": 106,
281 "column": 19 281 "column": 19
282 }, 282 },
283 "end": { 283 "end": {
284 "line": 106, 284 "line": 109,
285 "column": 3 285 "column": 3
286 } 286 }
287 }, 287 },
@@ -290,11 +290,11 @@
290 "defaultMessage": "!!!Exit Full Screen", 290 "defaultMessage": "!!!Exit Full Screen",
291 "file": "src/lib/Menu.js", 291 "file": "src/lib/Menu.js",
292 "start": { 292 "start": {
293 "line": 107, 293 "line": 110,
294 "column": 18 294 "column": 18
295 }, 295 },
296 "end": { 296 "end": {
297 "line": 110, 297 "line": 113,
298 "column": 3 298 "column": 3
299 } 299 }
300 }, 300 },
@@ -303,11 +303,11 @@
303 "defaultMessage": "!!!Toggle Full Screen", 303 "defaultMessage": "!!!Toggle Full Screen",
304 "file": "src/lib/Menu.js", 304 "file": "src/lib/Menu.js",
305 "start": { 305 "start": {
306 "line": 111, 306 "line": 114,
307 "column": 20 307 "column": 20
308 }, 308 },
309 "end": { 309 "end": {
310 "line": 114, 310 "line": 117,
311 "column": 3 311 "column": 3
312 } 312 }
313 }, 313 },
@@ -316,11 +316,11 @@
316 "defaultMessage": "!!!Toggle Dark Mode", 316 "defaultMessage": "!!!Toggle Dark Mode",
317 "file": "src/lib/Menu.js", 317 "file": "src/lib/Menu.js",
318 "start": { 318 "start": {
319 "line": 115, 319 "line": 118,
320 "column": 18 320 "column": 18
321 }, 321 },
322 "end": { 322 "end": {
323 "line": 118, 323 "line": 121,
324 "column": 3 324 "column": 3
325 } 325 }
326 }, 326 },
@@ -329,11 +329,11 @@
329 "defaultMessage": "!!!Toggle Developer Tools", 329 "defaultMessage": "!!!Toggle Developer Tools",
330 "file": "src/lib/Menu.js", 330 "file": "src/lib/Menu.js",
331 "start": { 331 "start": {
332 "line": 119, 332 "line": 122,
333 "column": 18 333 "column": 18
334 }, 334 },
335 "end": { 335 "end": {
336 "line": 122, 336 "line": 125,
337 "column": 3 337 "column": 3
338 } 338 }
339 }, 339 },
@@ -342,11 +342,11 @@
342 "defaultMessage": "!!!Toggle Todos Developer Tools", 342 "defaultMessage": "!!!Toggle Todos Developer Tools",
343 "file": "src/lib/Menu.js", 343 "file": "src/lib/Menu.js",
344 "start": { 344 "start": {
345 "line": 123, 345 "line": 126,
346 "column": 23 346 "column": 23
347 }, 347 },
348 "end": { 348 "end": {
349 "line": 126, 349 "line": 129,
350 "column": 3 350 "column": 3
351 } 351 }
352 }, 352 },
@@ -355,11 +355,11 @@
355 "defaultMessage": "!!!Toggle Service Developer Tools", 355 "defaultMessage": "!!!Toggle Service Developer Tools",
356 "file": "src/lib/Menu.js", 356 "file": "src/lib/Menu.js",
357 "start": { 357 "start": {
358 "line": 127, 358 "line": 130,
359 "column": 25 359 "column": 25
360 }, 360 },
361 "end": { 361 "end": {
362 "line": 130, 362 "line": 133,
363 "column": 3 363 "column": 3
364 } 364 }
365 }, 365 },
@@ -368,11 +368,11 @@
368 "defaultMessage": "!!!Reload Service", 368 "defaultMessage": "!!!Reload Service",
369 "file": "src/lib/Menu.js", 369 "file": "src/lib/Menu.js",
370 "start": { 370 "start": {
371 "line": 131, 371 "line": 134,
372 "column": 17 372 "column": 17
373 }, 373 },
374 "end": { 374 "end": {
375 "line": 134, 375 "line": 137,
376 "column": 3 376 "column": 3
377 } 377 }
378 }, 378 },
@@ -381,11 +381,11 @@
381 "defaultMessage": "!!!Reload Ferdi", 381 "defaultMessage": "!!!Reload Ferdi",
382 "file": "src/lib/Menu.js", 382 "file": "src/lib/Menu.js",
383 "start": { 383 "start": {
384 "line": 135, 384 "line": 138,
385 "column": 15 385 "column": 15
386 }, 386 },
387 "end": { 387 "end": {
388 "line": 138, 388 "line": 141,
389 "column": 3 389 "column": 3
390 } 390 }
391 }, 391 },
@@ -394,11 +394,11 @@
394 "defaultMessage": "!!!Lock Ferdi", 394 "defaultMessage": "!!!Lock Ferdi",
395 "file": "src/lib/Menu.js", 395 "file": "src/lib/Menu.js",
396 "start": { 396 "start": {
397 "line": 139, 397 "line": 142,
398 "column": 13 398 "column": 13
399 }, 399 },
400 "end": { 400 "end": {
401 "line": 142, 401 "line": 145,
402 "column": 3 402 "column": 3
403 } 403 }
404 }, 404 },
@@ -407,11 +407,11 @@
407 "defaultMessage": "!!!Reload ToDos", 407 "defaultMessage": "!!!Reload ToDos",
408 "file": "src/lib/Menu.js", 408 "file": "src/lib/Menu.js",
409 "start": { 409 "start": {
410 "line": 143, 410 "line": 146,
411 "column": 15 411 "column": 15
412 }, 412 },
413 "end": { 413 "end": {
414 "line": 146, 414 "line": 149,
415 "column": 3 415 "column": 3
416 } 416 }
417 }, 417 },
@@ -420,11 +420,11 @@
420 "defaultMessage": "!!!Minimize", 420 "defaultMessage": "!!!Minimize",
421 "file": "src/lib/Menu.js", 421 "file": "src/lib/Menu.js",
422 "start": { 422 "start": {
423 "line": 147, 423 "line": 150,
424 "column": 12 424 "column": 12
425 }, 425 },
426 "end": { 426 "end": {
427 "line": 150, 427 "line": 153,
428 "column": 3 428 "column": 3
429 } 429 }
430 }, 430 },
@@ -433,11 +433,11 @@
433 "defaultMessage": "!!!Close", 433 "defaultMessage": "!!!Close",
434 "file": "src/lib/Menu.js", 434 "file": "src/lib/Menu.js",
435 "start": { 435 "start": {
436 "line": 151, 436 "line": 154,
437 "column": 9 437 "column": 9
438 }, 438 },
439 "end": { 439 "end": {
440 "line": 154, 440 "line": 157,
441 "column": 3 441 "column": 3
442 } 442 }
443 }, 443 },
@@ -446,11 +446,11 @@
446 "defaultMessage": "!!!Learn More", 446 "defaultMessage": "!!!Learn More",
447 "file": "src/lib/Menu.js", 447 "file": "src/lib/Menu.js",
448 "start": { 448 "start": {
449 "line": 155, 449 "line": 158,
450 "column": 13 450 "column": 13
451 }, 451 },
452 "end": { 452 "end": {
453 "line": 158, 453 "line": 161,
454 "column": 3 454 "column": 3
455 } 455 }
456 }, 456 },
@@ -459,11 +459,11 @@
459 "defaultMessage": "!!!Changelog", 459 "defaultMessage": "!!!Changelog",
460 "file": "src/lib/Menu.js", 460 "file": "src/lib/Menu.js",
461 "start": { 461 "start": {
462 "line": 159, 462 "line": 162,
463 "column": 13 463 "column": 13
464 }, 464 },
465 "end": { 465 "end": {
466 "line": 162, 466 "line": 165,
467 "column": 3 467 "column": 3
468 } 468 }
469 }, 469 },
@@ -472,11 +472,11 @@
472 "defaultMessage": "!!!Support", 472 "defaultMessage": "!!!Support",
473 "file": "src/lib/Menu.js", 473 "file": "src/lib/Menu.js",
474 "start": { 474 "start": {
475 "line": 163, 475 "line": 166,
476 "column": 11 476 "column": 11
477 }, 477 },
478 "end": { 478 "end": {
479 "line": 166, 479 "line": 169,
480 "column": 3 480 "column": 3
481 } 481 }
482 }, 482 },
@@ -485,11 +485,11 @@
485 "defaultMessage": "!!!Copy Debug Information", 485 "defaultMessage": "!!!Copy Debug Information",
486 "file": "src/lib/Menu.js", 486 "file": "src/lib/Menu.js",
487 "start": { 487 "start": {
488 "line": 167, 488 "line": 170,
489 "column": 13 489 "column": 13
490 }, 490 },
491 "end": { 491 "end": {
492 "line": 170, 492 "line": 173,
493 "column": 3 493 "column": 3
494 } 494 }
495 }, 495 },
@@ -498,11 +498,11 @@
498 "defaultMessage": "!!!Publish Debug Information", 498 "defaultMessage": "!!!Publish Debug Information",
499 "file": "src/lib/Menu.js", 499 "file": "src/lib/Menu.js",
500 "start": { 500 "start": {
501 "line": 171, 501 "line": 174,
502 "column": 20 502 "column": 20
503 }, 503 },
504 "end": { 504 "end": {
505 "line": 174, 505 "line": 177,
506 "column": 3 506 "column": 3
507 } 507 }
508 }, 508 },
@@ -511,11 +511,11 @@
511 "defaultMessage": "!!!Ferdi Debug Information", 511 "defaultMessage": "!!!Ferdi Debug Information",
512 "file": "src/lib/Menu.js", 512 "file": "src/lib/Menu.js",
513 "start": { 513 "start": {
514 "line": 175, 514 "line": 178,
515 "column": 27 515 "column": 27
516 }, 516 },
517 "end": { 517 "end": {
518 "line": 178, 518 "line": 181,
519 "column": 3 519 "column": 3
520 } 520 }
521 }, 521 },
@@ -524,11 +524,11 @@
524 "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.", 524 "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.",
525 "file": "src/lib/Menu.js", 525 "file": "src/lib/Menu.js",
526 "start": { 526 "start": {
527 "line": 179, 527 "line": 182,
528 "column": 23 528 "column": 23
529 }, 529 },
530 "end": { 530 "end": {
531 "line": 182, 531 "line": 185,
532 "column": 3 532 "column": 3
533 } 533 }
534 }, 534 },
@@ -537,11 +537,11 @@
537 "defaultMessage": "!!!Unlock with Touch ID", 537 "defaultMessage": "!!!Unlock with Touch ID",
538 "file": "src/lib/Menu.js", 538 "file": "src/lib/Menu.js",
539 "start": { 539 "start": {
540 "line": 183, 540 "line": 186,
541 "column": 11 541 "column": 11
542 }, 542 },
543 "end": { 543 "end": {
544 "line": 186, 544 "line": 189,
545 "column": 3 545 "column": 3
546 } 546 }
547 }, 547 },
@@ -550,11 +550,11 @@
550 "defaultMessage": "!!!unlock via Touch ID", 550 "defaultMessage": "!!!unlock via Touch ID",
551 "file": "src/lib/Menu.js", 551 "file": "src/lib/Menu.js",
552 "start": { 552 "start": {
553 "line": 187, 553 "line": 190,
554 "column": 17 554 "column": 17
555 }, 555 },
556 "end": { 556 "end": {
557 "line": 190, 557 "line": 193,
558 "column": 3 558 "column": 3
559 } 559 }
560 }, 560 },
@@ -563,11 +563,11 @@
563 "defaultMessage": "!!!Terms of Service", 563 "defaultMessage": "!!!Terms of Service",
564 "file": "src/lib/Menu.js", 564 "file": "src/lib/Menu.js",
565 "start": { 565 "start": {
566 "line": 191, 566 "line": 194,
567 "column": 7 567 "column": 7
568 }, 568 },
569 "end": { 569 "end": {
570 "line": 194, 570 "line": 197,
571 "column": 3 571 "column": 3
572 } 572 }
573 }, 573 },
@@ -576,11 +576,11 @@
576 "defaultMessage": "!!!Privacy Statement", 576 "defaultMessage": "!!!Privacy Statement",
577 "file": "src/lib/Menu.js", 577 "file": "src/lib/Menu.js",
578 "start": { 578 "start": {
579 "line": 195, 579 "line": 198,
580 "column": 11 580 "column": 11
581 }, 581 },
582 "end": { 582 "end": {
583 "line": 198, 583 "line": 201,
584 "column": 3 584 "column": 3
585 } 585 }
586 }, 586 },
@@ -589,11 +589,11 @@
589 "defaultMessage": "!!!File", 589 "defaultMessage": "!!!File",
590 "file": "src/lib/Menu.js", 590 "file": "src/lib/Menu.js",
591 "start": { 591 "start": {
592 "line": 199, 592 "line": 202,
593 "column": 8 593 "column": 8
594 }, 594 },
595 "end": { 595 "end": {
596 "line": 202, 596 "line": 205,
597 "column": 3 597 "column": 3
598 } 598 }
599 }, 599 },
@@ -602,11 +602,11 @@
602 "defaultMessage": "!!!View", 602 "defaultMessage": "!!!View",
603 "file": "src/lib/Menu.js", 603 "file": "src/lib/Menu.js",
604 "start": { 604 "start": {
605 "line": 203, 605 "line": 206,
606 "column": 8 606 "column": 8
607 }, 607 },
608 "end": { 608 "end": {
609 "line": 206, 609 "line": 209,
610 "column": 3 610 "column": 3
611 } 611 }
612 }, 612 },
@@ -615,11 +615,11 @@
615 "defaultMessage": "!!!Services", 615 "defaultMessage": "!!!Services",
616 "file": "src/lib/Menu.js", 616 "file": "src/lib/Menu.js",
617 "start": { 617 "start": {
618 "line": 207, 618 "line": 210,
619 "column": 12 619 "column": 12
620 }, 620 },
621 "end": { 621 "end": {
622 "line": 210, 622 "line": 213,
623 "column": 3 623 "column": 3
624 } 624 }
625 }, 625 },
@@ -628,11 +628,11 @@
628 "defaultMessage": "!!!Window", 628 "defaultMessage": "!!!Window",
629 "file": "src/lib/Menu.js", 629 "file": "src/lib/Menu.js",
630 "start": { 630 "start": {
631 "line": 211, 631 "line": 214,
632 "column": 10 632 "column": 10
633 }, 633 },
634 "end": { 634 "end": {
635 "line": 214, 635 "line": 217,
636 "column": 3 636 "column": 3
637 } 637 }
638 }, 638 },
@@ -641,11 +641,11 @@
641 "defaultMessage": "!!!Help", 641 "defaultMessage": "!!!Help",
642 "file": "src/lib/Menu.js", 642 "file": "src/lib/Menu.js",
643 "start": { 643 "start": {
644 "line": 215, 644 "line": 218,
645 "column": 8 645 "column": 8
646 }, 646 },
647 "end": { 647 "end": {
648 "line": 218, 648 "line": 221,
649 "column": 3 649 "column": 3
650 } 650 }
651 }, 651 },
@@ -654,11 +654,11 @@
654 "defaultMessage": "!!!About Ferdi", 654 "defaultMessage": "!!!About Ferdi",
655 "file": "src/lib/Menu.js", 655 "file": "src/lib/Menu.js",
656 "start": { 656 "start": {
657 "line": 219, 657 "line": 222,
658 "column": 9 658 "column": 9
659 }, 659 },
660 "end": { 660 "end": {
661 "line": 222, 661 "line": 225,
662 "column": 3 662 "column": 3
663 } 663 }
664 }, 664 },
@@ -667,11 +667,11 @@
667 "defaultMessage": "!!!What's new?", 667 "defaultMessage": "!!!What's new?",
668 "file": "src/lib/Menu.js", 668 "file": "src/lib/Menu.js",
669 "start": { 669 "start": {
670 "line": 223, 670 "line": 226,
671 "column": 16 671 "column": 16
672 }, 672 },
673 "end": { 673 "end": {
674 "line": 226, 674 "line": 229,
675 "column": 3 675 "column": 3
676 } 676 }
677 }, 677 },
@@ -680,11 +680,11 @@
680 "defaultMessage": "!!!Settings", 680 "defaultMessage": "!!!Settings",
681 "file": "src/lib/Menu.js", 681 "file": "src/lib/Menu.js",
682 "start": { 682 "start": {
683 "line": 227, 683 "line": 230,
684 "column": 12 684 "column": 12
685 }, 685 },
686 "end": { 686 "end": {
687 "line": 230, 687 "line": 233,
688 "column": 3 688 "column": 3
689 } 689 }
690 }, 690 },
@@ -693,11 +693,11 @@
693 "defaultMessage": "!!!Check for updates", 693 "defaultMessage": "!!!Check for updates",
694 "file": "src/lib/Menu.js", 694 "file": "src/lib/Menu.js",
695 "start": { 695 "start": {
696 "line": 231, 696 "line": 234,
697 "column": 19 697 "column": 19
698 }, 698 },
699 "end": { 699 "end": {
700 "line": 234, 700 "line": 237,
701 "column": 3 701 "column": 3
702 } 702 }
703 }, 703 },
@@ -706,11 +706,11 @@
706 "defaultMessage": "!!!Hide", 706 "defaultMessage": "!!!Hide",
707 "file": "src/lib/Menu.js", 707 "file": "src/lib/Menu.js",
708 "start": { 708 "start": {
709 "line": 235, 709 "line": 238,
710 "column": 8 710 "column": 8
711 }, 711 },
712 "end": { 712 "end": {
713 "line": 238, 713 "line": 241,
714 "column": 3 714 "column": 3
715 } 715 }
716 }, 716 },
@@ -719,11 +719,11 @@
719 "defaultMessage": "!!!Hide Others", 719 "defaultMessage": "!!!Hide Others",
720 "file": "src/lib/Menu.js", 720 "file": "src/lib/Menu.js",
721 "start": { 721 "start": {
722 "line": 239, 722 "line": 242,
723 "column": 14 723 "column": 14
724 }, 724 },
725 "end": { 725 "end": {
726 "line": 242, 726 "line": 245,
727 "column": 3 727 "column": 3
728 } 728 }
729 }, 729 },
@@ -732,11 +732,11 @@
732 "defaultMessage": "!!!Unhide", 732 "defaultMessage": "!!!Unhide",
733 "file": "src/lib/Menu.js", 733 "file": "src/lib/Menu.js",
734 "start": { 734 "start": {
735 "line": 243, 735 "line": 246,
736 "column": 10 736 "column": 10
737 }, 737 },
738 "end": { 738 "end": {
739 "line": 246, 739 "line": 249,
740 "column": 3 740 "column": 3
741 } 741 }
742 }, 742 },
@@ -745,11 +745,11 @@
745 "defaultMessage": "!!!Auto-hide menu bar", 745 "defaultMessage": "!!!Auto-hide menu bar",
746 "file": "src/lib/Menu.js", 746 "file": "src/lib/Menu.js",
747 "start": { 747 "start": {
748 "line": 247, 748 "line": 250,
749 "column": 19 749 "column": 19
750 }, 750 },
751 "end": { 751 "end": {
752 "line": 250, 752 "line": 253,
753 "column": 3 753 "column": 3
754 } 754 }
755 }, 755 },
@@ -758,11 +758,11 @@
758 "defaultMessage": "!!!Quit", 758 "defaultMessage": "!!!Quit",
759 "file": "src/lib/Menu.js", 759 "file": "src/lib/Menu.js",
760 "start": { 760 "start": {
761 "line": 251, 761 "line": 254,
762 "column": 8 762 "column": 8
763 }, 763 },
764 "end": { 764 "end": {
765 "line": 254, 765 "line": 257,
766 "column": 3 766 "column": 3
767 } 767 }
768 }, 768 },
@@ -771,11 +771,11 @@
771 "defaultMessage": "!!!Add New Service...", 771 "defaultMessage": "!!!Add New Service...",
772 "file": "src/lib/Menu.js", 772 "file": "src/lib/Menu.js",
773 "start": { 773 "start": {
774 "line": 255, 774 "line": 258,
775 "column": 17 775 "column": 17
776 }, 776 },
777 "end": { 777 "end": {
778 "line": 258, 778 "line": 261,
779 "column": 3 779 "column": 3
780 } 780 }
781 }, 781 },
@@ -784,11 +784,11 @@
784 "defaultMessage": "!!!Add New Workspace...", 784 "defaultMessage": "!!!Add New Workspace...",
785 "file": "src/lib/Menu.js", 785 "file": "src/lib/Menu.js",
786 "start": { 786 "start": {
787 "line": 259, 787 "line": 262,
788 "column": 19 788 "column": 19
789 }, 789 },
790 "end": { 790 "end": {
791 "line": 262, 791 "line": 265,
792 "column": 3 792 "column": 3
793 } 793 }
794 }, 794 },
@@ -797,11 +797,11 @@
797 "defaultMessage": "!!!Open workspace drawer", 797 "defaultMessage": "!!!Open workspace drawer",
798 "file": "src/lib/Menu.js", 798 "file": "src/lib/Menu.js",
799 "start": { 799 "start": {
800 "line": 263, 800 "line": 266,
801 "column": 23 801 "column": 23
802 }, 802 },
803 "end": { 803 "end": {
804 "line": 266, 804 "line": 269,
805 "column": 3 805 "column": 3
806 } 806 }
807 }, 807 },
@@ -810,11 +810,11 @@
810 "defaultMessage": "!!!Close workspace drawer", 810 "defaultMessage": "!!!Close workspace drawer",
811 "file": "src/lib/Menu.js", 811 "file": "src/lib/Menu.js",
812 "start": { 812 "start": {
813 "line": 267, 813 "line": 270,
814 "column": 24 814 "column": 24
815 }, 815 },
816 "end": { 816 "end": {
817 "line": 270, 817 "line": 273,
818 "column": 3 818 "column": 3
819 } 819 }
820 }, 820 },
@@ -823,11 +823,11 @@
823 "defaultMessage": "!!!Activate next service...", 823 "defaultMessage": "!!!Activate next service...",
824 "file": "src/lib/Menu.js", 824 "file": "src/lib/Menu.js",
825 "start": { 825 "start": {
826 "line": 271, 826 "line": 274,
827 "column": 23 827 "column": 23
828 }, 828 },
829 "end": { 829 "end": {
830 "line": 274, 830 "line": 277,
831 "column": 3 831 "column": 3
832 } 832 }
833 }, 833 },
@@ -836,11 +836,11 @@
836 "defaultMessage": "!!!Activate previous service...", 836 "defaultMessage": "!!!Activate previous service...",
837 "file": "src/lib/Menu.js", 837 "file": "src/lib/Menu.js",
838 "start": { 838 "start": {
839 "line": 275, 839 "line": 278,
840 "column": 27 840 "column": 27
841 }, 841 },
842 "end": { 842 "end": {
843 "line": 278, 843 "line": 281,
844 "column": 3 844 "column": 3
845 } 845 }
846 }, 846 },
@@ -849,11 +849,11 @@
849 "defaultMessage": "!!!Disable notifications & audio", 849 "defaultMessage": "!!!Disable notifications & audio",
850 "file": "src/lib/Menu.js", 850 "file": "src/lib/Menu.js",
851 "start": { 851 "start": {
852 "line": 279, 852 "line": 282,
853 "column": 11 853 "column": 11
854 }, 854 },
855 "end": { 855 "end": {
856 "line": 282, 856 "line": 285,
857 "column": 3 857 "column": 3
858 } 858 }
859 }, 859 },
@@ -862,11 +862,11 @@
862 "defaultMessage": "!!!Enable notifications & audio", 862 "defaultMessage": "!!!Enable notifications & audio",
863 "file": "src/lib/Menu.js", 863 "file": "src/lib/Menu.js",
864 "start": { 864 "start": {
865 "line": 283, 865 "line": 286,
866 "column": 13 866 "column": 13
867 }, 867 },
868 "end": { 868 "end": {
869 "line": 286, 869 "line": 289,
870 "column": 3 870 "column": 3
871 } 871 }
872 }, 872 },
@@ -875,11 +875,11 @@
875 "defaultMessage": "!!!Workspaces", 875 "defaultMessage": "!!!Workspaces",
876 "file": "src/lib/Menu.js", 876 "file": "src/lib/Menu.js",
877 "start": { 877 "start": {
878 "line": 287, 878 "line": 290,
879 "column": 14 879 "column": 14
880 }, 880 },
881 "end": { 881 "end": {
882 "line": 290, 882 "line": 293,
883 "column": 3 883 "column": 3
884 } 884 }
885 }, 885 },
@@ -888,11 +888,11 @@
888 "defaultMessage": "!!!Default", 888 "defaultMessage": "!!!Default",
889 "file": "src/lib/Menu.js", 889 "file": "src/lib/Menu.js",
890 "start": { 890 "start": {
891 "line": 291, 891 "line": 294,
892 "column": 20 892 "column": 20
893 }, 893 },
894 "end": { 894 "end": {
895 "line": 294, 895 "line": 297,
896 "column": 3 896 "column": 3
897 } 897 }
898 }, 898 },
@@ -901,11 +901,11 @@
901 "defaultMessage": "!!!Todos", 901 "defaultMessage": "!!!Todos",
902 "file": "src/lib/Menu.js", 902 "file": "src/lib/Menu.js",
903 "start": { 903 "start": {
904 "line": 295, 904 "line": 298,
905 "column": 9 905 "column": 9
906 }, 906 },
907 "end": { 907 "end": {
908 "line": 298, 908 "line": 301,
909 "column": 3 909 "column": 3
910 } 910 }
911 }, 911 },
@@ -914,11 +914,11 @@
914 "defaultMessage": "!!!Open Todos drawer", 914 "defaultMessage": "!!!Open Todos drawer",
915 "file": "src/lib/Menu.js", 915 "file": "src/lib/Menu.js",
916 "start": { 916 "start": {
917 "line": 299, 917 "line": 302,
918 "column": 19 918 "column": 19
919 }, 919 },
920 "end": { 920 "end": {
921 "line": 302, 921 "line": 305,
922 "column": 3 922 "column": 3
923 } 923 }
924 }, 924 },
@@ -927,11 +927,11 @@
927 "defaultMessage": "!!!Close Todos drawer", 927 "defaultMessage": "!!!Close Todos drawer",
928 "file": "src/lib/Menu.js", 928 "file": "src/lib/Menu.js",
929 "start": { 929 "start": {
930 "line": 303, 930 "line": 306,
931 "column": 20 931 "column": 20
932 }, 932 },
933 "end": { 933 "end": {
934 "line": 306, 934 "line": 309,
935 "column": 3 935 "column": 3
936 } 936 }
937 }, 937 },
@@ -940,11 +940,11 @@
940 "defaultMessage": "!!!Enable Todos", 940 "defaultMessage": "!!!Enable Todos",
941 "file": "src/lib/Menu.js", 941 "file": "src/lib/Menu.js",
942 "start": { 942 "start": {
943 "line": 307, 943 "line": 310,
944 "column": 15 944 "column": 15
945 }, 945 },
946 "end": { 946 "end": {
947 "line": 310, 947 "line": 313,
948 "column": 3 948 "column": 3
949 } 949 }
950 }, 950 },
@@ -953,11 +953,11 @@
953 "defaultMessage": "!!!Home", 953 "defaultMessage": "!!!Home",
954 "file": "src/lib/Menu.js", 954 "file": "src/lib/Menu.js",
955 "start": { 955 "start": {
956 "line": 311, 956 "line": 314,
957 "column": 17 957 "column": 17
958 }, 958 },
959 "end": { 959 "end": {
960 "line": 314, 960 "line": 317,
961 "column": 3 961 "column": 3
962 } 962 }
963 } 963 }
diff --git a/src/index.js b/src/index.js
index 9c0506f53..2586ab401 100644
--- a/src/index.js
+++ b/src/index.js
@@ -183,12 +183,7 @@ const createWindow = () => {
183 } 183 }
184 184
185 // Create the browser window. 185 // Create the browser window.
186 let backgroundColor = '#7266F0'; 186 const backgroundColor = settings.get('darkMode') ? '#1E1E1E' : settings.get('accentColor');
187 if (settings.get('accentColor') !== '#7266F0') {
188 backgroundColor = settings.get('accentColor');
189 } else if (settings.get('darkMode')) {
190 backgroundColor = '#1E1E1E';
191 }
192 187
193 mainWindow = new BrowserWindow({ 188 mainWindow = new BrowserWindow({
194 x: posX, 189 x: posX,
diff --git a/src/lib/Menu.js b/src/lib/Menu.js
index 7bd273f6f..23f897ae4 100644
--- a/src/lib/Menu.js
+++ b/src/lib/Menu.js
@@ -924,15 +924,15 @@ export default class FranzMenu {
924 }); 924 });
925 925
926 if (serviceTpl.length > 0) { 926 if (serviceTpl.length > 0) {
927 tpl[3].submenu = serviceTpl; 927 tpl[2].submenu = serviceTpl;
928 } 928 }
929 929
930 if (workspaceStore.isFeatureEnabled) { 930 if (workspaceStore.isFeatureEnabled) {
931 tpl[4].submenu = this.workspacesMenu(); 931 tpl[3].submenu = this.workspacesMenu();
932 } 932 }
933 933
934 if (todosStore.isFeatureEnabled) { 934 if (todosStore.isFeatureEnabled) {
935 tpl[5].submenu = this.todosMenu(); 935 tpl[4].submenu = this.todosMenu();
936 } 936 }
937 } else { 937 } else {
938 const touchIdEnabled = isMac ? (this.stores.settings.app.useTouchIdToUnlock && systemPreferences.canPromptTouchID()) : false; 938 const touchIdEnabled = isMac ? (this.stores.settings.app.useTouchIdToUnlock && systemPreferences.canPromptTouchID()) : false;
diff --git a/src/scripts/build-theme-info.js b/src/scripts/build-theme-info.js
index 2109414c8..cff33e3c4 100644
--- a/src/scripts/build-theme-info.js
+++ b/src/scripts/build-theme-info.js
@@ -6,11 +6,12 @@
6const css = require('css'); 6const css = require('css');
7const fs = require('fs-extra'); 7const fs = require('fs-extra');
8const path = require('path'); 8const path = require('path');
9const theme = require('@meetfranz/theme');
9 10
10// Colors that should be replaced with the accent color 11// Colors that should be replaced with the accent color
11const accentColors = [ 12const accentColors = [
13 theme.DEFAULT_ACCENT_COLOR.toLowerCase(),
12 '#7367f0', 14 '#7367f0',
13 '#7266F0',
14 '#5e50ee', 15 '#5e50ee',
15]; 16];
16 17
diff --git a/src/stores/UIStore.js b/src/stores/UIStore.js
index ba2cffb73..05e3f71fe 100644
--- a/src/stores/UIStore.js
+++ b/src/stores/UIStore.js
@@ -72,8 +72,9 @@ export default class UIStore extends Store {
72 } 72 }
73 73
74 @computed get theme() { 74 @computed get theme() {
75 if (this.isDarkThemeActive || this.stores.settings.app.darkMode) return theme('dark'); 75 const themeId = (this.isDarkThemeActive || this.stores.settings.app.darkMode) ? 'dark' : 'default';
76 return theme('default'); 76 const accentColor = this.stores.settings.app.accentColor;
77 return theme(themeId, accentColor);
77 } 78 }
78 79
79 // Actions 80 // Actions
diff --git a/src/styles/button.scss b/src/styles/button.scss
index cf2568fc4..d18b683d5 100644
--- a/src/styles/button.scss
+++ b/src/styles/button.scss
@@ -8,11 +8,11 @@
8 &:active { background: lighten($theme-brand-primary, 5%); } 8 &:active { background: lighten($theme-brand-primary, 5%); }
9 9
10 &.franz-form__button--secondary { 10 &.franz-form__button--secondary {
11 background: $dark-theme-gray-lighter; 11 background: $dark-theme-gray-dark;
12 color: $dark-theme-text-color; 12 color: $dark-theme-text-color;
13 13
14 &:hover { background: lighten($dark-theme-gray-lighter, 10%); } 14 &:hover { background: lighten($dark-theme-gray-dark, 10%); }
15 &:active { background: lighten($dark-theme-gray-lighter, 20%); } 15 &:active { background: lighten($dark-theme-gray-dark, 20%); }
16 } 16 }
17 17
18 &.franz-form__button--danger { 18 &.franz-form__button--danger {
@@ -138,4 +138,4 @@
138 color: #FFFFFF; 138 color: #FFFFFF;
139 cursor: pointer; 139 cursor: pointer;
140 } 140 }
141} \ No newline at end of file 141}
diff --git a/src/styles/colors.scss b/src/styles/colors.scss
index 6afe872bd..a33d26cf1 100644
--- a/src/styles/colors.scss
+++ b/src/styles/colors.scss
@@ -1,7 +1,7 @@
1@import "./type-helper"; 1@import "./type-helper";
2 2
3$theme-brand-primary: convert-rgb-string-to-color($raw-theme-brand-primary); 3$theme-brand-primary: convert-rgb-string-to-color($raw-theme-brand-primary);
4$theme-brand-gradient: #7266F0; 4$theme-brand-gradient: $theme-brand-primary;
5$theme-brand-success: convert-rgb-string-to-color($raw-theme-brand-success); 5$theme-brand-success: convert-rgb-string-to-color($raw-theme-brand-success);
6$theme-brand-info: convert-rgb-string-to-color($raw-theme-brand-info); 6$theme-brand-info: convert-rgb-string-to-color($raw-theme-brand-info);
7$theme-brand-warning: convert-rgb-string-to-color($raw-theme-brand-warning); 7$theme-brand-warning: convert-rgb-string-to-color($raw-theme-brand-warning);
diff --git a/src/styles/layout.scss b/src/styles/layout.scss
index ecc305193..acbd65ad1 100644
--- a/src/styles/layout.scss
+++ b/src/styles/layout.scss
@@ -17,9 +17,13 @@ html { overflow: hidden; }
17.theme__dark .app { 17.theme__dark .app {
18 .sidebar { 18 .sidebar {
19 background: $dark-theme-gray-darker; 19 background: $dark-theme-gray-darker;
20 box-shadow: 0 0 5px 0 $dark-theme-black;
21 color: $theme-text-color; 20 color: $theme-text-color;
22 21
22 &::after {
23 box-shadow: inset 0 0 5px 0 $dark-theme-black,
24 inset 0 0 2px 0 rgba(0, 0, 0, 0.4);
25 }
26
23 .sidebar__add-service { 27 .sidebar__add-service {
24 color: $dark-theme-gray-lighter; 28 color: $dark-theme-gray-lighter;
25 background: $dark-theme-gray; 29 background: $dark-theme-gray;
@@ -108,9 +112,9 @@ body.win32:not(.isFullScreen) .app .app__content {
108.darwin .sidebar { padding-top: 23px; } 112.darwin .sidebar { padding-top: 23px; }
109 113
110.sidebar { 114.sidebar {
115 position: relative;
111 align-items: center; 116 align-items: center;
112 background: $theme-gray-lightest; 117 background: $theme-gray-lightest;
113 box-shadow: 1px 0 10px rgba(0, 0, 0, .08);
114 color: $theme-text-color; 118 color: $theme-text-color;
115 display: flex; 119 display: flex;
116 flex-direction: column; 120 flex-direction: column;
@@ -119,6 +123,20 @@ body.win32:not(.isFullScreen) .app .app__content {
119 width: $theme-sidebar-width; 123 width: $theme-sidebar-width;
120 z-index: 200; 124 z-index: 200;
121 125
126 &::after {
127 content: ' ';
128 position: absolute;
129 top: -10px;
130 right: 0;
131 bottom: -10px;
132 left: -10px;
133 z-index: 1000;
134 pointer-events: none;
135 clip-path: inset(10px 0 10px 10px);
136 box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .12),
137 inset 0 0 2px 0 rgba(0, 0, 0, 0.24);
138 }
139
122 .sidebar__add-service { 140 .sidebar__add-service {
123 color: $theme-gray-light; 141 color: $theme-gray-light;
124 background: $theme-gray-lighter; 142 background: $theme-gray-lighter;
@@ -191,4 +209,4 @@ body.win32:not(.isFullScreen) .app .app__content {
191 209
192a, button { 210a, button {
193 cursor: pointer; 211 cursor: pointer;
194} \ No newline at end of file 212}
diff --git a/src/styles/tabs.scss b/src/styles/tabs.scss
index d09353e38..fb2f1c32a 100644
--- a/src/styles/tabs.scss
+++ b/src/styles/tabs.scss
@@ -36,7 +36,7 @@
36 background: lighten($theme-brand-primary, 35%); 36 background: lighten($theme-brand-primary, 35%);
37 border-left-width: 4px; 37 border-left-width: 4px;
38 border-left-style: solid; 38 border-left-style: solid;
39 border-left-color: $theme-brand-primary; 39 color: $theme-brand-primary;
40 40
41 .tab-item__icon { margin-left: -4px; } 41 .tab-item__icon { margin-left: -4px; }
42 } 42 }
diff --git a/src/styles/vertical.scss b/src/styles/vertical.scss
index 55660a088..426032bf6 100644
--- a/src/styles/vertical.scss
+++ b/src/styles/vertical.scss
@@ -1,13 +1,24 @@
1$sidebar-width: 65px; 1@import './config.scss';
2
3$sidebar-width: 64px;
2 4
3.sidebar { 5.sidebar {
4 width: 100vw; 6 width: 100vw;
5 height: $sidebar-width; 7 height: $sidebar-width;
6 flex-direction: row; 8 flex-direction: row;
7 position: absolute; 9 position: absolute;
10 top: 0;
8 right: 0; 11 right: 0;
9 padding-bottom: 0px; 12 padding-bottom: 0px;
10 13
14 &::after {
15 top: -10px;
16 right: -10px;
17 bottom: 0;
18 left: -10px;
19 clip-path: inset(10px 10px 0 10px);
20 }
21
11 div:first-of-type { 22 div:first-of-type {
12 overflow-x: scroll; 23 overflow-x: scroll;
13 width: 100%; 24 width: 100%;
@@ -22,7 +33,6 @@ $sidebar-width: 65px;
22 border-left-width: 0px; 33 border-left-width: 0px;
23 border-top-width: 4px; 34 border-top-width: 4px;
24 border-top-style: solid; 35 border-top-style: solid;
25 border-top-color: #7367f0;
26 padding-left: 4px; 36 padding-left: 4px;
27 } 37 }
28 38
@@ -40,17 +50,39 @@ $sidebar-width: 65px;
40 } 50 }
41} 51}
42 52
43.app_service { 53.app .app__content {
44 width: 100vw; 54 padding-top: $sidebar-width;
45 position: absolute; 55}
46 top: $sidebar-width; 56
47 right: 0; 57.workspaces-drawer {
58 margin-top: -$sidebar-width;
59 height: 100vh;
60 position: relative;
61
62 &::after {
63 content: ' ';
64 position: absolute;
65 top: -10px;
66 right: 0;
67 bottom: -10px;
68 left: -10px;
69 z-index: 1000;
70 pointer-events: none;
71 clip-path: inset(10px 0 10px 10px);
72 box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, .12),
73 inset 0 0 2px 0 rgba(0, 0, 0, 0.36);
74 }
48} 75}
49 76
50.theme__dark { 77.theme__dark {
51 .sidebar .sidebar__button--workspaces.is-active { 78 .sidebar .sidebar__button--workspaces.is-active {
52 background-color: #2d2f31; 79 background-color: #2d2f31;
53 } 80 }
81
82 .workspaces-drawer::after {
83 box-shadow: inset 0 0 10px 0 $dark-theme-black,
84 inset 0 0 2px 0 rgba(0, 0, 0, 0.4);
85 }
54} 86}
55 87
56.darwin .sidebar { 88.darwin .sidebar {
@@ -59,4 +91,4 @@ $sidebar-width: 65px;
59 .sidebar__button--workspaces.is-active { 91 .sidebar__button--workspaces.is-active {
60 height: $sidebar-width - 22px; 92 height: $sidebar-width - 22px;
61 } 93 }
62} \ No newline at end of file 94}