From a99371b4302fe0033ba4c1ae252026f8e2b4b2b7 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Wed, 11 Sep 2019 10:43:27 +0200 Subject: fix(Settings): Don't toggle Todos on general settings changes --- src/containers/settings/EditSettingsScreen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js index 65b5a45df..a368d4697 100644 --- a/src/containers/settings/EditSettingsScreen.js +++ b/src/containers/settings/EditSettingsScreen.js @@ -118,7 +118,7 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e }, }); - if (todos.isFeatureActive) { + if (todos.isFeatureActive && todos.settings.isFeatureEnabledByUser !== settingsData.enableTodos) { todosActions.toggleTodosFeatureVisibility(); } } -- cgit v1.2.3-70-g09d2 From 0f2fe50e811531945ab6dfe67f604c9eddbb6239 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Wed, 11 Sep 2019 11:03:39 +0200 Subject: Fix(Todos): Fix Todos Menu --- src/features/todos/store.js | 6 +++++- src/i18n/locales/defaultMessages.json | 13 +++++++++++++ src/i18n/locales/en-US.json | 3 ++- src/i18n/messages/src/lib/Menu.json | 13 +++++++++++++ src/lib/Menu.js | 24 ++++++++++++++++++------ 5 files changed, 51 insertions(+), 8 deletions(-) diff --git a/src/features/todos/store.js b/src/features/todos/store.js index 05eef4ec1..abf176604 100644 --- a/src/features/todos/store.js +++ b/src/features/todos/store.js @@ -33,7 +33,7 @@ export default class TodoStore extends FeatureStore { @computed get isTodosPanelForceHidden() { const { isAnnouncementShown } = this.stores.announcements; - return delayAppState.isDelayAppScreenVisible || !this.settings.isFeatureEnabledByUser || isAnnouncementShown; + return delayAppState.isDelayAppScreenVisible || !this.isFeatureEnabledByUser || isAnnouncementShown; } @computed get isTodosPanelVisible() { @@ -41,6 +41,10 @@ export default class TodoStore extends FeatureStore { return this.settings.isTodosPanelVisible; } + @computed get isFeatureEnabledByUser() { + return this.settings.isFeatureEnabledByUser; + } + @computed get settings() { return localStorage.getItem('todos') || {}; } diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json index 44a49317e..fe09fea46 100644 --- a/src/i18n/locales/defaultMessages.json +++ b/src/i18n/locales/defaultMessages.json @@ -5475,6 +5475,19 @@ "column": 20, "line": 258 } + }, + { + "defaultMessage": "!!!Enable Todos", + "end": { + "column": 3, + "line": 265 + }, + "file": "src/lib/Menu.js", + "id": "menu.todos.enableTodos", + "start": { + "column": 15, + "line": 262 + } } ], "path": "src/lib/Menu.json" diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json index 9e63fdbca..609076e88 100644 --- a/src/i18n/locales/en-US.json +++ b/src/i18n/locales/en-US.json @@ -93,6 +93,7 @@ "menu.services.addNewService": "Add New Service...", "menu.services.setNextServiceActive": "Activate next service", "menu.todos": "Todos", + "menu.todos.enableTodos": "!!!Enable Todos", "menu.view": "View", "menu.view.enterFullScreen": "Enter Full Screen", "menu.view.exitFullScreen": "Exit Full Screen", @@ -379,4 +380,4 @@ "workspaceDrawer.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.

", "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", "workspaces.switchingIndicator.switchingTo": "Switching to" -} +} \ No newline at end of file diff --git a/src/i18n/messages/src/lib/Menu.json b/src/i18n/messages/src/lib/Menu.json index cee46608c..0c0cab33f 100644 --- a/src/i18n/messages/src/lib/Menu.json +++ b/src/i18n/messages/src/lib/Menu.json @@ -791,5 +791,18 @@ "line": 261, "column": 3 } + }, + { + "id": "menu.todos.enableTodos", + "defaultMessage": "!!!Enable Todos", + "file": "src/lib/Menu.js", + "start": { + "line": 262, + "column": 15 + }, + "end": { + "line": 265, + "column": 3 + } } ] \ No newline at end of file diff --git a/src/lib/Menu.js b/src/lib/Menu.js index 81efaf18f..6ffa007f2 100644 --- a/src/lib/Menu.js +++ b/src/lib/Menu.js @@ -259,6 +259,10 @@ const menuItems = defineMessages({ id: 'menu.Todoss.closeTodosDrawer', defaultMessage: '!!!Close Todos drawer', }, + enableTodos: { + id: 'menu.todos.enableTodos', + defaultMessage: '!!!Enable Todos', + }, }); function getActiveWebview() { @@ -926,14 +930,12 @@ export default class FranzMenu { } todosMenu() { - const { isTodosPanelVisible } = TodoStore; + const { isTodosPanelVisible, isFeatureEnabledByUser } = this.stores.todos; const { intl } = window.franz; const menu = []; - // Open todos drawer: - const drawerLabel = ( - isTodosPanelVisible ? menuItems.closeTodosDrawer : menuItems.openTodosDrawer - ); + const drawerLabel = isTodosPanelVisible ? menuItems.closeTodosDrawer : menuItems.openTodosDrawer; + menu.push({ label: intl.formatMessage(drawerLabel), accelerator: `${cmdKey}+T`, @@ -941,11 +943,21 @@ export default class FranzMenu { todoActions.toggleTodosPanel(); gaEvent(GA_CATEGORY_TODOS, 'toggleDrawer', 'menu'); }, - enabled: this.stores.user.isLoggedIn, + enabled: this.stores.user.isLoggedIn && isFeatureEnabledByUser, }, { type: 'separator', }); + if (!isFeatureEnabledByUser) { + menu.push({ + label: intl.formatMessage(menuItems.enableTodos), + click: () => { + todoActions.toggleTodosFeatureVisibility(); + gaEvent(GA_CATEGORY_TODOS, 'enable', 'menu'); + }, + }); + } + return menu; } -- cgit v1.2.3-70-g09d2 From 7ffcf8cf417e76fe1206b945d417095534b3cad8 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Wed, 11 Sep 2019 13:46:00 +0200 Subject: feat(Todos): Move todos toggle to sidebar --- src/components/layout/Sidebar.js | 28 ++++++++++++ src/features/todos/components/TodosWebview.js | 53 ---------------------- src/i18n/locales/defaultMessages.json | 50 +++++++++++++++----- src/i18n/locales/en-US.json | 6 ++- .../messages/src/components/layout/Sidebar.json | 50 +++++++++++++++----- 5 files changed, 108 insertions(+), 79 deletions(-) diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js index 36c1f2e39..128f94959 100644 --- a/src/components/layout/Sidebar.js +++ b/src/components/layout/Sidebar.js @@ -8,6 +8,8 @@ import Tabbar from '../services/tabs/Tabbar'; import { ctrlKey } from '../../environment'; import { GA_CATEGORY_WORKSPACES, workspaceStore } from '../../features/workspaces'; import { gaEvent } from '../../lib/analytics'; +import { todosStore, GA_CATEGORY_TODOS } from '../../features/todos'; +import todoActions from '../../features/todos/actions'; const messages = defineMessages({ settings: { @@ -34,6 +36,14 @@ const messages = defineMessages({ id: 'sidebar.closeWorkspaceDrawer', defaultMessage: '!!!Close workspace drawer', }, + openTodosDrawer: { + id: 'sidebar.openTodosDrawer', + defaultMessage: '!!!Open Franz Todos', + }, + closeTodosDrawer: { + id: 'sidebar.closeTodosDrawer', + defaultMessage: '!!!Close Franz Todos', + }, }); export default @observer class Sidebar extends Component { @@ -79,6 +89,10 @@ export default @observer class Sidebar extends Component { toggleWorkspaceDrawer, } = this.props; const { intl } = this.context; + const todosToggleMessage = ( + todosStore.isTodosPanelVisible ? messages.closeTodosDrawer : messages.openTodosDrawer + ); + const workspaceToggleMessage = ( isWorkspaceDrawerOpen ? messages.closeWorkspaceDrawer : messages.openWorkspaceDrawer ); @@ -90,6 +104,20 @@ export default @observer class Sidebar extends Component { enableToolTip={() => this.enableToolTip()} disableToolTip={() => this.disableToolTip()} /> + {todosStore.isFeatureEnabled && todosStore.isFeatureEnabledByUser ? ( + + ) : null} {workspaceStore.isFeatureEnabled ? (
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.

", "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", "workspaces.switchingIndicator.switchingTo": "Switching to" -} \ No newline at end of file +} diff --git a/src/i18n/messages/src/components/layout/Sidebar.json b/src/i18n/messages/src/components/layout/Sidebar.json index d67adc96e..837dc54bc 100644 --- a/src/i18n/messages/src/components/layout/Sidebar.json +++ b/src/i18n/messages/src/components/layout/Sidebar.json @@ -4,11 +4,11 @@ "defaultMessage": "!!!Settings", "file": "src/components/layout/Sidebar.js", "start": { - "line": 13, + "line": 15, "column": 12 }, "end": { - "line": 16, + "line": 18, "column": 3 } }, @@ -17,11 +17,11 @@ "defaultMessage": "!!!Add new service", "file": "src/components/layout/Sidebar.js", "start": { - "line": 17, + "line": 19, "column": 17 }, "end": { - "line": 20, + "line": 22, "column": 3 } }, @@ -30,11 +30,11 @@ "defaultMessage": "!!!Disable notifications & audio", "file": "src/components/layout/Sidebar.js", "start": { - "line": 21, + "line": 23, "column": 8 }, "end": { - "line": 24, + "line": 26, "column": 3 } }, @@ -43,11 +43,11 @@ "defaultMessage": "!!!Enable notifications & audio", "file": "src/components/layout/Sidebar.js", "start": { - "line": 25, + "line": 27, "column": 10 }, "end": { - "line": 28, + "line": 30, "column": 3 } }, @@ -56,11 +56,11 @@ "defaultMessage": "!!!Open workspace drawer", "file": "src/components/layout/Sidebar.js", "start": { - "line": 29, + "line": 31, "column": 23 }, "end": { - "line": 32, + "line": 34, "column": 3 } }, @@ -69,11 +69,37 @@ "defaultMessage": "!!!Close workspace drawer", "file": "src/components/layout/Sidebar.js", "start": { - "line": 33, + "line": 35, "column": 24 }, "end": { - "line": 36, + "line": 38, + "column": 3 + } + }, + { + "id": "sidebar.openTodosDrawer", + "defaultMessage": "!!!Open Franz Todos", + "file": "src/components/layout/Sidebar.js", + "start": { + "line": 39, + "column": 19 + }, + "end": { + "line": 42, + "column": 3 + } + }, + { + "id": "sidebar.closeTodosDrawer", + "defaultMessage": "!!!Close Franz Todos", + "file": "src/components/layout/Sidebar.js", + "start": { + "line": 43, + "column": 20 + }, + "end": { + "line": 46, "column": 3 } } -- cgit v1.2.3-70-g09d2 From ddab3a88b297fe244971b0d4fb9ff3fca3a8a1fe Mon Sep 17 00:00:00 2001 From: Dominik Guzei Date: Wed, 11 Sep 2019 14:17:13 +0200 Subject: feat(Workspaces): Setting to keep all workspaces loaded --- .../settings/settings/EditSettingsForm.js | 5 ++ src/containers/settings/EditSettingsScreen.js | 37 +++++++++++- src/features/workspaces/actions.js | 1 + src/features/workspaces/index.js | 1 + src/features/workspaces/store.js | 5 ++ .../containers/settings/EditSettingsScreen.json | 65 +++++++++++++--------- src/stores/ServicesStore.js | 4 +- 7 files changed, 87 insertions(+), 31 deletions(-) diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js index ff30daed2..0b69f7514 100644 --- a/src/components/settings/settings/EditSettingsForm.js +++ b/src/components/settings/settings/EditSettingsForm.js @@ -102,6 +102,7 @@ export default @observer class EditSettingsForm extends Component { cacheSize: PropTypes.string.isRequired, isSpellcheckerIncludedInCurrentPlan: PropTypes.bool.isRequired, isTodosEnabled: PropTypes.bool.isRequired, + isWorkspaceEnabled: PropTypes.bool.isRequired, }; static contextTypes = { @@ -133,6 +134,7 @@ export default @observer class EditSettingsForm extends Component { cacheSize, isSpellcheckerIncludedInCurrentPlan, isTodosEnabled, + isWorkspaceEnabled, } = this.props; const { intl } = this.context; @@ -164,6 +166,9 @@ export default @observer class EditSettingsForm extends Component { {process.platform === 'win32' && ( )} + {isWorkspaceEnabled && ( + + )} {isTodosEnabled && ( )} diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js index 65b5a45df..9aba212be 100644 --- a/src/containers/settings/EditSettingsScreen.js +++ b/src/containers/settings/EditSettingsScreen.js @@ -19,6 +19,8 @@ import ErrorBoundary from '../../components/util/ErrorBoundary'; import globalMessages from '../../i18n/globalMessages'; import { DEFAULT_IS_FEATURE_ENABLED_BY_USER } from '../../features/todos'; +import WorkspacesStore from '../../features/workspaces/store'; +import { DEFAULT_SETTING_KEEP_ALL_WORKSPACES_LOADED } from '../../features/workspaces'; const messages = defineMessages({ autoLaunchOnStart: { @@ -73,6 +75,10 @@ const messages = defineMessages({ id: 'settings.app.form.enableTodos', defaultMessage: '!!!Enable Franz Todos', }, + keepAllWorkspacesLoaded: { + id: 'settings.app.form.keepAllWorkspacesLoaded', + defaultMessage: '!!!Keep all workspaces loaded', + }, }); export default @inject('stores', 'actions') @observer class EditSettingsScreen extends Component { @@ -81,12 +87,13 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e }; onSubmit(settingsData) { - const { todos } = this.props.stores; + const { todos, workspaces } = this.props.stores; const { app, settings, user, todos: todosActions, + workspaces: workspaceActions, } = this.props.actions; app.launchOnStartup({ @@ -118,14 +125,24 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e }, }); + if (workspaces.isFeatureActive) { + const { keepAllWorkspacesLoaded } = workspaces.settings; + if (keepAllWorkspacesLoaded !== settingsData.keepAllWorkspacesLoaded) { + workspaceActions.toggleKeepAllWorkspacesLoadedSetting(); + } + } + if (todos.isFeatureActive) { - todosActions.toggleTodosFeatureVisibility(); + const { isFeatureEnabledByUser } = todos.settings; + if (isFeatureEnabledByUser !== settingsData.enableTodos) { + todosActions.toggleTodosFeatureVisibility(); + } } } prepareForm() { const { - app, settings, user, todos, + app, settings, user, todos, workspaces, } = this.props.stores; const { intl } = this.context; @@ -210,6 +227,14 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e }, }; + if (workspaces.isFeatureActive) { + config.fields.keepAllWorkspacesLoaded = { + label: intl.formatMessage(messages.keepAllWorkspacesLoaded), + value: workspaces.settings.keepAllWorkspacesLoaded, + default: DEFAULT_SETTING_KEEP_ALL_WORKSPACES_LOADED, + }; + } + if (todos.isFeatureActive) { config.fields.enableTodos = { label: intl.formatMessage(messages.enableTodos), @@ -225,6 +250,7 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e const { app, todos, + workspaces, } = this.props.stores; const { updateStatus, @@ -255,6 +281,7 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e onClearAllCache={clearAllCache} isSpellcheckerIncludedInCurrentPlan={spellcheckerConfig.isIncludedInCurrentPlan} isTodosEnabled={todos.isFeatureActive} + isWorkspaceEnabled={workspaces.isFeatureActive} /> ); @@ -267,6 +294,7 @@ EditSettingsScreen.wrappedComponent.propTypes = { user: PropTypes.instanceOf(UserStore).isRequired, settings: PropTypes.instanceOf(SettingsStore).isRequired, todos: PropTypes.instanceOf(TodosStore).isRequired, + workspaces: PropTypes.instanceOf(WorkspacesStore).isRequired, }).isRequired, actions: PropTypes.shape({ app: PropTypes.shape({ @@ -284,5 +312,8 @@ EditSettingsScreen.wrappedComponent.propTypes = { todos: PropTypes.shape({ toggleTodosFeatureVisibility: PropTypes.func.isRequired, }).isRequired, + workspaces: PropTypes.shape({ + toggleAllWorkspacesLoadedSetting: PropTypes.func.isRequired, + }).isRequired, }).isRequired, }; diff --git a/src/features/workspaces/actions.js b/src/features/workspaces/actions.js index a85f8f57f..5b5db422e 100644 --- a/src/features/workspaces/actions.js +++ b/src/features/workspaces/actions.js @@ -21,6 +21,7 @@ export const workspaceActions = createActionsFromDefinitions({ deactivate: {}, toggleWorkspaceDrawer: {}, openWorkspaceSettings: {}, + toggleKeepAllWorkspacesLoadedSetting: {}, }, PropTypes.checkPropTypes); export default workspaceActions; diff --git a/src/features/workspaces/index.js b/src/features/workspaces/index.js index ad9023b8b..ed3e52096 100644 --- a/src/features/workspaces/index.js +++ b/src/features/workspaces/index.js @@ -5,6 +5,7 @@ import { resetApiRequests } from './api'; const debug = require('debug')('Franz:feature:workspaces'); export const GA_CATEGORY_WORKSPACES = 'Workspaces'; +export const DEFAULT_SETTING_KEEP_ALL_WORKSPACES_LOADED = false; export const workspaceStore = new WorkspacesStore(); diff --git a/src/features/workspaces/store.js b/src/features/workspaces/store.js index 4a1f80b4e..7f41cfc88 100644 --- a/src/features/workspaces/store.js +++ b/src/features/workspaces/store.js @@ -97,6 +97,7 @@ export default class WorkspacesStore extends FeatureStore { [workspaceActions.update, this._update], [workspaceActions.activate, this._setActiveWorkspace], [workspaceActions.deactivate, this._deactivateActiveWorkspace], + [workspaceActions.toggleKeepAllWorkspacesLoadedSetting, this._toggleKeepAllWorkspacesLoadedSetting], ]); this._allActions = this._freeUserActions.concat(this._premiumUserActions); this._registerActions(this._allActions); @@ -245,6 +246,10 @@ export default class WorkspacesStore extends FeatureStore { await updateWorkspaceRequest.execute(activeWorkspace); }; + _toggleKeepAllWorkspacesLoadedSetting = async () => { + this._updateSettings({ keepAllWorkspacesLoaded: !this.settings.keepAllWorkspacesLoaded }); + }; + // Reactions _setFeatureEnabledReaction = () => { diff --git a/src/i18n/messages/src/containers/settings/EditSettingsScreen.json b/src/i18n/messages/src/containers/settings/EditSettingsScreen.json index 2b666e7e9..d0a243ec0 100644 --- a/src/i18n/messages/src/containers/settings/EditSettingsScreen.json +++ b/src/i18n/messages/src/containers/settings/EditSettingsScreen.json @@ -4,11 +4,11 @@ "defaultMessage": "!!!Launch Franz on start", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 24, + "line": 26, "column": 21 }, "end": { - "line": 27, + "line": 29, "column": 3 } }, @@ -17,11 +17,11 @@ "defaultMessage": "!!!Open in background", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 28, + "line": 30, "column": 26 }, "end": { - "line": 31, + "line": 33, "column": 3 } }, @@ -30,11 +30,11 @@ "defaultMessage": "!!!Keep Franz in background when closing the window", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 32, + "line": 34, "column": 19 }, "end": { - "line": 35, + "line": 37, "column": 3 } }, @@ -43,11 +43,11 @@ "defaultMessage": "!!!Show Franz in system tray", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 36, + "line": 38, "column": 20 }, "end": { - "line": 39, + "line": 41, "column": 3 } }, @@ -56,11 +56,11 @@ "defaultMessage": "!!!Minimize Franz to system tray", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 40, + "line": 42, "column": 24 }, "end": { - "line": 43, + "line": 45, "column": 3 } }, @@ -69,11 +69,11 @@ "defaultMessage": "!!!Language", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 44, + "line": 46, "column": 12 }, "end": { - "line": 47, + "line": 49, "column": 3 } }, @@ -82,11 +82,11 @@ "defaultMessage": "!!!Dark Mode", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 48, + "line": 50, "column": 12 }, "end": { - "line": 51, + "line": 53, "column": 3 } }, @@ -95,11 +95,11 @@ "defaultMessage": "!!!Display disabled services tabs", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 52, + "line": 54, "column": 24 }, "end": { - "line": 55, + "line": 57, "column": 3 } }, @@ -108,11 +108,11 @@ "defaultMessage": "!!!Show unread message badge when notifications are disabled", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 56, + "line": 58, "column": 29 }, "end": { - "line": 59, + "line": 61, "column": 3 } }, @@ -121,11 +121,11 @@ "defaultMessage": "!!!Enable spell checking", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 60, + "line": 62, "column": 23 }, "end": { - "line": 63, + "line": 65, "column": 3 } }, @@ -134,11 +134,11 @@ "defaultMessage": "!!!Enable GPU Acceleration", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 64, + "line": 66, "column": 25 }, "end": { - "line": 67, + "line": 69, "column": 3 } }, @@ -147,11 +147,11 @@ "defaultMessage": "!!!Include beta versions", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 68, + "line": 70, "column": 8 }, "end": { - "line": 71, + "line": 73, "column": 3 } }, @@ -160,11 +160,24 @@ "defaultMessage": "!!!Enable Franz Todos", "file": "src/containers/settings/EditSettingsScreen.js", "start": { - "line": 72, + "line": 74, "column": 15 }, "end": { - "line": 75, + "line": 77, + "column": 3 + } + }, + { + "id": "settings.app.form.keepAllWorkspacesLoaded", + "defaultMessage": "!!!Keep all workspaces loaded", + "file": "src/containers/settings/EditSettingsScreen.js", + "start": { + "line": 78, + "column": 27 + }, + "end": { + "line": 81, "column": 3 } } diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js index 2fc543192..dcffb57ac 100644 --- a/src/stores/ServicesStore.js +++ b/src/stores/ServicesStore.js @@ -121,10 +121,10 @@ export default class ServicesStore extends Store { // This is just used to avoid unnecessary rerendering of resource-heavy webviews @computed get allDisplayedUnordered() { - const { showDisabledServices } = this.stores.settings.all.app; + const { showDisabledServices, keepAllWorkspacesLoaded } = this.stores.settings.all.app; const services = this.allServicesRequest.execute().result || []; const filteredServices = showDisabledServices ? services : services.filter(service => service.isEnabled); - return workspaceStore.filterServicesByActiveWorkspace(filteredServices); + return keepAllWorkspacesLoaded ? filteredServices : workspaceStore.filterServicesByActiveWorkspace(filteredServices); } @computed get filtered() { -- cgit v1.2.3-70-g09d2 From f01e7f2f66732a5af40c14ebde0d1331159dfc4b Mon Sep 17 00:00:00 2001 From: Dominik Guzei Date: Wed, 11 Sep 2019 14:18:07 +0200 Subject: Update generated i18n changes --- src/i18n/locales/defaultMessages.json | 65 +++++++++++++++++++++-------------- src/i18n/locales/en-US.json | 3 +- 2 files changed, 41 insertions(+), 27 deletions(-) diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json index 44a49317e..3f815dda7 100644 --- a/src/i18n/locales/defaultMessages.json +++ b/src/i18n/locales/defaultMessages.json @@ -3414,169 +3414,182 @@ "defaultMessage": "!!!Launch Franz on start", "end": { "column": 3, - "line": 27 + "line": 29 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.autoLaunchOnStart", "start": { "column": 21, - "line": 24 + "line": 26 } }, { "defaultMessage": "!!!Open in background", "end": { "column": 3, - "line": 31 + "line": 33 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.autoLaunchInBackground", "start": { "column": 26, - "line": 28 + "line": 30 } }, { "defaultMessage": "!!!Keep Franz in background when closing the window", "end": { "column": 3, - "line": 35 + "line": 37 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.runInBackground", "start": { "column": 19, - "line": 32 + "line": 34 } }, { "defaultMessage": "!!!Show Franz in system tray", "end": { "column": 3, - "line": 39 + "line": 41 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.enableSystemTray", "start": { "column": 20, - "line": 36 + "line": 38 } }, { "defaultMessage": "!!!Minimize Franz to system tray", "end": { "column": 3, - "line": 43 + "line": 45 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.minimizeToSystemTray", "start": { "column": 24, - "line": 40 + "line": 42 } }, { "defaultMessage": "!!!Language", "end": { "column": 3, - "line": 47 + "line": 49 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.language", "start": { "column": 12, - "line": 44 + "line": 46 } }, { "defaultMessage": "!!!Dark Mode", "end": { "column": 3, - "line": 51 + "line": 53 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.darkMode", "start": { "column": 12, - "line": 48 + "line": 50 } }, { "defaultMessage": "!!!Display disabled services tabs", "end": { "column": 3, - "line": 55 + "line": 57 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.showDisabledServices", "start": { "column": 24, - "line": 52 + "line": 54 } }, { "defaultMessage": "!!!Show unread message badge when notifications are disabled", "end": { "column": 3, - "line": 59 + "line": 61 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.showMessagesBadgesWhenMuted", "start": { "column": 29, - "line": 56 + "line": 58 } }, { "defaultMessage": "!!!Enable spell checking", "end": { "column": 3, - "line": 63 + "line": 65 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.enableSpellchecking", "start": { "column": 23, - "line": 60 + "line": 62 } }, { "defaultMessage": "!!!Enable GPU Acceleration", "end": { "column": 3, - "line": 67 + "line": 69 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.enableGPUAcceleration", "start": { "column": 25, - "line": 64 + "line": 66 } }, { "defaultMessage": "!!!Include beta versions", "end": { "column": 3, - "line": 71 + "line": 73 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.beta", "start": { "column": 8, - "line": 68 + "line": 70 } }, { "defaultMessage": "!!!Enable Franz Todos", "end": { "column": 3, - "line": 75 + "line": 77 }, "file": "src/containers/settings/EditSettingsScreen.js", "id": "settings.app.form.enableTodos", "start": { "column": 15, - "line": 72 + "line": 74 + } + }, + { + "defaultMessage": "!!!Keep all workspaces loaded", + "end": { + "column": 3, + "line": 81 + }, + "file": "src/containers/settings/EditSettingsScreen.js", + "id": "settings.app.form.keepAllWorkspacesLoaded", + "start": { + "column": 27, + "line": 78 } } ], diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json index 9e63fdbca..33a2bf739 100644 --- a/src/i18n/locales/en-US.json +++ b/src/i18n/locales/en-US.json @@ -207,6 +207,7 @@ "settings.app.form.enableSpellchecking": "Enable spell checking", "settings.app.form.enableSystemTray": "Show Franz in system tray", "settings.app.form.enableTodos": "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded": "!!!Keep all workspaces loaded", "settings.app.form.language": "Language", "settings.app.form.minimizeToSystemTray": "Minimize Franz to system tray", "settings.app.form.runInBackground": "Keep Franz in background when closing the window", @@ -379,4 +380,4 @@ "workspaceDrawer.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.

", "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", "workspaces.switchingIndicator.switchingTo": "Switching to" -} +} \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 8933d731180daf391257d659a151bb8c1cbd075a Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 09:14:50 +0200 Subject: Fix wrong reference to keepAllWorkspacesLoaded --- src/stores/ServicesStore.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js index dcffb57ac..d1fd2be3d 100644 --- a/src/stores/ServicesStore.js +++ b/src/stores/ServicesStore.js @@ -121,7 +121,8 @@ export default class ServicesStore extends Store { // This is just used to avoid unnecessary rerendering of resource-heavy webviews @computed get allDisplayedUnordered() { - const { showDisabledServices, keepAllWorkspacesLoaded } = this.stores.settings.all.app; + const { showDisabledServices } = this.stores.settings.all.app; + const { keepAllWorkspacesLoaded } = this.stores.workspaces.settings; const services = this.allServicesRequest.execute().result || []; const filteredServices = showDisabledServices ? services : services.filter(service => service.isEnabled); return keepAllWorkspacesLoaded ? filteredServices : workspaceStore.filterServicesByActiveWorkspace(filteredServices); -- cgit v1.2.3-70-g09d2 From 08e268e03c41185a51ec4697c98c815c185654c3 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 09:21:43 +0200 Subject: Fix language string --- src/i18n/locales/en-US.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json index 33a2bf739..57f2028dc 100644 --- a/src/i18n/locales/en-US.json +++ b/src/i18n/locales/en-US.json @@ -207,7 +207,7 @@ "settings.app.form.enableSpellchecking": "Enable spell checking", "settings.app.form.enableSystemTray": "Show Franz in system tray", "settings.app.form.enableTodos": "Enable Franz Todos", - "settings.app.form.keepAllWorkspacesLoaded": "!!!Keep all workspaces loaded", + "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", "settings.app.form.language": "Language", "settings.app.form.minimizeToSystemTray": "Minimize Franz to system tray", "settings.app.form.runInBackground": "Keep Franz in background when closing the window", @@ -380,4 +380,4 @@ "workspaceDrawer.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.

", "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", "workspaces.switchingIndicator.switchingTo": "Switching to" -} \ No newline at end of file +} -- cgit v1.2.3-70-g09d2 From 7209aa9c7a1d3ebf34218f5f414570df509b59ff Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 09:22:11 +0200 Subject: Update en-US.json --- src/i18n/locales/en-US.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json index 57f2028dc..991af277b 100644 --- a/src/i18n/locales/en-US.json +++ b/src/i18n/locales/en-US.json @@ -380,4 +380,4 @@ "workspaceDrawer.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.

", "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", "workspaces.switchingIndicator.switchingTo": "Switching to" -} +} \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 6b39d67ddd8a160b0154b0e83e5e1ed67ff7265b Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 09:46:30 +0200 Subject: fix linting issues --- src/components/layout/Sidebar.js | 2 +- src/features/todos/components/TodosWebview.js | 5 +- src/i18n/locales/defaultMessages.json | 260 ++++++++++----------- src/i18n/locales/en-US.json | 2 +- .../features/todos/components/TodosWebview.json | 12 +- src/i18n/messages/src/lib/Menu.json | 248 ++++++++++---------- src/lib/Menu.js | 1 - 7 files changed, 263 insertions(+), 267 deletions(-) diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js index 128f94959..bac57d4dc 100644 --- a/src/components/layout/Sidebar.js +++ b/src/components/layout/Sidebar.js @@ -9,7 +9,7 @@ import { ctrlKey } from '../../environment'; import { GA_CATEGORY_WORKSPACES, workspaceStore } from '../../features/workspaces'; import { gaEvent } from '../../lib/analytics'; import { todosStore, GA_CATEGORY_TODOS } from '../../features/todos'; -import todoActions from '../../features/todos/actions'; +import { todoActions } from '../../features/todos/actions'; const messages = defineMessages({ settings: { diff --git a/src/features/todos/components/TodosWebview.js b/src/features/todos/components/TodosWebview.js index aed1a8834..d052da6f2 100644 --- a/src/features/todos/components/TodosWebview.js +++ b/src/features/todos/components/TodosWebview.js @@ -6,14 +6,11 @@ import Webview from 'react-electron-web-view'; import { Icon } from '@meetfranz/ui'; import { defineMessages, intlShape } from 'react-intl'; -import { mdiChevronRight, mdiCheckAll } from '@mdi/js'; +import { mdiCheckAll } from '@mdi/js'; import * as environment from '../../../environment'; import Appear from '../../../components/ui/effects/Appear'; import UpgradeButton from '../../../components/ui/UpgradeButton'; -const OPEN_TODOS_BUTTON_SIZE = 45; -const CLOSE_TODOS_BUTTON_SIZE = 35; - const messages = defineMessages({ premiumInfo: { id: 'feature.todos.premium.info', diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json index f2293ead2..1ab8638b3 100644 --- a/src/i18n/locales/defaultMessages.json +++ b/src/i18n/locales/defaultMessages.json @@ -3969,39 +3969,39 @@ "defaultMessage": "!!!Franz Todos are available to premium users now!", "end": { "column": 3, - "line": 21 + "line": 18 }, "file": "src/features/todos/components/TodosWebview.js", "id": "feature.todos.premium.info", "start": { "column": 15, - "line": 18 + "line": 15 } }, { "defaultMessage": "!!!Upgrade Account", "end": { "column": 3, - "line": 25 + "line": 22 }, "file": "src/features/todos/components/TodosWebview.js", "id": "feature.todos.premium.upgrade", "start": { "column": 14, - "line": 22 + "line": 19 } }, { "defaultMessage": "!!!Everyone else will have to wait a little longer.", "end": { "column": 3, - "line": 29 + "line": 26 }, "file": "src/features/todos/components/TodosWebview.js", "id": "feature.todos.premium.rollout", "start": { "column": 15, - "line": 26 + "line": 23 } } ], @@ -4713,806 +4713,806 @@ "defaultMessage": "!!!Edit", "end": { "column": 3, - "line": 21 + "line": 20 }, "file": "src/lib/Menu.js", "id": "menu.edit", "start": { "column": 8, - "line": 18 + "line": 17 } }, { "defaultMessage": "!!!Undo", "end": { "column": 3, - "line": 25 + "line": 24 }, "file": "src/lib/Menu.js", "id": "menu.edit.undo", "start": { "column": 8, - "line": 22 + "line": 21 } }, { "defaultMessage": "!!!Redo", "end": { "column": 3, - "line": 29 + "line": 28 }, "file": "src/lib/Menu.js", "id": "menu.edit.redo", "start": { "column": 8, - "line": 26 + "line": 25 } }, { "defaultMessage": "!!!Cut", "end": { "column": 3, - "line": 33 + "line": 32 }, "file": "src/lib/Menu.js", "id": "menu.edit.cut", "start": { "column": 7, - "line": 30 + "line": 29 } }, { "defaultMessage": "!!!Copy", "end": { "column": 3, - "line": 37 + "line": 36 }, "file": "src/lib/Menu.js", "id": "menu.edit.copy", "start": { "column": 8, - "line": 34 + "line": 33 } }, { "defaultMessage": "!!!Paste", "end": { "column": 3, - "line": 41 + "line": 40 }, "file": "src/lib/Menu.js", "id": "menu.edit.paste", "start": { "column": 9, - "line": 38 + "line": 37 } }, { "defaultMessage": "!!!Paste And Match Style", "end": { "column": 3, - "line": 45 + "line": 44 }, "file": "src/lib/Menu.js", "id": "menu.edit.pasteAndMatchStyle", "start": { "column": 22, - "line": 42 + "line": 41 } }, { "defaultMessage": "!!!Delete", "end": { "column": 3, - "line": 49 + "line": 48 }, "file": "src/lib/Menu.js", "id": "menu.edit.delete", "start": { "column": 10, - "line": 46 + "line": 45 } }, { "defaultMessage": "!!!Select All", "end": { "column": 3, - "line": 53 + "line": 52 }, "file": "src/lib/Menu.js", "id": "menu.edit.selectAll", "start": { "column": 13, - "line": 50 + "line": 49 } }, { "defaultMessage": "!!!Speech", "end": { "column": 3, - "line": 57 + "line": 56 }, "file": "src/lib/Menu.js", "id": "menu.edit.speech", "start": { "column": 10, - "line": 54 + "line": 53 } }, { "defaultMessage": "!!!Start Speaking", "end": { "column": 3, - "line": 61 + "line": 60 }, "file": "src/lib/Menu.js", "id": "menu.edit.startSpeaking", "start": { "column": 17, - "line": 58 + "line": 57 } }, { "defaultMessage": "!!!Stop Speaking", "end": { "column": 3, - "line": 65 + "line": 64 }, "file": "src/lib/Menu.js", "id": "menu.edit.stopSpeaking", "start": { "column": 16, - "line": 62 + "line": 61 } }, { "defaultMessage": "!!!Start Dictation", "end": { "column": 3, - "line": 69 + "line": 68 }, "file": "src/lib/Menu.js", "id": "menu.edit.startDictation", "start": { "column": 18, - "line": 66 + "line": 65 } }, { "defaultMessage": "!!!Emoji & Symbols", "end": { "column": 3, - "line": 73 + "line": 72 }, "file": "src/lib/Menu.js", "id": "menu.edit.emojiSymbols", "start": { "column": 16, - "line": 70 + "line": 69 } }, { "defaultMessage": "!!!Actual Size", "end": { "column": 3, - "line": 77 + "line": 76 }, "file": "src/lib/Menu.js", "id": "menu.view.resetZoom", "start": { "column": 13, - "line": 74 + "line": 73 } }, { "defaultMessage": "!!!Zoom In", "end": { "column": 3, - "line": 81 + "line": 80 }, "file": "src/lib/Menu.js", "id": "menu.view.zoomIn", "start": { "column": 10, - "line": 78 + "line": 77 } }, { "defaultMessage": "!!!Zoom Out", "end": { "column": 3, - "line": 85 + "line": 84 }, "file": "src/lib/Menu.js", "id": "menu.view.zoomOut", "start": { "column": 11, - "line": 82 + "line": 81 } }, { "defaultMessage": "!!!Enter Full Screen", "end": { "column": 3, - "line": 89 + "line": 88 }, "file": "src/lib/Menu.js", "id": "menu.view.enterFullScreen", "start": { "column": 19, - "line": 86 + "line": 85 } }, { "defaultMessage": "!!!Exit Full Screen", "end": { "column": 3, - "line": 93 + "line": 92 }, "file": "src/lib/Menu.js", "id": "menu.view.exitFullScreen", "start": { "column": 18, - "line": 90 + "line": 89 } }, { "defaultMessage": "!!!Toggle Full Screen", "end": { "column": 3, - "line": 97 + "line": 96 }, "file": "src/lib/Menu.js", "id": "menu.view.toggleFullScreen", "start": { "column": 20, - "line": 94 + "line": 93 } }, { "defaultMessage": "!!!Toggle Developer Tools", "end": { "column": 3, - "line": 101 + "line": 100 }, "file": "src/lib/Menu.js", "id": "menu.view.toggleDevTools", "start": { "column": 18, - "line": 98 + "line": 97 } }, { "defaultMessage": "!!!Toggle Todos Developer Tools", "end": { "column": 3, - "line": 105 + "line": 104 }, "file": "src/lib/Menu.js", "id": "menu.view.toggleTodosDevTools", "start": { "column": 23, - "line": 102 + "line": 101 } }, { "defaultMessage": "!!!Toggle Service Developer Tools", "end": { "column": 3, - "line": 109 + "line": 108 }, "file": "src/lib/Menu.js", "id": "menu.view.toggleServiceDevTools", "start": { "column": 25, - "line": 106 + "line": 105 } }, { "defaultMessage": "!!!Reload Service", "end": { "column": 3, - "line": 113 + "line": 112 }, "file": "src/lib/Menu.js", "id": "menu.view.reloadService", "start": { "column": 17, - "line": 110 + "line": 109 } }, { "defaultMessage": "!!!Reload Franz", "end": { "column": 3, - "line": 117 + "line": 116 }, "file": "src/lib/Menu.js", "id": "menu.view.reloadFranz", "start": { "column": 15, - "line": 114 + "line": 113 } }, { "defaultMessage": "!!!Minimize", "end": { "column": 3, - "line": 121 + "line": 120 }, "file": "src/lib/Menu.js", "id": "menu.window.minimize", "start": { "column": 12, - "line": 118 + "line": 117 } }, { "defaultMessage": "!!!Close", "end": { "column": 3, - "line": 125 + "line": 124 }, "file": "src/lib/Menu.js", "id": "menu.window.close", "start": { "column": 9, - "line": 122 + "line": 121 } }, { "defaultMessage": "!!!Learn More", "end": { "column": 3, - "line": 129 + "line": 128 }, "file": "src/lib/Menu.js", "id": "menu.help.learnMore", "start": { "column": 13, - "line": 126 + "line": 125 } }, { "defaultMessage": "!!!Changelog", "end": { "column": 3, - "line": 133 + "line": 132 }, "file": "src/lib/Menu.js", "id": "menu.help.changelog", "start": { "column": 13, - "line": 130 + "line": 129 } }, { "defaultMessage": "!!!Support", "end": { "column": 3, - "line": 137 + "line": 136 }, "file": "src/lib/Menu.js", "id": "menu.help.support", "start": { "column": 11, - "line": 134 + "line": 133 } }, { "defaultMessage": "!!!Copy Debug Information", "end": { "column": 3, - "line": 141 + "line": 140 }, "file": "src/lib/Menu.js", "id": "menu.help.debugInfo", "start": { "column": 13, - "line": 138 + "line": 137 } }, { "defaultMessage": "!!!Franz Debug Information", "end": { "column": 3, - "line": 145 + "line": 144 }, "file": "src/lib/Menu.js", "id": "menu.help.debugInfoCopiedHeadline", "start": { "column": 27, - "line": 142 + "line": 141 } }, { "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.", "end": { "column": 3, - "line": 149 + "line": 148 }, "file": "src/lib/Menu.js", "id": "menu.help.debugInfoCopiedBody", "start": { "column": 23, - "line": 146 + "line": 145 } }, { "defaultMessage": "!!!Terms of Service", "end": { "column": 3, - "line": 153 + "line": 152 }, "file": "src/lib/Menu.js", "id": "menu.help.tos", "start": { "column": 7, - "line": 150 + "line": 149 } }, { "defaultMessage": "!!!Privacy Statement", "end": { "column": 3, - "line": 157 + "line": 156 }, "file": "src/lib/Menu.js", "id": "menu.help.privacy", "start": { "column": 11, - "line": 154 + "line": 153 } }, { "defaultMessage": "!!!File", "end": { "column": 3, - "line": 161 + "line": 160 }, "file": "src/lib/Menu.js", "id": "menu.file", "start": { "column": 8, - "line": 158 + "line": 157 } }, { "defaultMessage": "!!!View", "end": { "column": 3, - "line": 165 + "line": 164 }, "file": "src/lib/Menu.js", "id": "menu.view", "start": { "column": 8, - "line": 162 + "line": 161 } }, { "defaultMessage": "!!!Services", "end": { "column": 3, - "line": 169 + "line": 168 }, "file": "src/lib/Menu.js", "id": "menu.services", "start": { "column": 12, - "line": 166 + "line": 165 } }, { "defaultMessage": "!!!Window", "end": { "column": 3, - "line": 173 + "line": 172 }, "file": "src/lib/Menu.js", "id": "menu.window", "start": { "column": 10, - "line": 170 + "line": 169 } }, { "defaultMessage": "!!!Help", "end": { "column": 3, - "line": 177 + "line": 176 }, "file": "src/lib/Menu.js", "id": "menu.help", "start": { "column": 8, - "line": 174 + "line": 173 } }, { "defaultMessage": "!!!About Franz", "end": { "column": 3, - "line": 181 + "line": 180 }, "file": "src/lib/Menu.js", "id": "menu.app.about", "start": { "column": 9, - "line": 178 + "line": 177 } }, { "defaultMessage": "!!!What's new?", "end": { "column": 3, - "line": 185 + "line": 184 }, "file": "src/lib/Menu.js", "id": "menu.app.announcement", "start": { "column": 16, - "line": 182 + "line": 181 } }, { "defaultMessage": "!!!Settings", "end": { "column": 3, - "line": 189 + "line": 188 }, "file": "src/lib/Menu.js", "id": "menu.app.settings", "start": { "column": 12, - "line": 186 + "line": 185 } }, { "defaultMessage": "!!!Check for updates", "end": { "column": 3, - "line": 193 + "line": 192 }, "file": "src/lib/Menu.js", "id": "menu.app.checkForUpdates", "start": { "column": 19, - "line": 190 + "line": 189 } }, { "defaultMessage": "!!!Hide", "end": { "column": 3, - "line": 197 + "line": 196 }, "file": "src/lib/Menu.js", "id": "menu.app.hide", "start": { "column": 8, - "line": 194 + "line": 193 } }, { "defaultMessage": "!!!Hide Others", "end": { "column": 3, - "line": 201 + "line": 200 }, "file": "src/lib/Menu.js", "id": "menu.app.hideOthers", "start": { "column": 14, - "line": 198 + "line": 197 } }, { "defaultMessage": "!!!Unhide", "end": { "column": 3, - "line": 205 + "line": 204 }, "file": "src/lib/Menu.js", "id": "menu.app.unhide", "start": { "column": 10, - "line": 202 + "line": 201 } }, { "defaultMessage": "!!!Quit", "end": { "column": 3, - "line": 209 + "line": 208 }, "file": "src/lib/Menu.js", "id": "menu.app.quit", "start": { "column": 8, - "line": 206 + "line": 205 } }, { "defaultMessage": "!!!Add New Service...", "end": { "column": 3, - "line": 213 + "line": 212 }, "file": "src/lib/Menu.js", "id": "menu.services.addNewService", "start": { "column": 17, - "line": 210 + "line": 209 } }, { "defaultMessage": "!!!Add New Workspace...", "end": { "column": 3, - "line": 217 + "line": 216 }, "file": "src/lib/Menu.js", "id": "menu.workspaces.addNewWorkspace", "start": { "column": 19, - "line": 214 + "line": 213 } }, { "defaultMessage": "!!!Open workspace drawer", "end": { "column": 3, - "line": 221 + "line": 220 }, "file": "src/lib/Menu.js", "id": "menu.workspaces.openWorkspaceDrawer", "start": { "column": 23, - "line": 218 + "line": 217 } }, { "defaultMessage": "!!!Close workspace drawer", "end": { "column": 3, - "line": 225 + "line": 224 }, "file": "src/lib/Menu.js", "id": "menu.workspaces.closeWorkspaceDrawer", "start": { "column": 24, - "line": 222 + "line": 221 } }, { "defaultMessage": "!!!Activate next service...", "end": { "column": 3, - "line": 229 + "line": 228 }, "file": "src/lib/Menu.js", "id": "menu.services.setNextServiceActive", "start": { "column": 23, - "line": 226 + "line": 225 } }, { "defaultMessage": "!!!Activate previous service...", "end": { "column": 3, - "line": 233 + "line": 232 }, "file": "src/lib/Menu.js", "id": "menu.services.activatePreviousService", "start": { "column": 27, - "line": 230 + "line": 229 } }, { "defaultMessage": "!!!Disable notifications & audio", "end": { "column": 3, - "line": 237 + "line": 236 }, "file": "src/lib/Menu.js", "id": "sidebar.muteApp", "start": { "column": 11, - "line": 234 + "line": 233 } }, { "defaultMessage": "!!!Enable notifications & audio", "end": { "column": 3, - "line": 241 + "line": 240 }, "file": "src/lib/Menu.js", "id": "sidebar.unmuteApp", "start": { "column": 13, - "line": 238 + "line": 237 } }, { "defaultMessage": "!!!Workspaces", "end": { "column": 3, - "line": 245 + "line": 244 }, "file": "src/lib/Menu.js", "id": "menu.workspaces", "start": { "column": 14, - "line": 242 + "line": 241 } }, { "defaultMessage": "!!!Default", "end": { "column": 3, - "line": 249 + "line": 248 }, "file": "src/lib/Menu.js", "id": "menu.workspaces.defaultWorkspace", "start": { "column": 20, - "line": 246 + "line": 245 } }, { "defaultMessage": "!!!Todos", "end": { "column": 3, - "line": 253 + "line": 252 }, "file": "src/lib/Menu.js", "id": "menu.todos", "start": { "column": 9, - "line": 250 + "line": 249 } }, { "defaultMessage": "!!!Open Todos drawer", "end": { "column": 3, - "line": 257 + "line": 256 }, "file": "src/lib/Menu.js", "id": "menu.Todoss.openTodosDrawer", "start": { "column": 19, - "line": 254 + "line": 253 } }, { "defaultMessage": "!!!Close Todos drawer", "end": { "column": 3, - "line": 261 + "line": 260 }, "file": "src/lib/Menu.js", "id": "menu.Todoss.closeTodosDrawer", "start": { "column": 20, - "line": 258 + "line": 257 } }, { "defaultMessage": "!!!Enable Todos", "end": { "column": 3, - "line": 265 + "line": 264 }, "file": "src/lib/Menu.js", "id": "menu.todos.enableTodos", "start": { "column": 15, - "line": 262 + "line": 261 } } ], diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json index e9f2c9cc1..1fbb2526c 100644 --- a/src/i18n/locales/en-US.json +++ b/src/i18n/locales/en-US.json @@ -382,4 +382,4 @@ "workspaceDrawer.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.

", "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", "workspaces.switchingIndicator.switchingTo": "Switching to" -} +} \ No newline at end of file diff --git a/src/i18n/messages/src/features/todos/components/TodosWebview.json b/src/i18n/messages/src/features/todos/components/TodosWebview.json index 9cc3325d1..7f230e82a 100644 --- a/src/i18n/messages/src/features/todos/components/TodosWebview.json +++ b/src/i18n/messages/src/features/todos/components/TodosWebview.json @@ -4,11 +4,11 @@ "defaultMessage": "!!!Franz Todos are available to premium users now!", "file": "src/features/todos/components/TodosWebview.js", "start": { - "line": 18, + "line": 15, "column": 15 }, "end": { - "line": 21, + "line": 18, "column": 3 } }, @@ -17,11 +17,11 @@ "defaultMessage": "!!!Upgrade Account", "file": "src/features/todos/components/TodosWebview.js", "start": { - "line": 22, + "line": 19, "column": 14 }, "end": { - "line": 25, + "line": 22, "column": 3 } }, @@ -30,11 +30,11 @@ "defaultMessage": "!!!Everyone else will have to wait a little longer.", "file": "src/features/todos/components/TodosWebview.js", "start": { - "line": 26, + "line": 23, "column": 15 }, "end": { - "line": 29, + "line": 26, "column": 3 } } diff --git a/src/i18n/messages/src/lib/Menu.json b/src/i18n/messages/src/lib/Menu.json index 0c0cab33f..26850c5b3 100644 --- a/src/i18n/messages/src/lib/Menu.json +++ b/src/i18n/messages/src/lib/Menu.json @@ -4,11 +4,11 @@ "defaultMessage": "!!!Edit", "file": "src/lib/Menu.js", "start": { - "line": 18, + "line": 17, "column": 8 }, "end": { - "line": 21, + "line": 20, "column": 3 } }, @@ -17,11 +17,11 @@ "defaultMessage": "!!!Undo", "file": "src/lib/Menu.js", "start": { - "line": 22, + "line": 21, "column": 8 }, "end": { - "line": 25, + "line": 24, "column": 3 } }, @@ -30,11 +30,11 @@ "defaultMessage": "!!!Redo", "file": "src/lib/Menu.js", "start": { - "line": 26, + "line": 25, "column": 8 }, "end": { - "line": 29, + "line": 28, "column": 3 } }, @@ -43,11 +43,11 @@ "defaultMessage": "!!!Cut", "file": "src/lib/Menu.js", "start": { - "line": 30, + "line": 29, "column": 7 }, "end": { - "line": 33, + "line": 32, "column": 3 } }, @@ -56,11 +56,11 @@ "defaultMessage": "!!!Copy", "file": "src/lib/Menu.js", "start": { - "line": 34, + "line": 33, "column": 8 }, "end": { - "line": 37, + "line": 36, "column": 3 } }, @@ -69,11 +69,11 @@ "defaultMessage": "!!!Paste", "file": "src/lib/Menu.js", "start": { - "line": 38, + "line": 37, "column": 9 }, "end": { - "line": 41, + "line": 40, "column": 3 } }, @@ -82,11 +82,11 @@ "defaultMessage": "!!!Paste And Match Style", "file": "src/lib/Menu.js", "start": { - "line": 42, + "line": 41, "column": 22 }, "end": { - "line": 45, + "line": 44, "column": 3 } }, @@ -95,11 +95,11 @@ "defaultMessage": "!!!Delete", "file": "src/lib/Menu.js", "start": { - "line": 46, + "line": 45, "column": 10 }, "end": { - "line": 49, + "line": 48, "column": 3 } }, @@ -108,11 +108,11 @@ "defaultMessage": "!!!Select All", "file": "src/lib/Menu.js", "start": { - "line": 50, + "line": 49, "column": 13 }, "end": { - "line": 53, + "line": 52, "column": 3 } }, @@ -121,11 +121,11 @@ "defaultMessage": "!!!Speech", "file": "src/lib/Menu.js", "start": { - "line": 54, + "line": 53, "column": 10 }, "end": { - "line": 57, + "line": 56, "column": 3 } }, @@ -134,11 +134,11 @@ "defaultMessage": "!!!Start Speaking", "file": "src/lib/Menu.js", "start": { - "line": 58, + "line": 57, "column": 17 }, "end": { - "line": 61, + "line": 60, "column": 3 } }, @@ -147,11 +147,11 @@ "defaultMessage": "!!!Stop Speaking", "file": "src/lib/Menu.js", "start": { - "line": 62, + "line": 61, "column": 16 }, "end": { - "line": 65, + "line": 64, "column": 3 } }, @@ -160,11 +160,11 @@ "defaultMessage": "!!!Start Dictation", "file": "src/lib/Menu.js", "start": { - "line": 66, + "line": 65, "column": 18 }, "end": { - "line": 69, + "line": 68, "column": 3 } }, @@ -173,11 +173,11 @@ "defaultMessage": "!!!Emoji & Symbols", "file": "src/lib/Menu.js", "start": { - "line": 70, + "line": 69, "column": 16 }, "end": { - "line": 73, + "line": 72, "column": 3 } }, @@ -186,11 +186,11 @@ "defaultMessage": "!!!Actual Size", "file": "src/lib/Menu.js", "start": { - "line": 74, + "line": 73, "column": 13 }, "end": { - "line": 77, + "line": 76, "column": 3 } }, @@ -199,11 +199,11 @@ "defaultMessage": "!!!Zoom In", "file": "src/lib/Menu.js", "start": { - "line": 78, + "line": 77, "column": 10 }, "end": { - "line": 81, + "line": 80, "column": 3 } }, @@ -212,11 +212,11 @@ "defaultMessage": "!!!Zoom Out", "file": "src/lib/Menu.js", "start": { - "line": 82, + "line": 81, "column": 11 }, "end": { - "line": 85, + "line": 84, "column": 3 } }, @@ -225,11 +225,11 @@ "defaultMessage": "!!!Enter Full Screen", "file": "src/lib/Menu.js", "start": { - "line": 86, + "line": 85, "column": 19 }, "end": { - "line": 89, + "line": 88, "column": 3 } }, @@ -238,11 +238,11 @@ "defaultMessage": "!!!Exit Full Screen", "file": "src/lib/Menu.js", "start": { - "line": 90, + "line": 89, "column": 18 }, "end": { - "line": 93, + "line": 92, "column": 3 } }, @@ -251,11 +251,11 @@ "defaultMessage": "!!!Toggle Full Screen", "file": "src/lib/Menu.js", "start": { - "line": 94, + "line": 93, "column": 20 }, "end": { - "line": 97, + "line": 96, "column": 3 } }, @@ -264,11 +264,11 @@ "defaultMessage": "!!!Toggle Developer Tools", "file": "src/lib/Menu.js", "start": { - "line": 98, + "line": 97, "column": 18 }, "end": { - "line": 101, + "line": 100, "column": 3 } }, @@ -277,11 +277,11 @@ "defaultMessage": "!!!Toggle Todos Developer Tools", "file": "src/lib/Menu.js", "start": { - "line": 102, + "line": 101, "column": 23 }, "end": { - "line": 105, + "line": 104, "column": 3 } }, @@ -290,11 +290,11 @@ "defaultMessage": "!!!Toggle Service Developer Tools", "file": "src/lib/Menu.js", "start": { - "line": 106, + "line": 105, "column": 25 }, "end": { - "line": 109, + "line": 108, "column": 3 } }, @@ -303,11 +303,11 @@ "defaultMessage": "!!!Reload Service", "file": "src/lib/Menu.js", "start": { - "line": 110, + "line": 109, "column": 17 }, "end": { - "line": 113, + "line": 112, "column": 3 } }, @@ -316,11 +316,11 @@ "defaultMessage": "!!!Reload Franz", "file": "src/lib/Menu.js", "start": { - "line": 114, + "line": 113, "column": 15 }, "end": { - "line": 117, + "line": 116, "column": 3 } }, @@ -329,11 +329,11 @@ "defaultMessage": "!!!Minimize", "file": "src/lib/Menu.js", "start": { - "line": 118, + "line": 117, "column": 12 }, "end": { - "line": 121, + "line": 120, "column": 3 } }, @@ -342,11 +342,11 @@ "defaultMessage": "!!!Close", "file": "src/lib/Menu.js", "start": { - "line": 122, + "line": 121, "column": 9 }, "end": { - "line": 125, + "line": 124, "column": 3 } }, @@ -355,11 +355,11 @@ "defaultMessage": "!!!Learn More", "file": "src/lib/Menu.js", "start": { - "line": 126, + "line": 125, "column": 13 }, "end": { - "line": 129, + "line": 128, "column": 3 } }, @@ -368,11 +368,11 @@ "defaultMessage": "!!!Changelog", "file": "src/lib/Menu.js", "start": { - "line": 130, + "line": 129, "column": 13 }, "end": { - "line": 133, + "line": 132, "column": 3 } }, @@ -381,11 +381,11 @@ "defaultMessage": "!!!Support", "file": "src/lib/Menu.js", "start": { - "line": 134, + "line": 133, "column": 11 }, "end": { - "line": 137, + "line": 136, "column": 3 } }, @@ -394,11 +394,11 @@ "defaultMessage": "!!!Copy Debug Information", "file": "src/lib/Menu.js", "start": { - "line": 138, + "line": 137, "column": 13 }, "end": { - "line": 141, + "line": 140, "column": 3 } }, @@ -407,11 +407,11 @@ "defaultMessage": "!!!Franz Debug Information", "file": "src/lib/Menu.js", "start": { - "line": 142, + "line": 141, "column": 27 }, "end": { - "line": 145, + "line": 144, "column": 3 } }, @@ -420,11 +420,11 @@ "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.", "file": "src/lib/Menu.js", "start": { - "line": 146, + "line": 145, "column": 23 }, "end": { - "line": 149, + "line": 148, "column": 3 } }, @@ -433,11 +433,11 @@ "defaultMessage": "!!!Terms of Service", "file": "src/lib/Menu.js", "start": { - "line": 150, + "line": 149, "column": 7 }, "end": { - "line": 153, + "line": 152, "column": 3 } }, @@ -446,11 +446,11 @@ "defaultMessage": "!!!Privacy Statement", "file": "src/lib/Menu.js", "start": { - "line": 154, + "line": 153, "column": 11 }, "end": { - "line": 157, + "line": 156, "column": 3 } }, @@ -459,11 +459,11 @@ "defaultMessage": "!!!File", "file": "src/lib/Menu.js", "start": { - "line": 158, + "line": 157, "column": 8 }, "end": { - "line": 161, + "line": 160, "column": 3 } }, @@ -472,11 +472,11 @@ "defaultMessage": "!!!View", "file": "src/lib/Menu.js", "start": { - "line": 162, + "line": 161, "column": 8 }, "end": { - "line": 165, + "line": 164, "column": 3 } }, @@ -485,11 +485,11 @@ "defaultMessage": "!!!Services", "file": "src/lib/Menu.js", "start": { - "line": 166, + "line": 165, "column": 12 }, "end": { - "line": 169, + "line": 168, "column": 3 } }, @@ -498,11 +498,11 @@ "defaultMessage": "!!!Window", "file": "src/lib/Menu.js", "start": { - "line": 170, + "line": 169, "column": 10 }, "end": { - "line": 173, + "line": 172, "column": 3 } }, @@ -511,11 +511,11 @@ "defaultMessage": "!!!Help", "file": "src/lib/Menu.js", "start": { - "line": 174, + "line": 173, "column": 8 }, "end": { - "line": 177, + "line": 176, "column": 3 } }, @@ -524,11 +524,11 @@ "defaultMessage": "!!!About Franz", "file": "src/lib/Menu.js", "start": { - "line": 178, + "line": 177, "column": 9 }, "end": { - "line": 181, + "line": 180, "column": 3 } }, @@ -537,11 +537,11 @@ "defaultMessage": "!!!What's new?", "file": "src/lib/Menu.js", "start": { - "line": 182, + "line": 181, "column": 16 }, "end": { - "line": 185, + "line": 184, "column": 3 } }, @@ -550,11 +550,11 @@ "defaultMessage": "!!!Settings", "file": "src/lib/Menu.js", "start": { - "line": 186, + "line": 185, "column": 12 }, "end": { - "line": 189, + "line": 188, "column": 3 } }, @@ -563,11 +563,11 @@ "defaultMessage": "!!!Check for updates", "file": "src/lib/Menu.js", "start": { - "line": 190, + "line": 189, "column": 19 }, "end": { - "line": 193, + "line": 192, "column": 3 } }, @@ -576,11 +576,11 @@ "defaultMessage": "!!!Hide", "file": "src/lib/Menu.js", "start": { - "line": 194, + "line": 193, "column": 8 }, "end": { - "line": 197, + "line": 196, "column": 3 } }, @@ -589,11 +589,11 @@ "defaultMessage": "!!!Hide Others", "file": "src/lib/Menu.js", "start": { - "line": 198, + "line": 197, "column": 14 }, "end": { - "line": 201, + "line": 200, "column": 3 } }, @@ -602,11 +602,11 @@ "defaultMessage": "!!!Unhide", "file": "src/lib/Menu.js", "start": { - "line": 202, + "line": 201, "column": 10 }, "end": { - "line": 205, + "line": 204, "column": 3 } }, @@ -615,11 +615,11 @@ "defaultMessage": "!!!Quit", "file": "src/lib/Menu.js", "start": { - "line": 206, + "line": 205, "column": 8 }, "end": { - "line": 209, + "line": 208, "column": 3 } }, @@ -628,11 +628,11 @@ "defaultMessage": "!!!Add New Service...", "file": "src/lib/Menu.js", "start": { - "line": 210, + "line": 209, "column": 17 }, "end": { - "line": 213, + "line": 212, "column": 3 } }, @@ -641,11 +641,11 @@ "defaultMessage": "!!!Add New Workspace...", "file": "src/lib/Menu.js", "start": { - "line": 214, + "line": 213, "column": 19 }, "end": { - "line": 217, + "line": 216, "column": 3 } }, @@ -654,11 +654,11 @@ "defaultMessage": "!!!Open workspace drawer", "file": "src/lib/Menu.js", "start": { - "line": 218, + "line": 217, "column": 23 }, "end": { - "line": 221, + "line": 220, "column": 3 } }, @@ -667,11 +667,11 @@ "defaultMessage": "!!!Close workspace drawer", "file": "src/lib/Menu.js", "start": { - "line": 222, + "line": 221, "column": 24 }, "end": { - "line": 225, + "line": 224, "column": 3 } }, @@ -680,11 +680,11 @@ "defaultMessage": "!!!Activate next service...", "file": "src/lib/Menu.js", "start": { - "line": 226, + "line": 225, "column": 23 }, "end": { - "line": 229, + "line": 228, "column": 3 } }, @@ -693,11 +693,11 @@ "defaultMessage": "!!!Activate previous service...", "file": "src/lib/Menu.js", "start": { - "line": 230, + "line": 229, "column": 27 }, "end": { - "line": 233, + "line": 232, "column": 3 } }, @@ -706,11 +706,11 @@ "defaultMessage": "!!!Disable notifications & audio", "file": "src/lib/Menu.js", "start": { - "line": 234, + "line": 233, "column": 11 }, "end": { - "line": 237, + "line": 236, "column": 3 } }, @@ -719,11 +719,11 @@ "defaultMessage": "!!!Enable notifications & audio", "file": "src/lib/Menu.js", "start": { - "line": 238, + "line": 237, "column": 13 }, "end": { - "line": 241, + "line": 240, "column": 3 } }, @@ -732,11 +732,11 @@ "defaultMessage": "!!!Workspaces", "file": "src/lib/Menu.js", "start": { - "line": 242, + "line": 241, "column": 14 }, "end": { - "line": 245, + "line": 244, "column": 3 } }, @@ -745,11 +745,11 @@ "defaultMessage": "!!!Default", "file": "src/lib/Menu.js", "start": { - "line": 246, + "line": 245, "column": 20 }, "end": { - "line": 249, + "line": 248, "column": 3 } }, @@ -758,11 +758,11 @@ "defaultMessage": "!!!Todos", "file": "src/lib/Menu.js", "start": { - "line": 250, + "line": 249, "column": 9 }, "end": { - "line": 253, + "line": 252, "column": 3 } }, @@ -771,11 +771,11 @@ "defaultMessage": "!!!Open Todos drawer", "file": "src/lib/Menu.js", "start": { - "line": 254, + "line": 253, "column": 19 }, "end": { - "line": 257, + "line": 256, "column": 3 } }, @@ -784,11 +784,11 @@ "defaultMessage": "!!!Close Todos drawer", "file": "src/lib/Menu.js", "start": { - "line": 258, + "line": 257, "column": 20 }, "end": { - "line": 261, + "line": 260, "column": 3 } }, @@ -797,11 +797,11 @@ "defaultMessage": "!!!Enable Todos", "file": "src/lib/Menu.js", "start": { - "line": 262, + "line": 261, "column": 15 }, "end": { - "line": 265, + "line": 264, "column": 3 } } diff --git a/src/lib/Menu.js b/src/lib/Menu.js index 6ffa007f2..4aa2edaba 100644 --- a/src/lib/Menu.js +++ b/src/lib/Menu.js @@ -8,7 +8,6 @@ import { workspaceActions } from '../features/workspaces/actions'; import { gaEvent } from './analytics'; import { announcementActions } from '../features/announcements/actions'; import { announcementsStore } from '../features/announcements'; -import TodoStore from '../features/todos/store'; import { GA_CATEGORY_TODOS, todosStore } from '../features/todos'; import { todoActions } from '../features/todos/actions'; -- cgit v1.2.3-70-g09d2 From b5ea565f458a450f30858ac4f918005afce875a1 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 08:33:41 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/ca.json | 4 +++ src/i18n/locales/cs.json | 4 +++ src/i18n/locales/de.json | 4 +++ src/i18n/locales/el.json | 4 +++ src/i18n/locales/es.json | 4 +++ src/i18n/locales/fr.json | 4 +++ src/i18n/locales/ga.json | 4 +++ src/i18n/locales/hr.json | 4 +++ src/i18n/locales/hu.json | 70 ++++++++++++++++++++++--------------------- src/i18n/locales/id.json | 4 +++ src/i18n/locales/it.json | 4 +++ src/i18n/locales/ja.json | 4 +++ src/i18n/locales/ka.json | 4 +++ src/i18n/locales/nl-BE.json | 4 +++ src/i18n/locales/nl.json | 4 +++ src/i18n/locales/pl.json | 66 ++++++++++++++++++++++------------------- src/i18n/locales/pt-BR.json | 72 ++++++++++++++++++++++++--------------------- src/i18n/locales/pt.json | 4 +++ src/i18n/locales/ru.json | 4 +++ src/i18n/locales/sk.json | 4 +++ src/i18n/locales/sr.json | 4 +++ src/i18n/locales/tr.json | 4 +++ src/i18n/locales/uk.json | 4 +++ src/i18n/locales/zh-TW.json | 4 +++ 24 files changed, 194 insertions(+), 98 deletions(-) diff --git a/src/i18n/locales/ca.json b/src/i18n/locales/ca.json index 00e6ccdac..c194c9c1f 100644 --- a/src/i18n/locales/ca.json +++ b/src/i18n/locales/ca.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Afegeix un servei...", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Visualitza", "menu.view.enterFullScreen" : "Inicia la pantalla completa", "menu.view.exitFullScreen" : "Surt de pantalla completa", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Habilita la comprobació ortogràfica", "settings.app.form.enableSystemTray" : "Mostra Franz a la safata del sistema", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Idioma", "settings.app.form.minimizeToSystemTray" : "Minimitza Franz a la safata del sistema", "settings.app.form.runInBackground" : "Mantén a Franz en segon pla en tancar la finestra", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Afegeix nou servei", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Desactivar notificacions i àudio", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Configuració", "sidebar.unmuteApp" : "Activar notificacions i àudio", diff --git a/src/i18n/locales/cs.json b/src/i18n/locales/cs.json index ba4efd0c7..42fcdc622 100644 --- a/src/i18n/locales/cs.json +++ b/src/i18n/locales/cs.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Přidat novou službu...", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Zobrazení", "menu.view.enterFullScreen" : "Spustit režim celé obrazovky", "menu.view.exitFullScreen" : "Ukončit celoobrazovkový režim", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Zapnout kontrolu pravopisu", "settings.app.form.enableSystemTray" : "Zobrazit Franz v systémové liště", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Jazyk", "settings.app.form.minimizeToSystemTray" : "Minimalizovat Franz do systémové lišty", "settings.app.form.runInBackground" : "Ponechat Franze v pozadí při zavírání okna", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Přidat novou službu", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Vypnout upozornění a zvuky", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Nastavení", "sidebar.unmuteApp" : "Zapnout upozornění a zvuky", diff --git a/src/i18n/locales/de.json b/src/i18n/locales/de.json index b487710e5..1a5625963 100644 --- a/src/i18n/locales/de.json +++ b/src/i18n/locales/de.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Dienst hinzufügen", "menu.services.setNextServiceActive" : "Nächster Dienst", "menu.todos" : "ToDos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Darstellung", "menu.view.enterFullScreen" : "Vollbildmodus", "menu.view.exitFullScreen" : "Vollbildmodus aus", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Rechtschreibprüfung aktivieren", "settings.app.form.enableSystemTray" : "Franz im Infobereich anzeigen", "settings.app.form.enableTodos" : "Franz Todos aktivieren", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Sprache", "settings.app.form.minimizeToSystemTray" : "Franz in den Infobereich minimieren", "settings.app.form.runInBackground" : "Franz im Hintergrund behalten, wenn das Fenster geschlossen wird", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Mit Franz Workspaces hast du alles im Blick, was gerade wichtig ist - und nur das. Erstelle unterschiedliche Sets von Services, und wechsle jederzeit zwischen ihnen hin und her. Du entscheidest welche Services du wann und wo brauchst, um ungestört arbeiten zu können - oder zu Hause besser abzuschalten.", "settings.workspaces.workspacesRequestFailed" : "Workspaces konnte nicht geladen werden", "sidebar.addNewService" : "Neuen Dienst hinzufügen", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Workspaces schließen", "sidebar.muteApp" : "Benachrichtigungen & Audio deaktivieren", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Workspaces öffnen", "sidebar.settings" : "Einstellungen", "sidebar.unmuteApp" : "Benachrichtigungen & Audio aktivieren", diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json index aa8eb5909..ac2747ee5 100644 --- a/src/i18n/locales/el.json +++ b/src/i18n/locales/el.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Νέα Υπηρεσία", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Προβολή", "menu.view.enterFullScreen" : "Πλήρης Οθόνη", "menu.view.exitFullScreen" : "Έξοδος από πλήρη οθόνη", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Ενεργοποίηση ορθογραφικού ελέγχου", "settings.app.form.enableSystemTray" : "Εμφάνιση του Franz στη γραμμή ειδοποιήσεων", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Γλώσσα", "settings.app.form.minimizeToSystemTray" : "Ελαχιστοποίηση του Franz στη γραμμή ειδοποιήσεων", "settings.app.form.runInBackground" : "Κρατήστε το Franz στο παρασκήνιο κατά το κλείσιμο του παραθύρου", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Προσθήκη νέας υπηρεσίας", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Απενεργοποίηση ειδοποιήσεων & ήχου", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Ρυθμίσεις", "sidebar.unmuteApp" : "Ενεργοποίηση ειδοποιήσεων & ήχου", diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index 607cc10bd..f46015715 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Añadir Nuevo Servicio...", "menu.services.setNextServiceActive" : "Activa el siguiente servicio", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Mostrar", "menu.view.enterFullScreen" : "Pasar a pantalla completa", "menu.view.exitFullScreen" : "Salir de Pantalla Completa", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Activar corrección ortográfica", "settings.app.form.enableSystemTray" : "Mostrar Franz en la bandeja del sistema", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Idioma", "settings.app.form.minimizeToSystemTray" : "Minimizar Franz a la bandeja del sistema", "settings.app.form.runInBackground" : "Mantener Franz en segundo plano al cerrar la ventana", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Añadir nuevo servicio", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Cerrar cajón de espacio de trabajo", "sidebar.muteApp" : "Desactivar notificaciones y sonido", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Configuración", "sidebar.unmuteApp" : "Activar notificaciones y sonido", diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index 87228e1bf..d5b8b777f 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Ajouter un nouveau service...", "menu.services.setNextServiceActive" : "Activer le service suivant", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Aperçu", "menu.view.enterFullScreen" : "Entrer en mode plein écran", "menu.view.exitFullScreen" : "Sortir du mode plein écran", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Activer la vérification orthographique", "settings.app.form.enableSystemTray" : "Afficher Franz dans la barre d'état système", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Langue", "settings.app.form.minimizeToSystemTray" : "Minimiser Franz dans la zone de notification", "settings.app.form.runInBackground" : "Garder Franz ouvert en arrière-plan à la fermeture de la fenêtre", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Les Espaces de travail de Franz vous permettant de rester concentré sur ce qui est important. Créez différents groupes de services et naviguez facilement entre eux à n'importe quel moment. Vous décidez de quels services vous avez besoin, où et quand, ainsi nous pouvons vous aider à rester concentré sur votre travail - ou à le quitter dès que vous le souhaitez.", "settings.workspaces.workspacesRequestFailed" : "Impossible de charger vos espaces de travail", "sidebar.addNewService" : "Ajouter un nouveau service", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Fermer l'espace de travail", "sidebar.muteApp" : "Désactiver les notifications et les sons", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Ouvrir l'espace de travail", "sidebar.settings" : "Paramètres", "sidebar.unmuteApp" : "Activer les notifications et les sons", diff --git a/src/i18n/locales/ga.json b/src/i18n/locales/ga.json index 5de840b7e..76b2127e8 100644 --- a/src/i18n/locales/ga.json +++ b/src/i18n/locales/ga.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Cuir seirbhís nua leis", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Amharc", "menu.view.enterFullScreen" : "Cuir isteach mód lánscáileáin", "menu.view.exitFullScreen" : "Scoir mód lánscáileáin", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Cumasaigh seiceáil litrithe", "settings.app.form.enableSystemTray" : "Taispeáin Franz i dtráidire an chórais", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Teanga", "settings.app.form.minimizeToSystemTray" : "Íoslaghdaigh Franz chuig tráidire an chórais", "settings.app.form.runInBackground" : "Coimeád Franz sa chúlra nuair a dhúntar an fhuinneog", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Cuir seirbhís nua leis", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Díchumasaigh fógraí ⁊ fuaim", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Socruithe", "sidebar.unmuteApp" : "Cumasaigh fógraí ⁊ fuaim", diff --git a/src/i18n/locales/hr.json b/src/i18n/locales/hr.json index c99997d30..aac707c00 100644 --- a/src/i18n/locales/hr.json +++ b/src/i18n/locales/hr.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Add New Service...", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "View", "menu.view.enterFullScreen" : "Enter Full Screen", "menu.view.exitFullScreen" : "Exit Full Screen", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Omogući provjeru pravopisa", "settings.app.form.enableSystemTray" : "Prikaži aplikaciju u sustavskoj traci", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Jezik", "settings.app.form.minimizeToSystemTray" : "Smanji Franca u sustavsku traku", "settings.app.form.runInBackground" : "Neka se Franc održava u pozadini i ako je prozor zatvoren", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Dodajte novu uslugu", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Ugasi obavijesti i zvuk", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Postavke", "sidebar.unmuteApp" : "Omogući obavijesti i zvuk", diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json index aca8b2ca0..0d0ab7d58 100644 --- a/src/i18n/locales/hu.json +++ b/src/i18n/locales/hu.json @@ -4,8 +4,8 @@ "feature.announcements.changelog.headline" : "Franz {version} változásai", "feature.delayApp.headline" : "Kérjük vásárolj egy Franc Támogatói Liszencet a várakozás átugrásához", "feature.delayApp.text" : "A Franz továbblép {seconds} másodperc múlva.", - "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", - "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", + "feature.delayApp.trial.action" : "Igen, szeretném kipróbálni 14 napig a Franz Professional-t ingyen", + "feature.delayApp.trial.actionShort" : "Aktiválom az ingyenes Franz Professional próbaidőszakot", "feature.delayApp.trial.headline" : "Get the free Franz Professional 14 day trial and skip the line", "feature.delayApp.upgrade.action" : "Szerezz egy Franz Támogatói Liszencet", "feature.delayApp.upgrade.actionShort" : "Fiók frissítése", @@ -17,17 +17,17 @@ "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", "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", "feature.shareFranz.text" : "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", - "feature.todos.premium.info" : "Franz Todos are available to premium users now!", - "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", - "feature.todos.premium.upgrade" : "Upgrade Account", + "feature.todos.premium.info" : "A Franz Tennivalók már elérhető a prémium felhasználók részére!", + "feature.todos.premium.rollout" : "Mindenki másnak még egy kicsit tovább kell várni.", + "feature.todos.premium.upgrade" : "Fiók frissítése", "global.api.unhealthy" : "Nem lehet csatlakozni a Franz online szolgáltatáshoz", - "global.franzProRequired" : "Franz Professional Required", + "global.franzProRequired" : "Franz Professional szükséges", "global.notConnectedToTheInternet" : "Nincs hálózati kapcsolat.", "global.spellchecker.useDefault" : "Rendszer alapbeállítás használata ({default})", "global.spellchecking.autodetect" : "Automatikus nyelvdetektálás", "global.spellchecking.autodetect.short" : "Automatikus", "global.spellchecking.language" : "Helyesírás-ellenőrző nyelve", - "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", + "global.upgradeButton.upgradeToPro" : "Frissítés Franz Professional-ra", "import.headline" : "Importáld szolgáltatásaidat a Franz 4-ből", "import.notSupportedHeadline" : "Még nem támogatott szolgáltatások a Franz 5-ben", "import.skip.label" : "Manuálisan szeretném hozzáadni a szolgáltatásokat", @@ -37,7 +37,7 @@ "infobar.buttonReloadServices" : "Szolgáltatások újratöltése", "infobar.requiredRequestsFailed" : "Szolgáltatások és felhasználói információk nem tölthetők be", "infobar.servicesUpdated" : "A szolgáltatások frissítésre kerültek.", - "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", + "infobar.trialActivated" : "A próbaidőszak aktiválva. Jó mulatást!", "infobar.updateAvailable" : "Új frissítés érhető el a Franz-hoz.", "invite.email.label" : "Email cím", "invite.headline.friends" : "Hívd meg 3 barátodat vagy kollégádat", @@ -54,8 +54,8 @@ "login.serverLogout" : "A munkamenet lejárt, kérlek lépj be újra.", "login.submit.label" : "Bejelentkezés", "login.tokenExpired" : "A munkamenet lejárt, kérlek lépj be újra.", - "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", - "menu.Todoss.openTodosDrawer" : "Open Todos drawer", + "menu.Todoss.closeTodosDrawer" : "Tennivalók sáv bezárása", + "menu.Todoss.openTodosDrawer" : "Tennivalók sáv kinyitása", "menu.app.about" : "Névjegy", "menu.app.announcement" : "Mi újság?", "menu.app.checkForUpdates" : "Frissítések keresése", @@ -81,9 +81,9 @@ "menu.file" : "Fájl", "menu.help" : "Súgó", "menu.help.changelog" : "Változások listája", - "menu.help.debugInfo" : "Copy Debug Information", - "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", - "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", + "menu.help.debugInfo" : "Hibajelentés másolása", + "menu.help.debugInfoCopiedBody" : "A Hibajelentést a vágólapra másoltuk.", + "menu.help.debugInfoCopiedHeadline" : "Franz Hibajelentés", "menu.help.learnMore" : "Tudjon meg többet", "menu.help.privacy" : "Adatvédelmi Nyilatkozatot", "menu.help.support" : "Támogatás", @@ -92,7 +92,8 @@ "menu.services.activatePreviousService" : "Előző szolgáltatás", "menu.services.addNewService" : "Új szolgáltatás hozzáadása...", "menu.services.setNextServiceActive" : "Következő szolgáltatás", - "menu.todos" : "Todos", + "menu.todos" : "Tennivalók", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Nézet", "menu.view.enterFullScreen" : "Kilépés a teljes képernyős módból", "menu.view.exitFullScreen" : "Kilépés a teljes képernyős módból", @@ -102,7 +103,7 @@ "menu.view.toggleDevTools" : "Fejlesztői eszközök ki\/bekapcsolása", "menu.view.toggleFullScreen" : "Teljes képernyős mód ki\/bekapcsolása", "menu.view.toggleServiceDevTools" : "Szolgáltatás Fejlesztői Eszközök ki\/bekapcsolása", - "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", + "menu.view.toggleTodosDevTools" : "Tennivalók Fejlesztői Eszközök kapcsolása", "menu.view.zoomIn" : "Nagyítás", "menu.view.zoomOut" : "Kicsinyítés", "menu.window" : "Ablak", @@ -121,17 +122,17 @@ "password.submit.label" : "Küldés", "password.successInfo" : "Ellenőrizd az email fiókodat", "premiumFeature.button.upgradeAccount" : "Fiók frissítése", - "pricing.features.adFree" : "Forever ad-free", - "pricing.features.appDelays" : "No Waiting Screens", - "pricing.features.customWebsites" : "Add Custom Websites", - "pricing.features.onPremise" : "On-premise & other Hosted Services", - "pricing.features.serviceProxies" : "Service Proxies", - "pricing.features.spellchecker" : "Spellchecker support", - "pricing.features.teamManagement" : "Team Management", - "pricing.features.thirdPartyServices" : "Install 3rd party services", - "pricing.features.unlimitedServices" : "Add unlimited services", + "pricing.features.adFree" : "Hirdetésmentesség, örökre!", + "pricing.features.appDelays" : "Nincsenek töltőképernyők", + "pricing.features.customWebsites" : "Egyéni weboldalak megadása", + "pricing.features.onPremise" : "Helyi és egyéb távoli szolgáltatások", + "pricing.features.serviceProxies" : "Szolgáltatás Proxy-k", + "pricing.features.spellchecker" : "Helyesírás-ellenőrzés támogatás", + "pricing.features.teamManagement" : "Csapatkezelés", + "pricing.features.thirdPartyServices" : "Harmadik féltől származó szolgáltatások használata", + "pricing.features.unlimitedServices" : "Korlátlan szolgáltatások felvitele", "pricing.features.workspaces" : "Munkaterületek", - "pricing.plan.free" : "Franz Free", + "pricing.plan.free" : "Ingyenes Franz", "pricing.plan.legacy" : "Franz Premium", "pricing.plan.personal" : "Franz Personal", "pricing.plan.personal-monthly" : "Franz Personal Monthly", @@ -159,7 +160,7 @@ "service.errorHandler.headline" : "Jajj ne!", "service.errorHandler.message" : "Hiba", "service.errorHandler.text" : "{name} nem tudott betöltődni.", - "service.restrictedHandler.action" : "Upgrade Account", + "service.restrictedHandler.action" : "Fiók frissítése", "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", @@ -191,7 +192,7 @@ "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", "settings.account.tryReloadServices" : "Próbáld újra", "settings.account.tryReloadUserInfoRequest" : "Próbáld újra", - "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", + "settings.account.upgradeToPro.label" : "Frissítés Franz Professional-ra", "settings.account.userInfoRequestFailed" : "A felhasználói adatok betöltése sikertelen", "settings.account.yourLicense" : "Your Franz License", "settings.app.buttonClearAllCache" : "Gyorsítótár törlése", @@ -206,7 +207,8 @@ "settings.app.form.enableGPUAcceleration" : "Hardveres gyorsítás engedélyezése", "settings.app.form.enableSpellchecking" : "Helyesírás-ellenőrzés engedélyezése", "settings.app.form.enableSystemTray" : "Franz mutatása a tálcán", - "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.enableTodos" : "Franz Tennivalók bekapcsolása", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Nyelv", "settings.app.form.minimizeToSystemTray" : "Franz kicsinyítése a tálcára", "settings.app.form.runInBackground" : "Franz fusson a háttérben az ablak bezárásakor", @@ -235,13 +237,13 @@ "settings.navigation.yourServices" : "Szolgáltatásaid", "settings.navigation.yourWorkspaces" : "Munkaterületeid", "settings.recipes.all" : "Összes szolgáltatás", - "settings.recipes.custom" : "Custom Services", + "settings.recipes.custom" : "Egyéni szolgáltatások", "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", - "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", + "settings.recipes.customService.headline.customRecipes" : "Egyéni, harmadik féltől származó receptek", "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", - "settings.recipes.customService.intro" : "To add a custom service, copy the service recipe to:", - "settings.recipes.customService.openDevDocs" : "Developer Documentation", - "settings.recipes.customService.openFolder" : "Open folder", + "settings.recipes.customService.intro" : "Az egyéni szolgáltatás hozzáadásához, másoljuk be annak receptjét:", + "settings.recipes.customService.openDevDocs" : "Fejlesztői dokumentáció", + "settings.recipes.customService.openFolder" : "Könyvtár megnyitása", "settings.recipes.headline" : "Elérhető szolgáltatások", "settings.recipes.missingService" : "Hiányzik egy szolgáltatás?", "settings.recipes.mostPopular" : "Legnépszerűbb", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "A Franz Munkaterületek lehetővé teszik, hogy összpontosíts a jelenleg fontos dolgokra. Állítsd be a különböző szolgáltatáskészleteket és könnyedén válthatsz közöttük bármikor. Te döntöd el, hogy mely szolgáltatásokra van szükséged, mikor és hol, így segíthetünk abban, hogy a teljesítményed csúcsán maradhass, vagy ha csak akarod, egyszerűen kikapcsold a munkával kapcsolatos dolgokat.", "settings.workspaces.workspacesRequestFailed" : "Nem sikerült betölteni a munkaterületeket", "sidebar.addNewService" : "Szolgáltatás hozzáadása", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Munkaterület panel bezárása", "sidebar.muteApp" : "Értesítések és hangok letiltása", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Munkaterület panel megnyitása", "sidebar.settings" : "Beállítások", "sidebar.unmuteApp" : "Értesítések és hangok engedélyezése", diff --git a/src/i18n/locales/id.json b/src/i18n/locales/id.json index edf397a35..4ea421df4 100644 --- a/src/i18n/locales/id.json +++ b/src/i18n/locales/id.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Tambahkan Layanan Baru...", "menu.services.setNextServiceActive" : "Aktifkan layanan berikutnya", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Tampilan", "menu.view.enterFullScreen" : "Masuk ke Mode Layar Penuh", "menu.view.exitFullScreen" : "Keluar dari Layar Penuh", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Aktifkan pemeriksaan ejaan", "settings.app.form.enableSystemTray" : "Tampilkan Franz di baki sistem", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Bahasa", "settings.app.form.minimizeToSystemTray" : "Perkecil Franz ke baki sistem", "settings.app.form.runInBackground" : "Tetap jalankan Franz di latar belakang saat menutup jendela", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Ruang Kerja Franz dapat digunakan untuk tetap fokus pada hal penting saat ini. Siapkan sekelompok layanan yang berbeda dan dengan mudah beralih ke yang lain. Anda yang memutuskan layanan mana yang Anda perlukan dan kapan, agar kami bisa membantu Anda tetap berada di garis depan - atau dengan mudah mengakhiri hari kerja kapan saja Anda inginkan.", "settings.workspaces.workspacesRequestFailed" : "Tidak dapat memuat ruang kerja Anda", "sidebar.addNewService" : "Tambahkan layanan baru", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Tutup laci ruang kerja", "sidebar.muteApp" : "Nonaktifkan pemberitahuan & audio", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Buka laci ruang kerja", "sidebar.settings" : "Pengaturan", "sidebar.unmuteApp" : "Aktifkan pemberitahuan", diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 0d38d916b..e8aff907d 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Aggiungi Nuovo Servizio...", "menu.services.setNextServiceActive" : "Attiva servizio seguente", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Visualizza", "menu.view.enterFullScreen" : "Visualizza a Schermo Intero", "menu.view.exitFullScreen" : "Esci da Schermo Intero", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Attiva controllo ortografico", "settings.app.form.enableSystemTray" : "Mostra Franz nell'area di notifica", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Lingua", "settings.app.form.minimizeToSystemTray" : "Minimizza Franz nell'area di notifica", "settings.app.form.runInBackground" : "Mantieni Franz in esecuzione quando chiudi la finestra", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Franz Workspaces ti permette di concentrarti su ciò che è importante. Configura diversi insiemi di servizi e passa facilmente da uno all’altro quando vuoi. Decidi di quali servizi hai bisogno quando e dove, così che ti possiamo aiutare a dare sempre il massimo - o semplicemente staccare dal lavoro quando ne hai bisogno.", "settings.workspaces.workspacesRequestFailed" : "Non è possibile caricare i tuoi workspaces", "sidebar.addNewService" : "Aggiungi un nuovo servizio", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Chiudi il menu dei workspace", "sidebar.muteApp" : "Disattiva notifiche e audio", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Apri il menu dei workspace", "sidebar.settings" : "Impostazioni", "sidebar.unmuteApp" : "Attiva notifiche e audio", diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json index dfd148623..ae2725fd8 100644 --- a/src/i18n/locales/ja.json +++ b/src/i18n/locales/ja.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "サービスを追加", "menu.services.setNextServiceActive" : "次のサービスを有効にする", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "表示", "menu.view.enterFullScreen" : "全画面表示", "menu.view.exitFullScreen" : "全画面表示を終了する", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "スペルチェックを有効にする", "settings.app.form.enableSystemTray" : "Franzをシステムトレイに表示する", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "言語", "settings.app.form.minimizeToSystemTray" : "Franzをシステムトレイに最小化する", "settings.app.form.runInBackground" : "ウインドウを閉じた際にFranzをバックグラウンドで実行させておく", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "サービスを追加", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "通知とオーディオを無効化", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "設定", "sidebar.unmuteApp" : "通知とオーディオを有効化", diff --git a/src/i18n/locales/ka.json b/src/i18n/locales/ka.json index 91b6beb51..32792017b 100644 --- a/src/i18n/locales/ka.json +++ b/src/i18n/locales/ka.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Add New Service...", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "View", "menu.view.enterFullScreen" : "Enter Full Screen", "menu.view.exitFullScreen" : "Exit Full Screen", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Enable spell checking", "settings.app.form.enableSystemTray" : "აჩვენეთ Franz სისტემის უჯრაში", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "ენა", "settings.app.form.minimizeToSystemTray" : "ჩაკეცეთ Franz სისტემის უჯრაში", "settings.app.form.runInBackground" : "დატოვეთ Franz გაშვებული როდესაც ფანჯარა დაიხურება", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Add new service", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Disable notifications & audio", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "პარამეტრები", "sidebar.unmuteApp" : "Enable notifications & audio", diff --git a/src/i18n/locales/nl-BE.json b/src/i18n/locales/nl-BE.json index 44d56914b..22b9551a7 100644 --- a/src/i18n/locales/nl-BE.json +++ b/src/i18n/locales/nl-BE.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Nieuwe service toevoegen...", "menu.services.setNextServiceActive" : "Volgende dienst activeren", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Weergave", "menu.view.enterFullScreen" : "Volledig scherm openen", "menu.view.exitFullScreen" : "Volledig scherm verlaten", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Spellingcontrole inschakelen", "settings.app.form.enableSystemTray" : "Toon Franz in de systeembalk", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Taal", "settings.app.form.minimizeToSystemTray" : "Minimaliseer Franz naar de systeembalk", "settings.app.form.runInBackground" : "Houd Franz op de achtergrond wanneer het venster gesloten wordt", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Kan je werkruimtes niet laden", "sidebar.addNewService" : "Nieuw service toevoegen", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Werkruimtelade sluiten", "sidebar.muteApp" : "Berichten & geluid uitschakelen", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Werkruimtelade openen", "sidebar.settings" : "Instellingen", "sidebar.unmuteApp" : "Berichten & geluid inschakelen", diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json index c0cf80400..96dd7cc04 100644 --- a/src/i18n/locales/nl.json +++ b/src/i18n/locales/nl.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Nieuwe service toevoegen...", "menu.services.setNextServiceActive" : "Activeer volgende service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Weergave", "menu.view.enterFullScreen" : "Gebruik volledig scherm", "menu.view.exitFullScreen" : "Volledig scherm verlaten", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Zet spellingcontrole aan", "settings.app.form.enableSystemTray" : "Pictogram voor Franz in systeemvak tonen", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Taal", "settings.app.form.minimizeToSystemTray" : "Minimaliseer Franz naar systeemvak", "settings.app.form.runInBackground" : "Houd Franz open op de achtergrond wanneer het venster gesloten wordt", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Franz werkruimtes laat je aandacht geven aan wat nu belangrijk is. Maak verschillende sets van services aan en schakel wanneer je wilt tussen de verschillende sets. Jij beslist welke services je wanneer en waar nodig hebt. Zo helpen wij jou je focus te behouden - of net zo gemakkelijk te switchen van werk naar ontspanning.", "settings.workspaces.workspacesRequestFailed" : "Kan jouw werkruimtes niet laden", "sidebar.addNewService" : "Voeg service toe", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Werkruimte pagina sluiten", "sidebar.muteApp" : "Berichten & geluid uitschakelen", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Werkruimte pagina openen", "sidebar.settings" : "Instellingen", "sidebar.unmuteApp" : "Berichten & geluid inschakelen", diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json index 486a1e8d0..0c5eee9e6 100644 --- a/src/i18n/locales/pl.json +++ b/src/i18n/locales/pl.json @@ -4,30 +4,30 @@ "feature.announcements.changelog.headline" : "Zmiany we Franzie {version}", "feature.delayApp.headline" : "Aby nie czekać, kup licencję Franz Supporter", "feature.delayApp.text" : "Franz będzie kontynuował za {seconds} sekund.", - "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", - "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", + "feature.delayApp.trial.action" : "Tak, chcę darmową 14-dniową wersję próbną Franz Professional", + "feature.delayApp.trial.actionShort" : "Aktywuj darmową wersję próbną Franz Professional", "feature.delayApp.trial.headline" : "Get the free Franz Professional 14 day trial and skip the line", "feature.delayApp.upgrade.action" : "Uzyskaj licencję Franz Supporter", "feature.delayApp.upgrade.actionShort" : "Ulepsz swoje konto", - "feature.serviceLimit.limitReached" : "You have added {amount} out of {limit} services that are included in your plan. Please upgrade your account to add more services.", + "feature.serviceLimit.limitReached" : "Dodałeś {amount} z {limit} usług, które oferuje twój plan. Ulepsz swoje konto, aby dodać więcej usług.", "feature.shareFranz.action.email" : "Wyślij jako email", "feature.shareFranz.action.facebook" : "Udostępnij na Facebooku", "feature.shareFranz.action.twitter" : "Udostępnij na Twitterze", "feature.shareFranz.headline" : "Franz jest lepszy, gdy tworzymy go razem!", - "feature.shareFranz.shareText.email" : "Dodałem {count} serwisów do Franza! Pobierz darmową aplikację z WhatsApp, Messenger, Slack, Skype i innymi na www.meetfranz.com", - "feature.shareFranz.shareText.twitter" : "Dodałem {count} serwisów do Franza! Pobierz darmową aplikację z WhatsApp, Messenger, Slack, Skype i innymi na www.meetfranz.com \/cc @FranzMessenger", + "feature.shareFranz.shareText.email" : "Dodałem {count} usług do Franza! Pobierz darmową aplikację z WhatsApp, Messenger, Slack, Skype i innymi na www.meetfranz.com", + "feature.shareFranz.shareText.twitter" : "Dodałem {count} usług do Franza! Pobierz darmową aplikację z WhatsApp, Messenger, Slack, Skype i innymi na www.meetfranz.com \/cc @FranzMessenger", "feature.shareFranz.text" : "Powiedz znajomym i kolegom o tym, jak odlotowy jest Franz i pomóż nam go spopularyzować.", - "feature.todos.premium.info" : "Franz Todos are available to premium users now!", - "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", - "feature.todos.premium.upgrade" : "Upgrade Account", + "feature.todos.premium.info" : "Listy zadań Franz są już dostępne dla użytkowników premium!", + "feature.todos.premium.rollout" : "Wszyscy inni będą musieli zaczekać nieco dłużej.", + "feature.todos.premium.upgrade" : "Ulepsz konto", "global.api.unhealthy" : "Nie można połączyć się z usługami Franz online", - "global.franzProRequired" : "Franz Professional Required", + "global.franzProRequired" : "Wymagany Franz Professional", "global.notConnectedToTheInternet" : "Nie masz połączenia z Internetem.", "global.spellchecker.useDefault" : "Użyj domyślnego dla systemu ({default})", "global.spellchecking.autodetect" : "Automatycznie wykryj język", "global.spellchecking.autodetect.short" : "Automatycznie", "global.spellchecking.language" : "Język sprawdzania pisowni", - "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", + "global.upgradeButton.upgradeToPro" : "Ulepsz konto do Franz Professional", "import.headline" : "Importuj usługi Franz 4", "import.notSupportedHeadline" : "Usługi, które nie są jeszcze obsługiwane w Franz 5", "import.skip.label" : "Chcę dodać usługi samodzielnie", @@ -54,8 +54,8 @@ "login.serverLogout" : "Twoja sesja wygasła, zaloguj się ponownie.", "login.submit.label" : "Zaloguj się", "login.tokenExpired" : "Twoja sesja wygasła, zaloguj się ponownie.", - "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", - "menu.Todoss.openTodosDrawer" : "Open Todos drawer", + "menu.Todoss.closeTodosDrawer" : "Zamknij zakładkę Lista zadań", + "menu.Todoss.openTodosDrawer" : "Otwórz zakładkę Lista zadań", "menu.app.about" : "O Franz", "menu.app.announcement" : "Co słychać?", "menu.app.checkForUpdates" : "Sprawdź aktualizacje", @@ -81,18 +81,19 @@ "menu.file" : "Plik", "menu.help" : "Pomoc", "menu.help.changelog" : "Lista zmian", - "menu.help.debugInfo" : "Copy Debug Information", - "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", - "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", + "menu.help.debugInfo" : "Skopiuj informacje debugowania", + "menu.help.debugInfoCopiedBody" : "Informacje debugowania zostały skopiowane do schowka.", + "menu.help.debugInfoCopiedHeadline" : "Informacje debugowania Franz", "menu.help.learnMore" : "Dowiedz się więcej", "menu.help.privacy" : "Polityka prywatności", "menu.help.support" : "Wsparcie", "menu.help.tos" : "Warunki świadczenia usług", "menu.services" : "Usługi", - "menu.services.activatePreviousService" : "Włącz poprzedni serwis", + "menu.services.activatePreviousService" : "Poprzednia usługa", "menu.services.addNewService" : "Dodaj nową usługę...", - "menu.services.setNextServiceActive" : "Włącz kolejny serwis", - "menu.todos" : "Todos", + "menu.services.setNextServiceActive" : "Następna usługa", + "menu.todos" : "Lista zadań", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Widok", "menu.view.enterFullScreen" : "Włącz tryb pełnoekranowy", "menu.view.exitFullScreen" : "Zakończ tryb pełnoekranowy", @@ -102,7 +103,7 @@ "menu.view.toggleDevTools" : "Pokaż narzędzia developerskie", "menu.view.toggleFullScreen" : "Przełącz tryb pełnoekranowy", "menu.view.toggleServiceDevTools" : "Włącz narzędzia developerskie usługi", - "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", + "menu.view.toggleTodosDevTools" : "Przełącz narzędzia deweloperskie Listy zadań", "menu.view.zoomIn" : "Powiększ", "menu.view.zoomOut" : "Pomniejsz", "menu.window" : "Okno", @@ -120,16 +121,16 @@ "password.noUser" : "Nie znaleziono użytkownika z takim adresem email", "password.submit.label" : "Wyślij", "password.successInfo" : "Proszę sprawdzić swój email", - "premiumFeature.button.upgradeAccount" : "Ulepsz swoje konto", - "pricing.features.adFree" : "Forever ad-free", + "premiumFeature.button.upgradeAccount" : "Ulepsz konto", + "pricing.features.adFree" : "Na zawsze bez reklam", "pricing.features.appDelays" : "No Waiting Screens", - "pricing.features.customWebsites" : "Add Custom Websites", + "pricing.features.customWebsites" : "Dodawanie dowolnych stron internetowych", "pricing.features.onPremise" : "On-premise & other Hosted Services", "pricing.features.serviceProxies" : "Service Proxies", - "pricing.features.spellchecker" : "Spellchecker support", - "pricing.features.teamManagement" : "Team Management", - "pricing.features.thirdPartyServices" : "Install 3rd party services", - "pricing.features.unlimitedServices" : "Add unlimited services", + "pricing.features.spellchecker" : "Obsługa sprawdzania pisowni", + "pricing.features.teamManagement" : "Zarządzanie zespołem", + "pricing.features.thirdPartyServices" : "Instalacja zewnętrznych usług", + "pricing.features.unlimitedServices" : "Dodawanie nielimitowanych usług", "pricing.features.workspaces" : "Obszary robocze", "pricing.plan.free" : "Franz Free", "pricing.plan.legacy" : "Franz Premium", @@ -159,7 +160,7 @@ "service.errorHandler.headline" : "O nie!", "service.errorHandler.message" : "Błąd", "service.errorHandler.text" : "Nie udało się załadować {name}.", - "service.restrictedHandler.action" : "Upgrade Account", + "service.restrictedHandler.action" : "Ulepsz konto", "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", @@ -191,7 +192,7 @@ "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", "settings.account.tryReloadServices" : "Spróbuj ponownie", "settings.account.tryReloadUserInfoRequest" : "Spróbuj ponownie", - "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", + "settings.account.upgradeToPro.label" : "Ulepsz konto do Franz Professional", "settings.account.userInfoRequestFailed" : "Nie można wczytać informacji o użytkowniku", "settings.account.yourLicense" : "Your Franz License", "settings.app.buttonClearAllCache" : "Wyczyść pamięć podręczną (cache)", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Włącz sprawdzanie pisowni", "settings.app.form.enableSystemTray" : "Pokaż Franza w obszarze powiadomień", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Język", "settings.app.form.minimizeToSystemTray" : "Zminimalizuj aplikację Franz", "settings.app.form.runInBackground" : "Zachowaj aplikację Franz w tle po zamknięciu okna", @@ -219,7 +221,7 @@ "settings.app.headlineLanguage" : "Język", "settings.app.headlineUpdates" : "Aktualizacje", "settings.app.languageDisclaimer" : "Oficjalnymi językami są Angielski i Niemiecki. Inne języki są tłumaczone przez społeczność Franz.", - "settings.app.restartRequired" : "Zmiany. wymagają ponownego uruchomienia", + "settings.app.restartRequired" : "Zmiany wymagają ponownego uruchomienia", "settings.app.subheadlineCache" : "Pamięć podręczna", "settings.app.translationHelp" : "Pomóż nam tłumaczyć Franz na Twój język.", "settings.app.updateStatusAvailable" : "Dostępna aktualizacja, pobieram...", @@ -235,7 +237,7 @@ "settings.navigation.yourServices" : "Twoje usługi", "settings.navigation.yourWorkspaces" : "Twoje obszary robocze", "settings.recipes.all" : "Wszystkie usługi", - "settings.recipes.custom" : "Custom Services", + "settings.recipes.custom" : "Własne usługi", "settings.recipes.customService.headline.communityRecipes" : "Community 3rd Party Recipes", "settings.recipes.customService.headline.customRecipes" : "Custom 3rd Party Recipes", "settings.recipes.customService.headline.devRecipes" : "Your Development Service Recipes", @@ -247,7 +249,7 @@ "settings.recipes.mostPopular" : "Najpopularniejsze", "settings.recipes.nothingFound" : "Żadna usługa nie została znaleziona.", "settings.recipes.servicesSuccessfulAddedInfo" : "Usługa została dodana pomyślnie", - "settings.searchService" : "Wyszukaj serwis", + "settings.searchService" : "Wyszukaj usługę", "settings.service.error.goBack" : "Wróć do usług", "settings.service.error.headline" : "Błąd", "settings.service.error.message" : "Nie można wczytać przepisu usługi.", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Obszary robocze programu Franz pozawala Ci na skupieniu się na tym co ważne w danym momencie. Ustaw różne zestawy usług i przełączaj się między nimi w łatwiejszy sposób w dowolnym momencie. Decyduj, które usługi potrzebujesz , więc pomagamy Ci pozostawać na szczycie gry - lub łatwiej wyłączyć się z pracy kiedy tego potrzebujesz.", "settings.workspaces.workspacesRequestFailed" : "Nie można załadować obszaru roboczego", "sidebar.addNewService" : "Dodaj kolejną usługę", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Zamknij edycję obszaru roboczego", "sidebar.muteApp" : "Wyłącz powiadomienia i dźwięki", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Otwórz edycję obszaru roboczego", "sidebar.settings" : "Ustawienia", "sidebar.unmuteApp" : "Włącz powiadomienia i dźwięki", diff --git a/src/i18n/locales/pt-BR.json b/src/i18n/locales/pt-BR.json index f5c0b6140..11f32c067 100644 --- a/src/i18n/locales/pt-BR.json +++ b/src/i18n/locales/pt-BR.json @@ -4,12 +4,12 @@ "feature.announcements.changelog.headline" : "Mudanças no Franz {version}", "feature.delayApp.headline" : "Por favor, adquira uma licença para pular o tempo de espera", "feature.delayApp.text" : "Franz continuará em {seconds} segundos.", - "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", - "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", + "feature.delayApp.trial.action" : "Sim, eu quero o período de testes gratuito de 14 dias do Franz Professional", + "feature.delayApp.trial.actionShort" : "Ativar período de testes gratuito do Franz Professional", "feature.delayApp.trial.headline" : "Get the free Franz Professional 14 day trial and skip the line", "feature.delayApp.upgrade.action" : "Adquira uma licença de suporte Franz", "feature.delayApp.upgrade.actionShort" : "Atualizar conta", - "feature.serviceLimit.limitReached" : "You have added {amount} out of {limit} services that are included in your plan. Please upgrade your account to add more services.", + "feature.serviceLimit.limitReached" : "Você adicionou {amount} serviços de um total de {limit} que estão inclusos no seu plano. Por favor, atualize sua conta para adicionar mais serviços.", "feature.shareFranz.action.email" : "Enviar por e-mail", "feature.shareFranz.action.facebook" : "Compartilhar no Facebook", "feature.shareFranz.action.twitter" : "Compartilhar no Twitter", @@ -17,8 +17,8 @@ "feature.shareFranz.shareText.email" : "Eu adicionei {count} serviços ao Franz! Adquira o aplicativo gratuito para WhatsApp, Messenger, Slack, Skype e mais em www.meetfranz.com", "feature.shareFranz.shareText.twitter" : "Eu adicionei uma contagem de serviços para o Franz! Baixe gratuitamente o aplicativo para WhatsApp, Messenger, Slack, Skype e outros em www.meetfranz.com \/cc @FranzMessenger", "feature.shareFranz.text" : "Conte aos seus amigos e colegas o quanto incrível o Franz é e nos ajude a espalhar a mensagem. ", - "feature.todos.premium.info" : "Franz Todos are available to premium users now!", - "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", + "feature.todos.premium.info" : "As Listas de Tarefa do Franz estão disponíveis para usuários premium!", + "feature.todos.premium.rollout" : "As outras pessoas terão que esperar um pouquinho mais.", "feature.todos.premium.upgrade" : "Upgrade Account", "global.api.unhealthy" : "Não foi possível conectar-se aos serviços on-line do Franz.", "global.franzProRequired" : "Franz Professional Required", @@ -27,7 +27,7 @@ "global.spellchecking.autodetect" : "Detectar idioma automaticamente.", "global.spellchecking.autodetect.short" : "Automático", "global.spellchecking.language" : "Idioma para verificação ortográfica", - "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", + "global.upgradeButton.upgradeToPro" : "Atualizar para o Franz Profissional", "import.headline" : "Importe seus serviços do Franz 4 ", "import.notSupportedHeadline" : "Serviços ainda não suportados pelo Franz 5 ", "import.skip.label" : "Quero adicionar serviços manualmente", @@ -37,7 +37,7 @@ "infobar.buttonReloadServices" : "Recarregar serviços", "infobar.requiredRequestsFailed" : "Não foi possível carregar os serviços e informações de usuário", "infobar.servicesUpdated" : "Seus serviços foram atualizados.", - "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", + "infobar.trialActivated" : "O seu período de testes foi ativado com sucesso! Boas mensagens!", "infobar.updateAvailable" : "Uma nova atualização do Franz está disponível.", "invite.email.label" : "Endereço de E-mail", "invite.headline.friends" : "Convide 3 amigos ou colegas", @@ -54,8 +54,8 @@ "login.serverLogout" : "Sua sessão expirou, faça o login novamente.", "login.submit.label" : "Entrar", "login.tokenExpired" : "Sua sessão expirou, faça o login novamente.", - "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", - "menu.Todoss.openTodosDrawer" : "Open Todos drawer", + "menu.Todoss.closeTodosDrawer" : "Fechar a gaveta de Listas de Tarefa", + "menu.Todoss.openTodosDrawer" : "Abrir a gaveta de Listas de Tarefa", "menu.app.about" : "Sobre Franz", "menu.app.announcement" : "Quais as novidades?", "menu.app.checkForUpdates" : "Verificar se há atualizações", @@ -81,9 +81,9 @@ "menu.file" : "Arquivo", "menu.help" : "Ajuda", "menu.help.changelog" : "Registro de Alterações ", - "menu.help.debugInfo" : "Copy Debug Information", - "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", - "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", + "menu.help.debugInfo" : "Copiar Informações de Depuração", + "menu.help.debugInfoCopiedBody" : "As Informações de Depuração foram copiadas para a área de transferência.", + "menu.help.debugInfoCopiedHeadline" : "Informações de Depuração do Franz", "menu.help.learnMore" : "Saiba Mais ", "menu.help.privacy" : "Declaração de Privacidade ", "menu.help.support" : "Suporte", @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Adicionar Novo Serviço", "menu.services.setNextServiceActive" : "Pular para próximo serviço", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Visualizar ", "menu.view.enterFullScreen" : "Modo Tela Cheia", "menu.view.exitFullScreen" : "Sair da Tela Cheia", @@ -102,7 +103,7 @@ "menu.view.toggleDevTools" : "Ferramentas de Desenvolvedor", "menu.view.toggleFullScreen" : "Modo Tela Cheia", "menu.view.toggleServiceDevTools" : "Ferramentas de Serviços de Desenvolvedor", - "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", + "menu.view.toggleTodosDevTools" : "Ativar as Ferramentas de Desenvolvedor das Listas de Tarefas ", "menu.view.zoomIn" : "Ampliar", "menu.view.zoomOut" : "Reduzir", "menu.window" : "Modo Janela", @@ -122,31 +123,31 @@ "password.successInfo" : "Por favor, verifique o seu e-mail", "premiumFeature.button.upgradeAccount" : "Atualizar conta", "pricing.features.adFree" : "Forever ad-free", - "pricing.features.appDelays" : "No Waiting Screens", - "pricing.features.customWebsites" : "Add Custom Websites", + "pricing.features.appDelays" : "Sem Telas de Espera", + "pricing.features.customWebsites" : "Adicionar Websites Personalizados", "pricing.features.onPremise" : "On-premise & other Hosted Services", "pricing.features.serviceProxies" : "Service Proxies", "pricing.features.spellchecker" : "Spellchecker support", - "pricing.features.teamManagement" : "Team Management", + "pricing.features.teamManagement" : "Gestão de Time", "pricing.features.thirdPartyServices" : "Install 3rd party services", "pricing.features.unlimitedServices" : "Add unlimited services", - "pricing.features.workspaces" : "Workspaces", - "pricing.plan.free" : "Franz Free", + "pricing.features.workspaces" : "Áreas de Trabalho", + "pricing.plan.free" : "Franz Gratuito", "pricing.plan.legacy" : "Franz Premium", - "pricing.plan.personal" : "Franz Personal", - "pricing.plan.personal-monthly" : "Franz Personal Monthly", - "pricing.plan.personal-yearly" : "Franz Personal Yearly", - "pricing.plan.pro" : "Franz Professional", - "pricing.plan.pro-monthly" : "Franz Professional Monthly", - "pricing.plan.pro-yearly" : "Franz Professional Yearly", - "pricing.trial.cta.accept" : "Yes, upgrade my account to Franz Professional", - "pricing.trial.cta.skip" : "Continue to Franz", - "pricing.trial.error" : "Sorry, we could not activate your trial!", - "pricing.trial.features.headline" : "Franz Professional includes:", - "pricing.trial.headline" : "Franz Professional", - "pricing.trial.subheadline" : "Your personal welcome offer:", - "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", - "pricing.trial.terms.headline" : "No strings attached", + "pricing.plan.personal" : "Franz Pessoal", + "pricing.plan.personal-monthly" : "Franz Pessoal Mensal", + "pricing.plan.personal-yearly" : "Franz Pessoal Anual", + "pricing.plan.pro" : "Franz Profissional", + "pricing.plan.pro-monthly" : "Franz Profissional Mensal", + "pricing.plan.pro-yearly" : "Franz Profissional Anual", + "pricing.trial.cta.accept" : "Sim, atualizar minha conta para o Franz Profissional", + "pricing.trial.cta.skip" : "Continuar para o Franz", + "pricing.trial.error" : "Desculpe, não conseguimos ativar o seu período de testes", + "pricing.trial.features.headline" : "Incluso no Franz Profissional:", + "pricing.trial.headline" : "Franz Profissional", + "pricing.trial.subheadline" : "Sua oferta pessoal de boas-vindas:", + "pricing.trial.terms.automaticTrialEnd" : "Seu período de testes encerra automaticamente em 14 dias", + "pricing.trial.terms.headline" : "Sem vínculos", "pricing.trial.terms.noCreditCard" : "No credit card required", "service.crashHandler.action" : "Recarregar {name}", "service.crashHandler.autoReload" : "Tentando reestabelecer {name} automaticamente em {seconds} segundos", @@ -191,7 +192,7 @@ "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", "settings.account.tryReloadServices" : "Tente novamente", "settings.account.tryReloadUserInfoRequest" : "Tentar novamente", - "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", + "settings.account.upgradeToPro.label" : "Atualizar para o Franz Profissional", "settings.account.userInfoRequestFailed" : "Não foi possível carregar as informações do usuário", "settings.account.yourLicense" : "Your Franz License", "settings.app.buttonClearAllCache" : "Limpar cache", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Ativar correção ortográfica", "settings.app.form.enableSystemTray" : "Exibir o Franz na barra de sistema", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Idioma", "settings.app.form.minimizeToSystemTray" : "Minimizar o Franz para a área de sistema", "settings.app.form.runInBackground" : "Manter o Franz no fundo quando fechar a janela", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "As áreas de trabalho do Franz permite você focar no que realmente é importante agora. Configure diferentes conjuntos de serviços e alterne entre eles facilmente em qualquer momento. Você decide quais serviços você precisa e onde deseja colocá-los, então nós podemos te ajudar a aumentar a produtividade de suas tarefas. Ou facilmente deletar os aplicativos que você nunca irá precisar.", "settings.workspaces.workspacesRequestFailed" : "Não foi possível carregar suas áreas de trabalho", "sidebar.addNewService" : "Adicionar novo serviço", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Fechar o menu da área de trabalho", "sidebar.muteApp" : "Desativar notificações e áudio", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Abrir menu da área de trabalho", "sidebar.settings" : "Ajustes", "sidebar.unmuteApp" : "Ativar notificações e áudio", @@ -349,7 +353,7 @@ "subscription.cta.choosePlan" : "Choose your plan", "subscription.includedProFeatures" : "The Franz Professional Plan includes:", "subscription.teaser.includedFeatures" : "Paid Franz Plans include:", - "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!", + "subscription.teaser.intro" : "O Franz 5 vem com uma variedade de novas funcionalidades para melhorar a sua comunicação diária - pilhas inclusas. Confira os nossos novos planos e encontre aquele que melhor serve para você!", "subscriptionPopup.buttonCancel" : "Cancelar", "subscriptionPopup.buttonDone" : "Feito", "tabs.item.deleteService" : "Excluir serviço", diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json index 36fcd6536..8ceddd53d 100644 --- a/src/i18n/locales/pt.json +++ b/src/i18n/locales/pt.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Adicionar Novo Serviço...", "menu.services.setNextServiceActive" : "Activar o próximo serviço", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Ver", "menu.view.enterFullScreen" : "Ativar Modo de Ecrã Completo", "menu.view.exitFullScreen" : "Sair do Modo de Ecrã Completo", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Ativar verificação ortográfica", "settings.app.form.enableSystemTray" : "Mostrar o Franz na barra do sistema", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Idioma", "settings.app.form.minimizeToSystemTray" : "Minimizar o Franz para a barra do sistema", "settings.app.form.runInBackground" : "Manter o Franz em segundo plano ao fechar a janela", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Adicionar um novo serviço", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Fechar a janela do Espaço de trabalho", "sidebar.muteApp" : "Desativar notificações e áudio", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Abrir a janela do Espaço de trabalho", "sidebar.settings" : "Definições", "sidebar.unmuteApp" : "Ativar notificações e áudio", diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json index 7f7b90a03..e674087a7 100644 --- a/src/i18n/locales/ru.json +++ b/src/i18n/locales/ru.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Добавить новый сервис...", "menu.services.setNextServiceActive" : "Активировать следующий сервис", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Вид", "menu.view.enterFullScreen" : "На весь экран", "menu.view.exitFullScreen" : "В окне", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Включить проверку правописания", "settings.app.form.enableSystemTray" : "Показывать Franz в системном трее", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Язык", "settings.app.form.minimizeToSystemTray" : "Сворачивать Franz в системный трей", "settings.app.form.runInBackground" : "Оставлять Franz в фоне при закрытии окна", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Добавить новый сервис", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Закрыть меню окружений", "sidebar.muteApp" : "Отключить уведомления и звук", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Открыть меню окружений", "sidebar.settings" : "Настройки", "sidebar.unmuteApp" : "Включить уведомления и звук", diff --git a/src/i18n/locales/sk.json b/src/i18n/locales/sk.json index 78eef9bca..f80680399 100644 --- a/src/i18n/locales/sk.json +++ b/src/i18n/locales/sk.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Pridať novú službu...", "menu.services.setNextServiceActive" : "Aktivujte ďalšiu službu", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Zobraziť", "menu.view.enterFullScreen" : "Na celú obrazovku", "menu.view.exitFullScreen" : "Ukončiť režim na celú obrazovku", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Zapnúť kontrolu pravopisu", "settings.app.form.enableSystemTray" : "Zobrazovať Franz v systémovej lište", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Jazyk", "settings.app.form.minimizeToSystemTray" : "Minimalizovať Franz do systémovej lišty", "settings.app.form.runInBackground" : "Po zatvorení okna ponechať Franz spustený na pozadí", @@ -328,8 +330,10 @@ "settings.workspaces.workspaceFeatureInfo" : "Franz Workspace vám umožňujú sústrediť sa na to, čo je práve dôležité. Nastavte si rozličné skupiny služieb a jednoducho medzi nimi kedykoľvek prepínajte. Vy rozhodujete ktoré služby, kedy a kde potrebujete, a my vám potom vieme pomôcť sústrediť sa na prácu - alebo jednoducho prepnúť z práce na čokoľvek iné.", "settings.workspaces.workspacesRequestFailed" : "Nebolo možné načítať vaše workspace", "sidebar.addNewService" : "Pridať novú službu", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Zavrieť workspace záložku", "sidebar.muteApp" : "Vypnúť upozornenia a zvuky", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Otvoriť workspace záložku", "sidebar.settings" : "Nastavenia", "sidebar.unmuteApp" : "Povoliť oznámenia a zvuky", diff --git a/src/i18n/locales/sr.json b/src/i18n/locales/sr.json index f5af4b64c..c35ebc3fb 100644 --- a/src/i18n/locales/sr.json +++ b/src/i18n/locales/sr.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Додај нову услугу", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Преглед", "menu.view.enterFullScreen" : "Отвори у целом екрану", "menu.view.exitFullScreen" : "Напусти цео екран", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Omogući provjeru pravopisa", "settings.app.form.enableSystemTray" : "Prikaži aplikaciju u sustavskoj traci", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Jezik", "settings.app.form.minimizeToSystemTray" : "Smanji Franca u sustavsku traku", "settings.app.form.runInBackground" : "Neka se Franc održava u pozadini i ako je prozor zatvoren", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Dodajte novu uslugu", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Онемогући обавештења и звукове", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Postavke", "sidebar.unmuteApp" : "Искључи обавештења и звукове", diff --git a/src/i18n/locales/tr.json b/src/i18n/locales/tr.json index 4dcf92307..27dabd54d 100644 --- a/src/i18n/locales/tr.json +++ b/src/i18n/locales/tr.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Yeni servis ekle...", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Görünüm", "menu.view.enterFullScreen" : "Tam Ekrana Geç", "menu.view.exitFullScreen" : "Tam Ekrandan Çık", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Yazım denetimini etkinleştir", "settings.app.form.enableSystemTray" : "Franz'ı sistem tepsisinde göster", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Dil", "settings.app.form.minimizeToSystemTray" : "Franz'ı sistem tepsisine küçült", "settings.app.form.runInBackground" : "Pencereyi kapatırken Franz'ı arka planda tut", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Yeni servis ekle", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Bildirimleri ve sesli uyarıları kapat", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Ayarlar", "sidebar.unmuteApp" : "Bildirimleri ve sesli uyarıları etkinleştir", diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json index 69acdff38..c3b54a14c 100644 --- a/src/i18n/locales/uk.json +++ b/src/i18n/locales/uk.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "Додати сервіс", "menu.services.setNextServiceActive" : "Activate next service", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Вигляд", "menu.view.enterFullScreen" : "Вікно на повний екран", "menu.view.exitFullScreen" : "Вийти з повного екрану", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "Увімкнути перевірку орфографії", "settings.app.form.enableSystemTray" : "Показувати Franz у системному лотку", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "Мова", "settings.app.form.minimizeToSystemTray" : "Мінімізувати Franz до системного лотка", "settings.app.form.runInBackground" : "Тримати Franz в фоні при закритті вікна", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "Додати новий сервіс", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "Close workspace drawer", "sidebar.muteApp" : "Вимкнути сповіщення та звуки", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "Open workspace drawer", "sidebar.settings" : "Налаштування", "sidebar.unmuteApp" : "Увімкнути сповіщення та звуки", diff --git a/src/i18n/locales/zh-TW.json b/src/i18n/locales/zh-TW.json index 4051b882c..f2b836505 100644 --- a/src/i18n/locales/zh-TW.json +++ b/src/i18n/locales/zh-TW.json @@ -93,6 +93,7 @@ "menu.services.addNewService" : "新增服務", "menu.services.setNextServiceActive" : "啟動下一個服務", "menu.todos" : "Todos", + "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "檢視", "menu.view.enterFullScreen" : "進入全螢幕模式", "menu.view.exitFullScreen" : "離開全螢幕模式", @@ -207,6 +208,7 @@ "settings.app.form.enableSpellchecking" : "啟用拼字檢查", "settings.app.form.enableSystemTray" : "在系統列顯示 Franz", "settings.app.form.enableTodos" : "Enable Franz Todos", + "settings.app.form.keepAllWorkspacesLoaded" : "Keep all workspaces loaded", "settings.app.form.language" : "語言", "settings.app.form.minimizeToSystemTray" : "最小化 Franz 到系統列", "settings.app.form.runInBackground" : "當關閉視窗時,保持 Franz 在背景運作", @@ -328,8 +330,10 @@ "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.", "settings.workspaces.workspacesRequestFailed" : "Could not load your workspaces", "sidebar.addNewService" : "新增新的服務", + "sidebar.closeTodosDrawer" : "Close Franz Todos", "sidebar.closeWorkspaceDrawer" : "關閉工作空間", "sidebar.muteApp" : "關閉通知和通知音效", + "sidebar.openTodosDrawer" : "Open Franz Todos", "sidebar.openWorkspaceDrawer" : "打開工作空間", "sidebar.settings" : "設定", "sidebar.unmuteApp" : "開啟通知和通知音效", -- cgit v1.2.3-70-g09d2 From 548ab6bd956ad32d532bd28965c2171ff7a8dd75 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 11:24:16 +0200 Subject: bump version to 5.3.2 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a917ba6f2..68a35f746 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [5.3.2](https://github.com/meetfranz/franz/compare/v5.3.1...v5.3.2) (2019-09-12) + + +### Features + +* **Todos:** Move todos toggle to sidebar ([7ffcf8c](https://github.com/meetfranz/franz/commit/7ffcf8c)) +* **Workspaces:** Add setting to keep all services in workspaces in background (avoid reload) ([@Wouter0100](https://github.com/Wouter0100)) ([ddab3a8](https://github.com/meetfranz/franz/commit/ddab3a8)) + + +### Bug Fixes + +* **Settings:** Don't toggle Todos on general settings changes ([@vantezzen](https://github.com/vantezzen)) ([a99371b](https://github.com/meetfranz/franz/commit/a99371b)) + + +### General + +* **Translations:** Improved translations. **[A million thanks to the amazing community. 🎉](http://i18n.meetfranz.com/)** + + + # [5.3.1](https://github.com/meetfranz/franz/compare/v5.3.0...v5.3.1) (2019-09-06) ### Features diff --git a/package.json b/package.json index 980242e5f..f1283ee9c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "franz", "productName": "Franz", "appId": "com.meetfranz.franz", - "version": "5.3.1", + "version": "5.3.2", "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", "copyright": "adlk x franz - Stefan Malzner", "main": "index.js", -- cgit v1.2.3-70-g09d2 From 60b726f14e475ba04964367d32dc06e4d0951a56 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:32:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index e8aff907d..b7d4c4533 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -5,7 +5,7 @@ "feature.delayApp.headline" : "Per favore, compra una Licenza Supporter di Franz per saltare l'attesa", "feature.delayApp.text" : "Franz continuerà tra {seconds} secondi.", "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", - "feature.delayApp.trial.actionShort" : "Activate the free Franz Professional trial", + "feature.delayApp.trial.actionShort" : "Attiva la prova gratuita di Franz Professional", "feature.delayApp.trial.headline" : "Get the free Franz Professional 14 day trial and skip the line", "feature.delayApp.upgrade.action" : "Ricevi una Licenza Supporter di Franz", "feature.delayApp.upgrade.actionShort" : "Effettua l'upgrade del tuo account", -- cgit v1.2.3-70-g09d2 From 568cb14c59c4a34f358fc438c7f7fa3945002a3c Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:34:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index b7d4c4533..3f20d767c 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -6,7 +6,7 @@ "feature.delayApp.text" : "Franz continuerà tra {seconds} secondi.", "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", "feature.delayApp.trial.actionShort" : "Attiva la prova gratuita di Franz Professional", - "feature.delayApp.trial.headline" : "Get the free Franz Professional 14 day trial and skip the line", + "feature.delayApp.trial.headline" : "Ottieni la prova gratuita per 14 giorni di Franz Professional e salta la coda", "feature.delayApp.upgrade.action" : "Ricevi una Licenza Supporter di Franz", "feature.delayApp.upgrade.actionShort" : "Effettua l'upgrade del tuo account", "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.", -- cgit v1.2.3-70-g09d2 From de6302c07b63d162bde0a2c375a41bc3a7babc6a Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:38:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 3f20d767c..8b0b79ca5 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -9,7 +9,7 @@ "feature.delayApp.trial.headline" : "Ottieni la prova gratuita per 14 giorni di Franz Professional e salta la coda", "feature.delayApp.upgrade.action" : "Ricevi una Licenza Supporter di Franz", "feature.delayApp.upgrade.actionShort" : "Effettua l'upgrade del tuo account", - "feature.serviceLimit.limitReached" : "You have added {amount} out of {limit} services that are included in your plan. Please upgrade your account to add more services.", + "feature.serviceLimit.limitReached" : "Hai aggiunto {amount} su {limit} servizi che sono inclusi nel tuo piano. Per favore aggiorna il tuo account per aggiungere più servizi.", "feature.shareFranz.action.email" : "Manda come email", "feature.shareFranz.action.facebook" : "Condividi su Facebook", "feature.shareFranz.action.twitter" : "Condividi su Twitter", -- cgit v1.2.3-70-g09d2 From d79b9eabbab2712171ab4f7a5a48cc1354cd5558 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:42:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 8b0b79ca5..379e13ec5 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -17,8 +17,8 @@ "feature.shareFranz.shareText.email" : "Ho aggiunto {count} nuovi servizi a Franz! Scarica ora l'app gratuita per WhatsApp, Messenger, Slack, Skype e altri all'indirizzo www.meetfranz.com", "feature.shareFranz.shareText.twitter" : "Ho aggiunto {count} nuovi servizi a Franz! Scarica ora l’app gratuita per WhatsApp, Messenger, Slack, Skype e altri all’indirizzo www.meetfranz.com \/cc @FranzMessenger", "feature.shareFranz.text" : "Di’ ai tuoi amici e colleghi quanto Franz è fantastico e aiutaci a diffondere la parola.", - "feature.todos.premium.info" : "Franz Todos are available to premium users now!", - "feature.todos.premium.rollout" : "Everyone else will have to wait a little longer.", + "feature.todos.premium.info" : "Le azioni Franz sono ora disponibili agli utenti premium!", + "feature.todos.premium.rollout" : "Chiunque altro dovrà aspettare un po' di più.", "feature.todos.premium.upgrade" : "Upgrade Account", "global.api.unhealthy" : "Impossibile connettersi ai servizi online di Franz", "global.franzProRequired" : "Franz Professional Required", -- cgit v1.2.3-70-g09d2 From e032c09782e96d80101de98c450c00f3cdc231a8 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:43:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 379e13ec5..3e6b19d4c 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -4,7 +4,7 @@ "feature.announcements.changelog.headline" : "Modifiche in Franz {Version}", "feature.delayApp.headline" : "Per favore, compra una Licenza Supporter di Franz per saltare l'attesa", "feature.delayApp.text" : "Franz continuerà tra {seconds} secondi.", - "feature.delayApp.trial.action" : "Yes, I want the free 14 day trial of Franz Professional", + "feature.delayApp.trial.action" : "Sì, voglio la prova gratuita di 14 giorni di Franz Professional", "feature.delayApp.trial.actionShort" : "Attiva la prova gratuita di Franz Professional", "feature.delayApp.trial.headline" : "Ottieni la prova gratuita per 14 giorni di Franz Professional e salta la coda", "feature.delayApp.upgrade.action" : "Ricevi una Licenza Supporter di Franz", -- cgit v1.2.3-70-g09d2 From 8c9bcffb7e59e2460f7ec611d755cc1b5c40905f Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:44:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 3e6b19d4c..fd13a80ed 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -9,7 +9,7 @@ "feature.delayApp.trial.headline" : "Ottieni la prova gratuita per 14 giorni di Franz Professional e salta la coda", "feature.delayApp.upgrade.action" : "Ricevi una Licenza Supporter di Franz", "feature.delayApp.upgrade.actionShort" : "Effettua l'upgrade del tuo account", - "feature.serviceLimit.limitReached" : "Hai aggiunto {amount} su {limit} servizi che sono inclusi nel tuo piano. Per favore aggiorna il tuo account per aggiungere più servizi.", + "feature.serviceLimit.limitReached" : "Hai aggiunto {amount} su {limit} servizi che sono inclusi nel tuo piano. Per favore potenzia il tuo account per aggiungere più servizi.", "feature.shareFranz.action.email" : "Manda come email", "feature.shareFranz.action.facebook" : "Condividi su Facebook", "feature.shareFranz.action.twitter" : "Condividi su Twitter", @@ -19,7 +19,7 @@ "feature.shareFranz.text" : "Di’ ai tuoi amici e colleghi quanto Franz è fantastico e aiutaci a diffondere la parola.", "feature.todos.premium.info" : "Le azioni Franz sono ora disponibili agli utenti premium!", "feature.todos.premium.rollout" : "Chiunque altro dovrà aspettare un po' di più.", - "feature.todos.premium.upgrade" : "Upgrade Account", + "feature.todos.premium.upgrade" : "Potenzia l'Account", "global.api.unhealthy" : "Impossibile connettersi ai servizi online di Franz", "global.franzProRequired" : "Franz Professional Required", "global.notConnectedToTheInternet" : "Non sei connesso a Internet.", @@ -160,7 +160,7 @@ "service.errorHandler.headline" : "Oh no!", "service.errorHandler.message" : "Errore", "service.errorHandler.text" : "{name} non si è caricato correttamente.", - "service.restrictedHandler.action" : "Upgrade Account", + "service.restrictedHandler.action" : "Potenzia l'Account", "service.restrictedHandler.customUrl.headline" : "Franz Professional Plan required", "service.restrictedHandler.customUrl.text" : "Please upgrade to the Franz Professional plan to use custom urls & self hosted services.", "service.restrictedHandler.serviceLimit.headline" : "You have reached your service limit.", -- cgit v1.2.3-70-g09d2 From cfbad68063738cb65b1af309a46e2b0f1a471d90 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:45:20 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index fd13a80ed..3cfa356e3 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -21,13 +21,13 @@ "feature.todos.premium.rollout" : "Chiunque altro dovrà aspettare un po' di più.", "feature.todos.premium.upgrade" : "Potenzia l'Account", "global.api.unhealthy" : "Impossibile connettersi ai servizi online di Franz", - "global.franzProRequired" : "Franz Professional Required", + "global.franzProRequired" : "Richiesto Franz Professional", "global.notConnectedToTheInternet" : "Non sei connesso a Internet.", "global.spellchecker.useDefault" : "Usa le impostazioni predefinite di sistema ({default})", "global.spellchecking.autodetect" : "Rileva automaticamente la lingua", "global.spellchecking.autodetect.short" : "Automatico", "global.spellchecking.language" : "Lingua per controllo ortografico", - "global.upgradeButton.upgradeToPro" : "Upgrade to Franz Professional", + "global.upgradeButton.upgradeToPro" : "Aggiorna a Franz Professional", "import.headline" : "Importa i servizi di Franz 4", "import.notSupportedHeadline" : "Servizi non ancora supportati in Franz 5", "import.skip.label" : "Voglio aggiungere i servizi manualmente", @@ -192,7 +192,7 @@ "settings.account.trialUpdateBillingInfo" : "Please update your billing info to continue using {license} after your trial period.", "settings.account.tryReloadServices" : "Prova di nuovo", "settings.account.tryReloadUserInfoRequest" : "Riprova", - "settings.account.upgradeToPro.label" : "Upgrade to Franz Professional", + "settings.account.upgradeToPro.label" : "Aggiorna a Franz Professional", "settings.account.userInfoRequestFailed" : "Impossibile caricare le informazioni dell'utente.", "settings.account.yourLicense" : "Your Franz License", "settings.app.buttonClearAllCache" : "Svuota la cache", -- cgit v1.2.3-70-g09d2 From f3bd56b2ef3e4f018bed51f4a96c01e91ec6877e Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:46:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 3cfa356e3..2fbacb094 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -37,7 +37,7 @@ "infobar.buttonReloadServices" : "Ricarica servizi", "infobar.requiredRequestsFailed" : "Impossibile caricare i servizi e le informazioni dell'utente", "infobar.servicesUpdated" : "I tuoi servizi sono stati aggiornati.", - "infobar.trialActivated" : "Your trial was successfully activated. Happy messaging!", + "infobar.trialActivated" : "La tua prova è stata attivata con successo. Buona chat!", "infobar.updateAvailable" : "È disponibile un nuovo aggiornamento di Franz.", "invite.email.label" : "Indirizzo email", "invite.headline.friends" : "Invita 3 dei tuoi amici o colleghi", @@ -54,8 +54,8 @@ "login.serverLogout" : "La tua sessione è scaduta, per favore accedi di nuovo.", "login.submit.label" : "Accedi", "login.tokenExpired" : "La tua sessione è scaduta, per favore accedi di nuovo.", - "menu.Todoss.closeTodosDrawer" : "Close Todos drawer", - "menu.Todoss.openTodosDrawer" : "Open Todos drawer", + "menu.Todoss.closeTodosDrawer" : "Chiudi il cassetto delle azioni", + "menu.Todoss.openTodosDrawer" : "Apri il cassetto delle azioni", "menu.app.about" : "Info su Franz", "menu.app.announcement" : "Cosa c'è di nuovo?", "menu.app.checkForUpdates" : "Controlla aggiornamenti", -- cgit v1.2.3-70-g09d2 From af0d02d8407fb00d87fc8622c78576cf33e616dd Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:47:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 2fbacb094..2fc4e64a5 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -81,8 +81,8 @@ "menu.file" : "File", "menu.help" : "Aiuto", "menu.help.changelog" : "Changelog", - "menu.help.debugInfo" : "Copy Debug Information", - "menu.help.debugInfoCopiedBody" : "Your Debug Information has been copied to your clipboard.", + "menu.help.debugInfo" : "Copia informazioni di debug", + "menu.help.debugInfoCopiedBody" : "Le tue informazioni di debug sono state copiate nella tua clipboard.", "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", "menu.help.learnMore" : "Maggiori Informazioni", "menu.help.privacy" : "Dichiarazione della Privacy", -- cgit v1.2.3-70-g09d2 From 962acc4f189f77fc19e6bdee9361e18d5a920c13 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:48:20 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 2fc4e64a5..2dfab6bf8 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -83,7 +83,7 @@ "menu.help.changelog" : "Changelog", "menu.help.debugInfo" : "Copia informazioni di debug", "menu.help.debugInfoCopiedBody" : "Le tue informazioni di debug sono state copiate nella tua clipboard.", - "menu.help.debugInfoCopiedHeadline" : "Franz Debug Information", + "menu.help.debugInfoCopiedHeadline" : "Informazioni di debug di Franz", "menu.help.learnMore" : "Maggiori Informazioni", "menu.help.privacy" : "Dichiarazione della Privacy", "menu.help.support" : "Supporto", @@ -92,7 +92,7 @@ "menu.services.activatePreviousService" : "Attiva servizio precedente", "menu.services.addNewService" : "Aggiungi Nuovo Servizio...", "menu.services.setNextServiceActive" : "Attiva servizio seguente", - "menu.todos" : "Todos", + "menu.todos" : "Azioni", "menu.todos.enableTodos" : "Enable Todos", "menu.view" : "Visualizza", "menu.view.enterFullScreen" : "Visualizza a Schermo Intero", -- cgit v1.2.3-70-g09d2 From d79564fbcac2ca5ffdd747c2992904d544755bfa Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:49:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 2dfab6bf8..27b92caee 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -93,7 +93,7 @@ "menu.services.addNewService" : "Aggiungi Nuovo Servizio...", "menu.services.setNextServiceActive" : "Attiva servizio seguente", "menu.todos" : "Azioni", - "menu.todos.enableTodos" : "Enable Todos", + "menu.todos.enableTodos" : "Abilita azioni", "menu.view" : "Visualizza", "menu.view.enterFullScreen" : "Visualizza a Schermo Intero", "menu.view.exitFullScreen" : "Esci da Schermo Intero", -- cgit v1.2.3-70-g09d2 From d6d0a91791a79cb19675a1f278d6f62f56f22dcc Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:50:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 27b92caee..00292147c 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -17,7 +17,7 @@ "feature.shareFranz.shareText.email" : "Ho aggiunto {count} nuovi servizi a Franz! Scarica ora l'app gratuita per WhatsApp, Messenger, Slack, Skype e altri all'indirizzo www.meetfranz.com", "feature.shareFranz.shareText.twitter" : "Ho aggiunto {count} nuovi servizi a Franz! Scarica ora l’app gratuita per WhatsApp, Messenger, Slack, Skype e altri all’indirizzo www.meetfranz.com \/cc @FranzMessenger", "feature.shareFranz.text" : "Di’ ai tuoi amici e colleghi quanto Franz è fantastico e aiutaci a diffondere la parola.", - "feature.todos.premium.info" : "Le azioni Franz sono ora disponibili agli utenti premium!", + "feature.todos.premium.info" : "Le attività Franz sono ora disponibili agli utenti premium!", "feature.todos.premium.rollout" : "Chiunque altro dovrà aspettare un po' di più.", "feature.todos.premium.upgrade" : "Potenzia l'Account", "global.api.unhealthy" : "Impossibile connettersi ai servizi online di Franz", @@ -54,8 +54,8 @@ "login.serverLogout" : "La tua sessione è scaduta, per favore accedi di nuovo.", "login.submit.label" : "Accedi", "login.tokenExpired" : "La tua sessione è scaduta, per favore accedi di nuovo.", - "menu.Todoss.closeTodosDrawer" : "Chiudi il cassetto delle azioni", - "menu.Todoss.openTodosDrawer" : "Apri il cassetto delle azioni", + "menu.Todoss.closeTodosDrawer" : "Chiudi il cassetto delle attività", + "menu.Todoss.openTodosDrawer" : "Apri il cassetto delle attività", "menu.app.about" : "Info su Franz", "menu.app.announcement" : "Cosa c'è di nuovo?", "menu.app.checkForUpdates" : "Controlla aggiornamenti", @@ -103,7 +103,7 @@ "menu.view.toggleDevTools" : "Attiva\/Disattiva Strumenti Sviluppo", "menu.view.toggleFullScreen" : "Attiva\/Disattiva Schermo Intero", "menu.view.toggleServiceDevTools" : "Attiva\/Disattiva Strumenti per Sviluppatori di Servizi", - "menu.view.toggleTodosDevTools" : "Toggle Todos Developer Tools", + "menu.view.toggleTodosDevTools" : "Attiva gli strumenti di sviluppo delle attività", "menu.view.zoomIn" : "Aumenta Zoom", "menu.view.zoomOut" : "Diminuisci Zoom", "menu.window" : "Finestra", -- cgit v1.2.3-70-g09d2 From 17df398c43993a9487a14f176f9861e6fef00593 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:51:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 00292147c..d7d8879fb 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -92,8 +92,8 @@ "menu.services.activatePreviousService" : "Attiva servizio precedente", "menu.services.addNewService" : "Aggiungi Nuovo Servizio...", "menu.services.setNextServiceActive" : "Attiva servizio seguente", - "menu.todos" : "Azioni", - "menu.todos.enableTodos" : "Abilita azioni", + "menu.todos" : "Attività", + "menu.todos.enableTodos" : "Abilita attività", "menu.view" : "Visualizza", "menu.view.enterFullScreen" : "Visualizza a Schermo Intero", "menu.view.exitFullScreen" : "Esci da Schermo Intero", @@ -122,7 +122,7 @@ "password.submit.label" : "Invia", "password.successInfo" : "Per favore controlla la tua email", "premiumFeature.button.upgradeAccount" : "Effettua l'upgrade del tuo account", - "pricing.features.adFree" : "Forever ad-free", + "pricing.features.adFree" : "Senza pubblicità per sempre", "pricing.features.appDelays" : "No Waiting Screens", "pricing.features.customWebsites" : "Add Custom Websites", "pricing.features.onPremise" : "On-premise & other Hosted Services", -- cgit v1.2.3-70-g09d2 From cc33812f9dd97bb439898e371006a0129698528f Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:52:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/es.json | 4 ++-- src/i18n/locales/it.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index f46015715..cc80bfe94 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -303,7 +303,7 @@ "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!", "settings.team.headline" : "Equipo", "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.", - "settings.team.manageAction" : "Manage your Team on meetfranz.com", + "settings.team.manageAction" : "Gestione su equipo en meetfranz.com", "settings.team.upgradeAction" : "Actualiza tu cuenta", "settings.user.form.accountType.company" : "Empresa", "settings.user.form.accountType.individual" : "Individual", @@ -315,7 +315,7 @@ "settings.user.form.lastname" : "Apellido", "settings.user.form.newPassword" : "Nueva contraseña", "settings.workspace.add.form.name" : "Nombre", - "settings.workspace.add.form.submitButton" : "Create workspace", + "settings.workspace.add.form.submitButton" : "Crear un sitio de trabajo", "settings.workspace.form.buttonDelete" : "Eliminar espacio de trabajo", "settings.workspace.form.buttonSave" : "Guardar espacio de trabajo", "settings.workspace.form.name" : "Nombre", diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index d7d8879fb..962417e35 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -123,8 +123,8 @@ "password.successInfo" : "Per favore controlla la tua email", "premiumFeature.button.upgradeAccount" : "Effettua l'upgrade del tuo account", "pricing.features.adFree" : "Senza pubblicità per sempre", - "pricing.features.appDelays" : "No Waiting Screens", - "pricing.features.customWebsites" : "Add Custom Websites", + "pricing.features.appDelays" : "Nessuna schermata di attesa", + "pricing.features.customWebsites" : "Aggiungi siti web personalizzati", "pricing.features.onPremise" : "On-premise & other Hosted Services", "pricing.features.serviceProxies" : "Service Proxies", "pricing.features.spellchecker" : "Spellchecker support", -- cgit v1.2.3-70-g09d2 From 321efb29b5e3b2529893e44bc633e469714b5a3d Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:53:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/es.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index cc80bfe94..8372caedd 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -299,7 +299,7 @@ "settings.services.tooltip.isMuted" : "Todos los sonidos están silenciados", "settings.services.tooltip.notificationsDisabled" : "Las notificaciones están desactivadas", "settings.services.updatedInfo" : "Tus cambios han sido guardados", - "settings.team.contentHeadline" : "Franz for Teams", + "settings.team.contentHeadline" : "Franz para equipos", "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!", "settings.team.headline" : "Equipo", "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.", @@ -321,9 +321,9 @@ "settings.workspace.form.name" : "Nombre", "settings.workspace.form.servicesInWorkspaceHeadline" : "Servicios en este espacio de trabajo", "settings.workspace.form.yourWorkspaces" : "Tus espacios de trabajo", - "settings.workspaces.deletedInfo" : "Workspace has been deleted", + "settings.workspaces.deletedInfo" : "Se ha eliminado el sitio de trabajo", "settings.workspaces.headline" : "Tus espacios de trabajo", - "settings.workspaces.noWorkspacesAdded" : "You haven't added any workspaces yet.", + "settings.workspaces.noWorkspacesAdded" : "Aún no ha añadido ningún sitio de trabajo.", "settings.workspaces.tryReloadWorkspaces" : "Inténtalo de nuevo", "settings.workspaces.updatedInfo" : "Tus cambios han sido guardados", "settings.workspaces.workspaceFeatureHeadline" : "Menos es más: Presentación de Franz Workspaces", -- cgit v1.2.3-70-g09d2 From 10adfc2cd876a6535cf0e5e8f1375c17c9f5bc3b Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:54:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/es.json | 2 +- src/i18n/locales/it.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json index 8372caedd..3141a1512 100644 --- a/src/i18n/locales/es.json +++ b/src/i18n/locales/es.json @@ -302,7 +302,7 @@ "settings.team.contentHeadline" : "Franz para equipos", "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!", "settings.team.headline" : "Equipo", - "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.", + "settings.team.intro" : "¿Usted y su equipo usan a Franz? Ahora puede administrar las suscripciones Premium para tantos colegas, amigos o familiares como desee, todo desde una misma cuenta.", "settings.team.manageAction" : "Gestione su equipo en meetfranz.com", "settings.team.upgradeAction" : "Actualiza tu cuenta", "settings.user.form.accountType.company" : "Empresa", diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 962417e35..731176856 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -125,8 +125,8 @@ "pricing.features.adFree" : "Senza pubblicità per sempre", "pricing.features.appDelays" : "Nessuna schermata di attesa", "pricing.features.customWebsites" : "Aggiungi siti web personalizzati", - "pricing.features.onPremise" : "On-premise & other Hosted Services", - "pricing.features.serviceProxies" : "Service Proxies", + "pricing.features.onPremise" : "Servizi ospitati & on-premise", + "pricing.features.serviceProxies" : "Proxy di servizio", "pricing.features.spellchecker" : "Spellchecker support", "pricing.features.teamManagement" : "Team Management", "pricing.features.thirdPartyServices" : "Install 3rd party services", -- cgit v1.2.3-70-g09d2 From fc7dce17ff5eeca87e5fd9971bcd6d47cfc19dcb Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:55:20 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 731176856..bb6939ac9 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -127,7 +127,7 @@ "pricing.features.customWebsites" : "Aggiungi siti web personalizzati", "pricing.features.onPremise" : "Servizi ospitati & on-premise", "pricing.features.serviceProxies" : "Proxy di servizio", - "pricing.features.spellchecker" : "Spellchecker support", + "pricing.features.spellchecker" : "Supporto per il correttore ortografico", "pricing.features.teamManagement" : "Team Management", "pricing.features.thirdPartyServices" : "Install 3rd party services", "pricing.features.unlimitedServices" : "Add unlimited services", -- cgit v1.2.3-70-g09d2 From 267e57c1e052e22fe63955e99ce060b016370354 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:56:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index bb6939ac9..8d1b346ca 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -128,9 +128,9 @@ "pricing.features.onPremise" : "Servizi ospitati & on-premise", "pricing.features.serviceProxies" : "Proxy di servizio", "pricing.features.spellchecker" : "Supporto per il correttore ortografico", - "pricing.features.teamManagement" : "Team Management", - "pricing.features.thirdPartyServices" : "Install 3rd party services", - "pricing.features.unlimitedServices" : "Add unlimited services", + "pricing.features.teamManagement" : "Gestione del team", + "pricing.features.thirdPartyServices" : "Installa servizi di terze parti", + "pricing.features.unlimitedServices" : "Aggiungi servizi illimitati", "pricing.features.workspaces" : "Workspaces", "pricing.plan.free" : "Franz Free", "pricing.plan.legacy" : "Franz Premium", -- cgit v1.2.3-70-g09d2 From b54816bb15015a9c723eae57b0de39b94aab4151 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:57:21 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index 8d1b346ca..b1b25d804 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -131,10 +131,10 @@ "pricing.features.teamManagement" : "Gestione del team", "pricing.features.thirdPartyServices" : "Installa servizi di terze parti", "pricing.features.unlimitedServices" : "Aggiungi servizi illimitati", - "pricing.features.workspaces" : "Workspaces", - "pricing.plan.free" : "Franz Free", + "pricing.features.workspaces" : "Aree di lavoro", + "pricing.plan.free" : "Franz Gratuito", "pricing.plan.legacy" : "Franz Premium", - "pricing.plan.personal" : "Franz Personal", + "pricing.plan.personal" : "Frenz Personale", "pricing.plan.personal-monthly" : "Franz Personal Monthly", "pricing.plan.personal-yearly" : "Franz Personal Yearly", "pricing.plan.pro" : "Franz Professional", -- cgit v1.2.3-70-g09d2 From 16917dae108f1d543c9f518acf9a26703eda8497 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:58:20 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index b1b25d804..d5dc0ed04 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -134,17 +134,17 @@ "pricing.features.workspaces" : "Aree di lavoro", "pricing.plan.free" : "Franz Gratuito", "pricing.plan.legacy" : "Franz Premium", - "pricing.plan.personal" : "Frenz Personale", - "pricing.plan.personal-monthly" : "Franz Personal Monthly", - "pricing.plan.personal-yearly" : "Franz Personal Yearly", - "pricing.plan.pro" : "Franz Professional", - "pricing.plan.pro-monthly" : "Franz Professional Monthly", - "pricing.plan.pro-yearly" : "Franz Professional Yearly", + "pricing.plan.personal" : "Franz Personale", + "pricing.plan.personal-monthly" : "Franz Personale Mensile", + "pricing.plan.personal-yearly" : "Franz Personale Annuale", + "pricing.plan.pro" : "Franz Professionale", + "pricing.plan.pro-monthly" : "Franz Professionale Mensile", + "pricing.plan.pro-yearly" : "Franz Professionale Annuale", "pricing.trial.cta.accept" : "Yes, upgrade my account to Franz Professional", "pricing.trial.cta.skip" : "Continue to Franz", "pricing.trial.error" : "Sorry, we could not activate your trial!", "pricing.trial.features.headline" : "Franz Professional includes:", - "pricing.trial.headline" : "Franz Professional", + "pricing.trial.headline" : "Franz Professionale", "pricing.trial.subheadline" : "Your personal welcome offer:", "pricing.trial.terms.automaticTrialEnd" : "Your free trial ends automatically after 14 days", "pricing.trial.terms.headline" : "No strings attached", -- cgit v1.2.3-70-g09d2 From e1b76bb052ce636e8808e2f7887ba7b00b7a21a8 Mon Sep 17 00:00:00 2001 From: FranzBot Date: Thu, 12 Sep 2019 12:59:20 +0000 Subject: Automatic i18n update (i18n.meetfranz.com) --- src/i18n/locales/it.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json index d5dc0ed04..de43a10e0 100644 --- a/src/i18n/locales/it.json +++ b/src/i18n/locales/it.json @@ -140,8 +140,8 @@ "pricing.plan.pro" : "Franz Professionale", "pricing.plan.pro-monthly" : "Franz Professionale Mensile", "pricing.plan.pro-yearly" : "Franz Professionale Annuale", - "pricing.trial.cta.accept" : "Yes, upgrade my account to Franz Professional", - "pricing.trial.cta.skip" : "Continue to Franz", + "pricing.trial.cta.accept" : "Sì, potenzia il mio account a Franz Professionale", + "pricing.trial.cta.skip" : "Continua su Franz", "pricing.trial.error" : "Sorry, we could not activate your trial!", "pricing.trial.features.headline" : "Franz Professional includes:", "pricing.trial.headline" : "Franz Professionale", -- cgit v1.2.3-70-g09d2 From 1c0a689633c702212a87e195566a38fbf25e1f59 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 15:09:48 +0200 Subject: skip i18n branch from being built --- .travis.yml | 4 ++++ appveyor.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index c7e2c714c..23b9fe631 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,3 +51,7 @@ env: - secure: fddJzSmNYVX024jnhnFXEuAK1spEYi3y3RZdWaBtjQnzoObAxkcRW263JNpXQy+b7egnp2hSy8FvlQU+L967911F5Y70Pe3An4oI72hnS3DL4Njp2Dw5PwviwMA+X2ddWhzK4+k/JU6r8jBv1FGQ6ZjwSeaO/t8UKOsE8wDBFLRhnHqoR7QbM7zmKjzh/1oofunGbHsPOHmN4f7jBwSuSFTZltEENcQg3ZP++0NHU8UJdlpfqZOkro8v4AJMngAHeHlNtjwaAHdVv+6+kkwc4E/0Cy6YNyyBkbzipyngNY3GwnwzmNzvsfICD1TGklksjBlMQq7ld7eCiaYRNvyHVEmXJ17qlq7HhxkYgNy32hPRwb5Cv6o4M4tv8qS8UUk4W1RvBJ5fcmfZGQwGXPyQ/m85RJtrNfbYtr84jYcprTnSeji/9PuZv0f87dxELYm3DYmNUa1cgJqEdLUsEd0bMwUYNLnCSfu4ea2zxwir6LSBtJJCbGKxX87s5IOTrHkrWDe+PWd52v+UjQks7MBRlJnntTWo69Yy+ayXV1TnGVOHA5znHvPOvFlAF+y8tLGd4AGvehK1SAkf0+idmc9Q9xKk0QypT3ibjJui4D50p7sSajkzz3P2pUqOS/9HmjMfPMPN+Nl+48GU0CvB2aBGhdmp9vu54VaFzUaAGNGj4WI= - secure: AjJvKhQ1jIloxogMdtOzJqovPQUBSA0lfHcRsmGdP8HIRKSRi9tKxCCgicTMpMWfvY7qtdexXBbl2/zl6cOhjfTYeAhNwwCg+dw7OVcE8LUn4E+gYZCYIKbNmmkVKsSckQd4h2IcyvqdqLwzjrEzdF95MoUI8WqdLwvQJLkoIaXju6ZT76FslGSUVXk58ZN7p2nr3kW8V7KclIzn/yyyYXE4bjBmS4djuvCReeSfSViCuX5CGT8avBb/IF/M5S7hcQVybmmalysOrranzSx0o9PPUIT9hHqqRpXW6iss2qVj+kCaFiC3ftlApVgizBoGcNAMA8N7hX8kkEjJSpiy7Vswuev9mVN9X94VwVZGyNvdYD8cKKxqTsfFDZDgefnuSYUhymKSBgM4yScYF6IPNJWFWJTugtVeMJ8ivqZhwJuD20nt6x7gGB1FS6m7axxRWeyp7h0FqWU9l6ZfmwHcRziVKNTk9BB4XIqco9M2wjV/YH321IGVwtVR5y6zty10+xk38TthCOidgBurFlMKbFKH5g9K5+84dhsCW0avMlJ0+QkgId0uAVyho+09Wx4cKqXLfobpznkUX+S0Um6G/NbAaUAU+SqBsm+X9CKFsPd/YJoxLdF7eBCG/3Fy4roKg3J4mBYeXe3wVnGft8Eeg0aNpOArMSStMY337UpdV80= - secure: WNQBUyNvjTwMFm6pPzNXZYRvgLCTgEm93vLX/0amtr6gT6N8ZsTLL5+Ht3+v51MUOsjEe6tCM4cLSh4wSuwWcSEsUjK0jiqknlpgKKl6xLeo+1t8u6BKSgTpipWqrSD24TbvMrFUyeQrqCGRdZc3Ax/F1ERD81SXcsrg2evCL8g8zsYjxSMXc44drKrvYi68s/5ALrI+oH3t2PYsGuuP1ipj5CbaizUHEa5d8TukHRl96lxoEKCQ4Sa8UXRPNQsdb3TdkVmIEPIoioWU6AMPweBWR6Ky994aKwp0wWn1adWP49v8skMYWbirENniSxShtztF/NYqPQFyoyh0WD/C/ZJPh04HlMxnmQPUROq+LxBFz8WBY1eHDmz6GxH1lDYzneTtlRa5K8izvs2+ROhpVmmKeOgWHaL1ZRMy8Cn3V88kadF7i1K9NnqB6ZPyynJJctj7o0af6Os9/ZPqWfqIOWWeXgfXVzj17xJADfh6Z9epW95hdKZjnIf9IqGAI8aYTqhVL8DKTJ+PSGhJIOEX+ERm+0U9gMlwllwjHCDhBe42zCGuLaWZ239yD1eacM0Ko7yUM+xobiiF0FlB8VI/nBOpGdeUKNLeUfikLHILWd04AVRCNaQU67GMOHekfWdGR8tEh9I/5Y6GJR0IQL5eGmDUjSN0u/Ovss4jSEBOaXo= + +branches: + except: + - i18n diff --git a/appveyor.yml b/appveyor.yml index 1dd0dbd92..8e2a8a6f6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,3 +31,7 @@ notifications: artifacts: - path: out\*.exe - path: out\*.yml + +branches: + except: + - i18n -- cgit v1.2.3-70-g09d2 From 09fe8348df228d7d1618f7884d5ff5a344e83282 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 12 Sep 2019 20:55:13 +0200 Subject: Update CHANGELOG.md --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a35f746..88980005b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ -## [5.3.2](https://github.com/meetfranz/franz/compare/v5.3.1...v5.3.2) (2019-09-12) +# [5.3.2](https://github.com/meetfranz/franz/compare/v5.3.1...v5.3.2) (2019-09-12) ### Features -* **Todos:** Move todos toggle to sidebar ([7ffcf8c](https://github.com/meetfranz/franz/commit/7ffcf8c)) +* **Todos:** Move Franz Todos to sidebar ([7ffcf8c](https://github.com/meetfranz/franz/commit/7ffcf8c)) * **Workspaces:** Add setting to keep all services in workspaces in background (avoid reload) ([@Wouter0100](https://github.com/Wouter0100)) ([ddab3a8](https://github.com/meetfranz/franz/commit/ddab3a8)) ### Bug Fixes -* **Settings:** Don't toggle Todos on general settings changes ([@vantezzen](https://github.com/vantezzen)) ([a99371b](https://github.com/meetfranz/franz/commit/a99371b)) +* **Settings:** Don't toggle Franz Todos on general settings changes ([@vantezzen](https://github.com/vantezzen)) ([a99371b](https://github.com/meetfranz/franz/commit/a99371b)) ### General -- cgit v1.2.3-70-g09d2