From dc50581e7cfca0f1c4ffde5241c00cd7b82ed0db Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Fri, 16 Jul 2021 16:18:10 +0300 Subject: [PATCH 01/21] [DE PE] Fix Bug 47943 --- apps/documenteditor/mobile/src/view/edit/EditText.jsx | 4 ++-- apps/presentationeditor/mobile/src/view/edit/EditText.jsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index e14cf43edf..d8198ac2cf 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -119,13 +119,13 @@ const PageAdditionalFormatting = props => { - {!isAndroid &&
{letterSpacing + ' ' + Common.Utils.Metric.getCurrentMetricName()}
} + {!isAndroid &&
{(Number.isInteger(letterSpacing) ? letterSpacing : letterSpacing.toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName()}
}
- {isAndroid && } + {isAndroid && } diff --git a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx index cb78c48006..d6a9875131 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx @@ -377,13 +377,13 @@ const PageAdditionalFormatting = props => { - {!isAndroid &&
{Number(letterSpacing).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName()}
} + {!isAndroid &&
{(Number.isInteger(letterSpacing) ? letterSpacing : letterSpacing.toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName()}
}
- {isAndroid && } + {isAndroid && } From dcca2e189efa689d932051047b58b69935850a30 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 19 Jul 2021 16:26:51 +0300 Subject: [PATCH 02/21] Fix Bug 50903 --- apps/common/mobile/lib/component/ThemeColorPalette.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/common/mobile/lib/component/ThemeColorPalette.jsx b/apps/common/mobile/lib/component/ThemeColorPalette.jsx index b0637aa453..ea46284f1d 100644 --- a/apps/common/mobile/lib/component/ThemeColorPalette.jsx +++ b/apps/common/mobile/lib/component/ThemeColorPalette.jsx @@ -45,7 +45,7 @@ const StandartColors = ({ options, standartColors, onColorClick, curColor }) => ) }; -const CustomColors = ({ options, customColors, onColorClick, curColor }) => { +const CustomColors = ({ options, customColors, isTypeColors, onColorClick, curColor }) => { const colors = customColors.length > 0 ? customColors : []; const emptyItems = []; if (colors.length < options.customcolors) { @@ -64,7 +64,7 @@ const CustomColors = ({ options, customColors, onColorClick, curColor }) => { {colors && colors.length > 0 && colors.map((color, index) => { return( {onColorClick(color)}} > @@ -100,6 +100,7 @@ const ThemeColorPalette = props => { themeColors[row].push(effect); }); const standartColors = Common.Utils.ThemeColor.getStandartColors(); + let isTypeColors = standartColors.some( value => value === curColor ); // custom color let customColors = props.customColors; if (customColors.length < 1) { @@ -120,7 +121,7 @@ const ThemeColorPalette = props => {
{ _t.textCustomColors }
- +
From 54fb6bb1428e869f68f5ed74f787272c73861f73 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 20 Jul 2021 12:10:13 +0300 Subject: [PATCH 03/21] Fix Bug 49412 --- apps/documenteditor/mobile/src/view/edit/EditImage.jsx | 7 ++++--- apps/documenteditor/mobile/src/view/edit/EditShape.jsx | 7 +++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/edit/EditImage.jsx b/apps/documenteditor/mobile/src/view/edit/EditImage.jsx index d87558efc8..e8ed780a6f 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditImage.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditImage.jsx @@ -239,6 +239,7 @@ const EditImage = props => { const storeFocusObjects = props.storeFocusObjects; const imageObject = storeFocusObjects.imageObject; const pluginGuid = imageObject.asc_getPluginGuid(); + const wrapType = props.storeImageSettings.getWrapType(imageObject); return ( @@ -254,9 +255,9 @@ const EditImage = props => { onReplaceByFile: props.onReplaceByFile, onReplaceByUrl: props.onReplaceByUrl }}>
- + }}> }
{props.onDefaulSize()}}/> @@ -266,7 +267,7 @@ const EditImage = props => { ) }; -const EditImageContainer = inject("storeFocusObjects")(observer(EditImage)); +const EditImageContainer = inject("storeFocusObjects", "storeImageSettings")(observer(EditImage)); const PageWrapContainer = inject("storeFocusObjects", "storeImageSettings")(observer(PageWrap)); const PageReplaceContainer = inject("storeFocusObjects")(observer(PageReplace)); const PageReorderContainer = inject("storeFocusObjects")(observer(PageReorder)); diff --git a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx index b4c785b50d..85095537b4 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx @@ -506,9 +506,8 @@ const EditShape = props => { const { t } = useTranslation(); const _t = t('Edit', {returnObjects: true}); const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill(); - const storeShapeSettings = props.storeShapeSettings; const shapeObject = props.storeFocusObjects.shapeObject; - const wrapType = storeShapeSettings.getWrapType(shapeObject); + const wrapType = props.storeShapeSettings.getWrapType(shapeObject); let disableRemove = !!props.storeFocusObjects.paragraphObject; @@ -537,9 +536,9 @@ const EditShape = props => { - + }}> } {props.onRemoveShape()}} className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} /> From 68ecdfa60e27a5d0b606eae2f601a800047d05f8 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 20 Jul 2021 15:10:02 +0300 Subject: [PATCH 04/21] Fix Bug 51307 --- apps/spreadsheeteditor/mobile/src/less/app.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index a3bcb96d93..66c3cd23a0 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -84,3 +84,9 @@ } } } + +.item-input-wrap { + input[type = number] { + -moz-appearance: textfield; + } +} From 40b9837d5532948d0792b897a41d95c0db6cca61 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 22 Jul 2021 00:10:20 +0300 Subject: [PATCH 05/21] [SSE mobile] Change to add listeners on events in statusbar --- .../mobile/src/controller/Main.jsx | 2 + .../mobile/src/controller/Statusbar.jsx | 139 ++++++++---------- .../mobile/src/page/main.jsx | 2 +- .../mobile/src/store/sheets.js | 32 +++- .../mobile/src/view/Statusbar.jsx | 17 +-- 5 files changed, 100 insertions(+), 92 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 34d72d1af9..84c07a9e04 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -18,6 +18,7 @@ import ErrorController from "./Error"; import app from "../page/app"; import About from "../../../../common/mobile/lib/view/About"; import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx'; +import { StatusbarController } from "./Statusbar"; @inject( "storeAppOptions", @@ -799,6 +800,7 @@ class MainController extends Component { + diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index 47d3840c28..7e093e1f05 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -1,85 +1,31 @@ import React, { Fragment, useEffect, useState } from 'react'; import {StatusbarView} from '../view/Statusbar'; -import { inject } from 'mobx-react'; +import { inject, observer } from 'mobx-react'; import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; -const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { - const {sheets, storeAppOptions, users} = props; - const {t} = useTranslation(); - const _t = t('Statusbar', {returnObjects: true}); - - let isEdit = storeAppOptions.isEdit; - let isDisconnected = users.isDisconnected; +const StatusbarController = inject('sheets')(observer(props => { + const sheets = props.sheets; useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - // api.asc_registerCallback('asc_onUpdateTabColor', onApiUpdateTabColor); - api.asc_registerCallback('asc_onWorkbookLocked', onWorkbookLocked); - api.asc_registerCallback('asc_onWorksheetLocked', onWorksheetLocked); + Common.Notifications.on('engineCreated', api => { + api.asc_registerCallback('asc_onWorkbookLocked', (locked) => { + sheets.setWorkbookLocked(locked); + }); + api.asc_registerCallback('asc_onWorksheetLocked', (index, locked) => { + sheets.setWorksheetLocked(index, locked); + }); api.asc_registerCallback('asc_onSheetsChanged', onApiSheetsChanged); - api.asc_registerCallback('asc_onHidePopMenu', onApiHideTabContextMenu); api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Notifications.on('document:ready', onApiSheetsChanged); - } else { - onDocumentReady(); - } - - const on_main_view_click = e => { - if(!e.target.closest('.tab.active')) { - f7.popover.close('.document-menu.modal-in', false); - } - }; - - $$('.view-main').on('click', on_main_view_click); - - return () => { - Common.Notifications.off('document:ready', onDocumentReady); - Common.Notifications.off('document:ready', onApiSheetsChanged); - - const api = Common.EditorApi.get(); - // api.asc_unregisterCallback('asc_onUpdateTabColor', onApiUpdateTabColor); - api.asc_unregisterCallback('asc_onWorkbookLocked', onWorkbookLocked); - api.asc_unregisterCallback('asc_onWorksheetLocked', onWorksheetLocked); - api.asc_unregisterCallback('asc_onSheetsChanged', onApiSheetsChanged); - api.asc_unregisterCallback('asc_onHidePopMenu', onApiHideTabContextMenu); - api.asc_unregisterCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); - - $$('.view-main').off('click', on_main_view_click); - }; - }, []); - - const onApiActiveSheetChanged = (index) => { - if (index < sheets.sheets.length) { - sheets.setActiveWorksheet(index); - Common.Notifications.trigger('sheet:active', index); - } - } - - const onApiHideTabContextMenu = () => { - f7.popover.close('.document-menu.modal-in', false); - } - - const onWorkbookLocked = locked => { - locked ? $$('.idx-btn-addtab').addClass('disabled') : $$('.idx-btn-addtab').removeClass('disabled'); - }; - - const onWorksheetLocked = (index, locked) => { - // let model = sheets.sheets.find(sheet => sheet.index === index); - let model = sheets.at(index); - if(model && model.locked != locked) - model.locked = locked; - }; + api.asc_registerCallback('asc_onHidePopMenu', onApiHideTabContextMenu); + // api.asc_registerCallback('asc_onUpdateTabColor', onApiUpdateTabColor); + }); + Common.Notifications.on('document:ready', onApiSheetsChanged); + }); const onApiSheetsChanged = () => { - // console.log('on api sheets changed'); - const api = Common.EditorApi.get(); const sheets_count = api.asc_getWorksheetsCount(); const active_index = api.asc_getActiveWorksheetIndex(); @@ -100,9 +46,42 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { } sheets.resetSheets(items); - // updateTabsColors(); }; + const onApiActiveSheetChanged = (index) => { + if (index < sheets.sheets.length) { + sheets.setActiveWorksheet(index); + Common.Notifications.trigger('sheet:active', index); + } + }; + + const onApiHideTabContextMenu = () => { + f7.popover.close('.document-menu.modal-in', false); + } + + return null; +})); + +const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => { + const {sheets, storeAppOptions, users} = props; + const {t} = useTranslation(); + const _t = t('Statusbar', {returnObjects: true}); + + const isEdit = storeAppOptions.isEdit; + const isDisconnected = users.isDisconnected; + + useEffect(() => { + const on_main_view_click = e => { + if(!e.target.closest('.tab.active')) { + f7.popover.close('.document-menu.modal-in', false); + } + }; + $$('.view-main').on('click', on_main_view_click); + return () => { + $$('.view-main').off('click', on_main_view_click); + }; + }, []); + // const loadTabColor = sheetindex => { // const api = Common.EditorApi.get(); // let tab = sheets.sheets.find(sheet => sheet.index === sheetindex); @@ -178,15 +157,12 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { const onAddTabClicked = () => { const api = Common.EditorApi.get(); api.asc_closeCellEditor(); - - createSheetName(); api.asc_addWorksheet(createSheetName()); }; const onTabClick = (i, target) => { const api = Common.EditorApi.get(); const model = sheets.at(i); - // console.log(model); let opened = $$('.document-menu.modal-in').length; let index = model.index; @@ -204,7 +180,6 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { else { f7.popover.close('#idx-tab-context-menu-popover', false); onTabClicked(i); - // Common.Notifications.trigger('sheet:active', index); } }; @@ -314,7 +289,6 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { } else { f7.popover.close('#idx-hidden-sheets-popover'); api['asc_showWorksheet'](index); - // loadTabColor(index); } }; @@ -348,8 +322,17 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { }; return ( - + ) -}); +})); -export default Statusbar; \ No newline at end of file +export {Statusbar, StatusbarController}; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index c8221d3d3d..9c316b562d 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -6,7 +6,7 @@ import { Device } from '../../../../common/mobile/utils/device'; import Settings from '../view/settings/Settings'; import CollaborationView from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' import CellEditor from '../controller/CellEditor'; -import Statusbar from '../controller/Statusbar'; +import { Statusbar } from '../controller/Statusbar'; import FilterOptionsController from '../controller/FilterOptions.jsx' import AddOptions from "../view/add/Add"; import EditOptions from "../view/edit/Edit"; diff --git a/apps/spreadsheeteditor/mobile/src/store/sheets.js b/apps/spreadsheeteditor/mobile/src/store/sheets.js index bb79938d31..54e04a34bb 100644 --- a/apps/spreadsheeteditor/mobile/src/store/sheets.js +++ b/apps/spreadsheeteditor/mobile/src/store/sheets.js @@ -1,5 +1,5 @@ -import {observable, action, makeObservable} from 'mobx'; +import {observable, action, makeObservable, computed} from 'mobx'; class Worksheet { sheet = { @@ -26,7 +26,14 @@ export class storeWorksheets { makeObservable(this, { sheets: observable, resetSheets: action, - setActiveWorksheet: action + setActiveWorksheet: action, + activeWorksheet: computed, + + isWorkbookLocked: observable, + setWorkbookLocked: action, + + isWorksheetLocked: observable, + setWorksheetLocked: action }); this.sheets = []; } @@ -46,6 +53,14 @@ export class storeWorksheets { } } + get activeWorksheet() { + for (let i = 0; i < this.sheets.length; i++) { + if (this.sheets[i].active) + return i; + } + return -1; + } + at(i) { return this.sheets[i] } @@ -61,4 +76,17 @@ export class storeWorksheets { visibleWorksheets() { return this.sheets.filter(model => !model.hidden); } + + isWorkbookLocked = false; + setWorkbookLocked(locked) { + this.isWorkbookLocked = locked; + } + + isWorksheetLocked = false; + setWorksheetLocked(index, locked) { + let model = this.sheets[index]; + if(model && model.locked !== locked) + model.locked = locked; + this.isWorkbookLocked = locked; + } } diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 7af545d6ff..5e19d53b6d 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -1,6 +1,5 @@ import React, { Fragment } from 'react'; -import { View, Toolbar, Link, Icon, Popover, List, ListButton, Actions, ActionsGroup, ActionsButton } from 'framework7-react'; -import { observer, inject } from "mobx-react"; +import { View, Link, Icon, Popover, List, ListButton, Actions, ActionsGroup, ActionsButton } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; @@ -8,16 +7,12 @@ const viewStyle = { height: 30 }; -const StatusbarView = inject('sheets', "storeAppOptions")(observer(props => { +const StatusbarView = props => { const { t } = useTranslation(); const _t = t('Statusbar', {returnObjects: true}); const isAndroid = Device.android; const isPhone = Device.isPhone; - const { sheets, storeAppOptions } = props; - const isEdit = storeAppOptions.isEdit; - const hiddenSheets = sheets.hiddenWorksheets(); - const allSheets = sheets.sheets; - const getTabClassList = model => `tab ${model.active ? 'active' : ''} ${model.locked ? 'locked' : ''}`; + const { isEdit, allSheets, hiddenSheets, isWorkbookLocked } = props; const getTabColor = model => { let color = model.color; @@ -119,7 +114,7 @@ const StatusbarView = inject('sheets', "storeAppOptions")(observer(props => {
- props.onAddTabClicked()}> +
@@ -127,7 +122,7 @@ const StatusbarView = inject('sheets', "storeAppOptions")(observer(props => {
    {allSheets.map((model,i) => model.hidden ? null : -
  • props.onTabClick(i, e.target)}> +
  • props.onTabClick(i, e.target)}> {model.name}
  • @@ -194,6 +189,6 @@ const StatusbarView = inject('sheets', "storeAppOptions")(observer(props => { ) : null} ) -})); +}; export {StatusbarView}; From bd57ab8c5d3295e218a30aadab8a8514289ac319 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 22 Jul 2021 01:10:25 +0300 Subject: [PATCH 06/21] [SSE mobile] Change to add listeners on events in toolbar --- .../mobile/src/controller/Main.jsx | 16 +++++- .../mobile/src/controller/Statusbar.jsx | 5 +- .../mobile/src/controller/Toolbar.jsx | 54 ++++--------------- .../mobile/src/store/mainStore.js | 4 +- .../mobile/src/store/toolbar.js | 24 +++++++++ 5 files changed, 57 insertions(+), 46 deletions(-) create mode 100644 apps/spreadsheeteditor/mobile/src/store/toolbar.js diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 84c07a9e04..f35162df2c 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -21,6 +21,7 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. import { StatusbarController } from "./Statusbar"; @inject( + "users", "storeAppOptions", "storeFocusObjects", "storeCellSettings", @@ -28,7 +29,8 @@ import { StatusbarController } from "./Statusbar"; "storeChartSettings", "storeSpreadsheetSettings", "storeSpreadsheetInfo", - "storeApplicationSettings" + "storeApplicationSettings", + "storeToolbarSettings" ) class MainController extends Component { constructor(props) { @@ -360,6 +362,18 @@ class MainController extends Component { if(type == Asc.c_oAscAdvancedOptionsID.DRM) this.isDRM = true; }); + // Toolbar settings + + const storeToolbarSettings = this.props.storeToolbarSettings; + this.api.asc_registerCallback('asc_onCanUndoChanged', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanUndo(can); + }); + this.api.asc_registerCallback('asc_onCanRedoChanged', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanRedo(can); + }); + } _onLongActionEnd(type, id) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index 7e093e1f05..c9725fffe8 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -6,16 +6,19 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; -const StatusbarController = inject('sheets')(observer(props => { +const StatusbarController = inject('sheets', 'storeFocusObjects')(observer(props => { const sheets = props.sheets; + const storeFocusObjects = props.storeFocusObjects; useEffect(() => { Common.Notifications.on('engineCreated', api => { api.asc_registerCallback('asc_onWorkbookLocked', (locked) => { sheets.setWorkbookLocked(locked); + storeFocusObjects.setIsLocked(api.asc_getCellInfo()); }); api.asc_registerCallback('asc_onWorksheetLocked', (index, locked) => { sheets.setWorksheetLocked(index, locked); + storeFocusObjects.setIsLocked(api.asc_getCellInfo()); }); api.asc_registerCallback('asc_onSheetsChanged', onApiSheetsChanged); api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx index c778040af3..6b6ceb0b4a 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx @@ -4,7 +4,7 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); @@ -16,26 +16,17 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; - useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - api.asc_registerCallback('asc_onCanUndoChanged', onApiCanUndo); - api.asc_registerCallback('asc_onCanRedoChanged', onApiCanRedo); - api.asc_registerCallback('asc_onWorkbookLocked', onApiLocked); - api.asc_registerCallback('asc_onWorksheetLocked', onApiLocked); - api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); + const storeToolbarSettings = props.storeToolbarSettings; + const isCanUndo = storeToolbarSettings.isCanUndo; + const isCanRedo = storeToolbarSettings.isCanRedo; - Common.Notifications.on('toolbar:activatecontrols', activateControls); - Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); - Common.Notifications.on('goback', goBack); - Common.Notifications.on('sheet:active', onApiActiveSheetChanged); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Gateway.on('init', loadConfig); - } else { - onDocumentReady(); - } + useEffect(() => { + Common.Gateway.on('init', loadConfig); + + Common.Notifications.on('toolbar:activatecontrols', activateControls); + Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); + Common.Notifications.on('goback', goBack); + Common.Notifications.on('sheet:active', onApiActiveSheetChanged); if (isDisconnected) { f7.popover.close(); @@ -44,18 +35,10 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn } return () => { - Common.Notifications.off('document:ready', onDocumentReady); Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); Common.Notifications.off('sheet:active', onApiActiveSheetChanged); - - const api = Common.EditorApi.get(); - api.asc_unregisterCallback('asc_onCanUndoChanged', onApiCanUndo); - api.asc_unregisterCallback('asc_onCanRedoChanged', onApiCanRedo); - api.asc_unregisterCallback('asc_onWorkbookLocked', onApiLocked); - api.asc_unregisterCallback('asc_onWorksheetLocked', onApiLocked); - api.asc_unregisterCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); } }); @@ -107,17 +90,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn //} } - // Undo and Redo - const [isCanUndo, setCanUndo] = useState(false); - const [isCanRedo, setCanRedo] = useState(false); - const onApiCanUndo = (can) => { - if (isDisconnected) return; - setCanUndo(can); - }; - const onApiCanRedo = (can) => { - if (isDisconnected) return; - setCanRedo(can); - }; const onUndo = () => { const api = Common.EditorApi.get(); if (api) { @@ -132,10 +104,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn } const [disabledEditControls, setDisabledEditControls] = useState(false); - const onApiLocked = () => { - if (isDisconnected) return; - props.storeFocusObjects.setIsLocked(Common.EditorApi.get().asc_getCellInfo()); - }; const onApiActiveSheetChanged = (index) => { Common.Notifications.trigger('comments:filterchange', ['doc', 'sheet' + Common.EditorApi.get().asc_getWorksheetId(index)], false ); diff --git a/apps/spreadsheeteditor/mobile/src/store/mainStore.js b/apps/spreadsheeteditor/mobile/src/store/mainStore.js index 0190760f38..de8a2c11e0 100644 --- a/apps/spreadsheeteditor/mobile/src/store/mainStore.js +++ b/apps/spreadsheeteditor/mobile/src/store/mainStore.js @@ -16,6 +16,7 @@ import {storeAppOptions} from "./appOptions"; import {storeChartSettings} from "./chartSettings"; import {storeSpreadsheetSettings} from "./spreadsheetSettings"; import {storeComments} from "../../../../common/mobile/lib/store/comments"; +import {storeToolbarSettings} from "./toolbar"; export const stores = { storeFocusObjects: new storeFocusObjects(), @@ -34,6 +35,7 @@ export const stores = { storeCellSettings: new storeCellSettings(), // storeImageSettings: new storeImageSettings(), // storeTableSettings: new storeTableSettings() - storeComments: new storeComments() + storeComments: new storeComments(), + storeToolbarSettings: new storeToolbarSettings() }; diff --git a/apps/spreadsheeteditor/mobile/src/store/toolbar.js b/apps/spreadsheeteditor/mobile/src/store/toolbar.js new file mode 100644 index 0000000000..ff0d1764ac --- /dev/null +++ b/apps/spreadsheeteditor/mobile/src/store/toolbar.js @@ -0,0 +1,24 @@ +import {action, observable, makeObservable} from 'mobx'; + +export class storeToolbarSettings { + constructor() { + makeObservable(this, { + isCanUndo: observable, + setCanUndo: action, + isCanRedo: observable, + setCanRedo: action + }) + } + + isCanUndo = false; + + setCanUndo(can) { + this.isCanUndo = can; + } + + isCanRedo = false; + + setCanRedo(can) { + this.isCanRedo = can; + } +} \ No newline at end of file From 4e3144a159868bfeb3809a6aea93a33f6af9ba76 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Thu, 22 Jul 2021 14:11:29 +0300 Subject: [PATCH 07/21] Refactoring and fix typeSort --- .../mobile/src/controller/FilterOptions.jsx | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx index d1c950bb6a..131ba83e47 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx @@ -63,6 +63,7 @@ const FilterOptionsController = () => { const onClearFilter = () => { const api = Common.EditorApi.get(); if(api) api.asc_clearFilter(); + setCheckSort(''); }; const onDeleteFilter = () => { @@ -79,21 +80,17 @@ const FilterOptionsController = () => { const setClearDisable = (config) => { let arr = config.asc_getValues(); let lenCheck = arr.filter((item) => item.visible == true).length; - lenCheck == arr.length ? setIsValid(true) : setIsValid(false) + lenCheck == arr.length ? setIsValid(true) : setIsValid(false); }; const setDataFilterCells = (config) => { - function isNumeric(value) { - return !isNaN(parseFloat(value)) && isFinite(value); - } - let value = null, isnumber = null, arrCells = []; config.asc_getValues().forEach((item, index) => { value = item.asc_getText(); - isnumber = isNumeric(value); + isnumber = !isNaN(parseFloat(value)) && isFinite(value); arrCells.push({ id : index, @@ -111,12 +108,7 @@ const FilterOptionsController = () => { const onUpdateCell = (id, state) => { const api = Common.EditorApi.get(); - if ( id == 'all' ) { - listVal.forEach(item => item.check = state); - } else { - listVal[id].check = state; - } - + id == 'all' ? listVal.forEach(item => item.check = state) : listVal[id].check = state; setListValue([...listVal]); if ( listVal.some(item => item.check) ) { From 6d0911631cf696e30f913e7a89a98c4bfec84d84 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 22 Jul 2021 17:47:34 +0300 Subject: [PATCH 08/21] [DE mobile] Fix adding listeners in toolbar --- .../mobile/src/controller/Main.jsx | 16 ++++- .../mobile/src/controller/Toolbar.jsx | 72 ++++--------------- .../mobile/src/store/focusObjects.js | 24 ++++++- .../mobile/src/store/mainStore.js | 4 +- 4 files changed, 54 insertions(+), 62 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index dc2d272927..9b88260ede 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -18,6 +18,7 @@ import LongActionsController from "./LongActions"; import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx'; @inject( + "users", "storeAppOptions", "storeDocumentSettings", "storeFocusObjects", @@ -27,7 +28,8 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. "storeDocumentInfo", "storeChartSettings", "storeApplicationSettings", - "storeLinkSettings" + "storeLinkSettings", + "storeToolbarSettings" ) class MainController extends Component { constructor(props) { @@ -620,6 +622,18 @@ class MainController extends Component { onAdvancedOptions(type, advOptions, mode, formatOptions, _t, this._isDocReady, this.props.storeAppOptions.canRequestClose, this.isDRM); if(type == Asc.c_oAscAdvancedOptionsID.DRM) this.isDRM = true; }); + + // Toolbar settings + + const storeToolbarSettings = this.props.storeToolbarSettings; + this.api.asc_registerCallback('asc_onCanUndo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanUndo(can); + }); + this.api.asc_registerCallback('asc_onCanRedo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanRedo(can); + }); } onProcessSaveResult (data) { diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 79286c70a3..6fcbbbf647 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -4,7 +4,7 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); @@ -15,25 +15,20 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments || appOptions.canReview || appOptions.canViewReview; const readerMode = appOptions.readerMode; + const objectLocked = props.storeFocusObjects.objectLocked; + + const storeToolbarSettings = props.storeToolbarSettings; + const isCanUndo = storeToolbarSettings.isCanUndo; + const isCanRedo = storeToolbarSettings.isCanRedo; + const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - api.asc_registerCallback('asc_onCanUndo', onApiCanUndo); - api.asc_registerCallback('asc_onCanRedo', onApiCanRedo); - api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); - Common.Notifications.on('toolbar:activatecontrols', activateControls); - Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); - Common.Notifications.on('goback', goBack); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Notifications.on('setdoctitle', setDocTitle); - Common.Gateway.on('init', loadConfig); - } else { - onDocumentReady(); - } + Common.Notifications.on('setdoctitle', setDocTitle); + Common.Gateway.on('init', loadConfig); + Common.Notifications.on('toolbar:activatecontrols', activateControls); + Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); + Common.Notifications.on('goback', goBack); if (isDisconnected) { f7.popover.close(); @@ -42,16 +37,10 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse } return () => { - Common.Notifications.off('document:ready', onDocumentReady); Common.Notifications.off('setdoctitle', setDocTitle); Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); - - const api = Common.EditorApi.get(); - api.asc_unregisterCallback('asc_onCanUndo', onApiCanUndo); - api.asc_unregisterCallback('asc_onCanRedo', onApiCanRedo); - api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject); } }); @@ -106,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse } } - // Undo and Redo - const [isCanUndo, setCanUndo] = useState(true); - const [isCanRedo, setCanRedo] = useState(true); - const onApiCanUndo = (can) => { - if (isDisconnected) return; - setCanUndo(can); - }; - const onApiCanRedo = (can) => { - if (isDisconnected) return; - setCanRedo(can); - }; const onUndo = () => { const api = Common.EditorApi.get(); if (api) { @@ -130,30 +108,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse } } - const [isObjectLocked, setObjectLocked] = useState(false); - const onApiFocusObject = (objects) => { - if (isDisconnected) return; - - if (objects.length > 0) { - const getTopObject = (objects) => { - const arrObj = objects.reverse(); - let obj; - for (let i=0; i { @@ -184,7 +138,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse isCanRedo={isCanRedo} onUndo={onUndo} onRedo={onRedo} - isObjectLocked={isObjectLocked} + isObjectLocked={objectLocked} stateDisplayMode={stateDisplayMode} disabledControls={disabledControls} disabledEditControls={disabledEditControls} diff --git a/apps/documenteditor/mobile/src/store/focusObjects.js b/apps/documenteditor/mobile/src/store/focusObjects.js index 00cba27054..cab6518c7d 100644 --- a/apps/documenteditor/mobile/src/store/focusObjects.js +++ b/apps/documenteditor/mobile/src/store/focusObjects.js @@ -16,7 +16,8 @@ export class storeFocusObjects { tableObject: computed, isTableInStack: computed, chartObject: computed, - linkObject: computed + linkObject: computed, + objectLocked: computed }); } @@ -77,4 +78,25 @@ export class storeFocusObjects { get linkObject() { return !!this.intf ? this.intf.getLinkObject() : null; } + + get objectLocked() { + if (this._focusObjects && this._focusObjects.length > 0) { + const getTopObject = (objects) => { + const arrObj = objects; + let obj; + for (let i=arrObj.length-1; i>=0; i--) { + if (arrObj[i].get_ObjectType() != Asc.c_oAscTypeSelectElement.SpellCheck) { + obj = arrObj[i]; + break; + } + } + return obj; + }; + const topObject = getTopObject(this._focusObjects); + const topObjectValue = topObject.get_ObjectValue(); + const objectLocked = (typeof topObjectValue.get_Locked === 'function') ? topObjectValue.get_Locked() : false; + + return objectLocked; + } + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/store/mainStore.js b/apps/documenteditor/mobile/src/store/mainStore.js index d9a85af99a..d145ad369d 100644 --- a/apps/documenteditor/mobile/src/store/mainStore.js +++ b/apps/documenteditor/mobile/src/store/mainStore.js @@ -15,6 +15,7 @@ import {storeAppOptions} from "./appOptions"; import {storePalette} from "./palette"; import {storeReview} from "./review"; import {storeComments} from "../../../../common/mobile/lib/store/comments"; +import {storeToolbarSettings} from "./toolbar"; export const stores = { storeAppOptions: new storeAppOptions(), @@ -32,6 +33,7 @@ export const stores = { storeApplicationSettings: new storeApplicationSettings(), storePalette: new storePalette(), storeReview: new storeReview(), - storeComments: new storeComments() + storeComments: new storeComments(), + storeToolbarSettings: new storeToolbarSettings() }; From e631e35f5f1e24e35b45807c8bf4f6fcc5c5c09e Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 22 Jul 2021 17:48:46 +0300 Subject: [PATCH 09/21] [PE mobile] Fix adding listeners in toolbar --- .../mobile/src/controller/Main.jsx | 19 ++++- .../mobile/src/controller/Toolbar.jsx | 81 ++++--------------- .../mobile/src/store/focusObjects.js | 25 +++++- .../mobile/src/store/mainStore.js | 4 +- 4 files changed, 59 insertions(+), 70 deletions(-) diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 832eea7459..3eeefcb3e0 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -17,6 +17,7 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. import { Device } from '../../../../common/mobile/utils/device'; @inject( + "users", "storeFocusObjects", "storeAppOptions", "storePresentationInfo", @@ -26,7 +27,8 @@ import { Device } from '../../../../common/mobile/utils/device'; "storeTableSettings", "storeChartSettings", "storeLinkSettings", - "storeApplicationSettings" + "storeApplicationSettings", + "storeToolbarSettings" ) class MainController extends Component { constructor (props) { @@ -388,6 +390,21 @@ class MainController extends Component { // Chart settings EditorUIController.updateChartStyles && EditorUIController.updateChartStyles(this.props.storeChartSettings, this.props.storeFocusObjects); + + // Toolbar settings + + const storeToolbarSettings = this.props.storeToolbarSettings; + this.api.asc_registerCallback('asc_onCanUndo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanUndo(can); + }); + this.api.asc_registerCallback('asc_onCanRedo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanRedo(can); + }); + this.api.asc_registerCallback('asc_onCountPages', (count) => { + storeToolbarSettings.setCountPages(count); + }); } onDocumentContentReady () { diff --git a/apps/presentationeditor/mobile/src/controller/Toolbar.jsx b/apps/presentationeditor/mobile/src/controller/Toolbar.jsx index 5f50b615a7..a1ba3d10d0 100644 --- a/apps/presentationeditor/mobile/src/controller/Toolbar.jsx +++ b/apps/presentationeditor/mobile/src/controller/Toolbar.jsx @@ -4,7 +4,7 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); @@ -14,24 +14,19 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; + const isEditLocked = props.storeFocusObjects.isEditLocked; + + const storeToolbarSettings = props.storeToolbarSettings; + const isCanUndo = storeToolbarSettings.isCanUndo; + const isCanRedo = storeToolbarSettings.isCanRedo; + const disabledPreview = storeToolbarSettings.countPages <= 0; + useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - api.asc_registerCallback('asc_onCanUndo', onApiCanUndo); - api.asc_registerCallback('asc_onCanRedo', onApiCanRedo); - api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); - api.asc_registerCallback('asc_onCountPages', onApiCountPages); - Common.Notifications.on('toolbar:activatecontrols', activateControls); - Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); - Common.Notifications.on('goback', goBack); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Notifications.on('setdoctitle', setDocTitle); - Common.Gateway.on('init', loadConfig); - } else { - onDocumentReady(); - } + Common.Notifications.on('setdoctitle', setDocTitle); + Common.Gateway.on('init', loadConfig); + Common.Notifications.on('toolbar:activatecontrols', activateControls); + Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); + Common.Notifications.on('goback', goBack); if (isDisconnected) { f7.popover.close(); @@ -40,17 +35,10 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { } return () => { - Common.Notifications.off('document:ready', onDocumentReady); Common.Notifications.off('setdoctitle', setDocTitle); Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); - - const api = Common.EditorApi.get(); - api.asc_unregisterCallback('asc_onCanUndo', onApiCanUndo); - api.asc_unregisterCallback('asc_onCanRedo', onApiCanRedo); - api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject); - api.asc_unregisterCallback('asc_onCountPages', onApiCountPages); } }); @@ -107,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { //} } - // Undo and Redo - const [isCanUndo, setCanUndo] = useState(true); - const [isCanRedo, setCanRedo] = useState(true); - const onApiCanUndo = (can) => { - if (isDisconnected) return; - setCanUndo(can); - }; - const onApiCanRedo = (can) => { - if (isDisconnected) return; - setCanRedo(can); - }; const onUndo = () => { const api = Common.EditorApi.get(); if (api) { @@ -131,36 +108,6 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { } } - const [disabledEdit, setDisabledEdit] = useState(false); - const onApiFocusObject = (objects) => { - if (isDisconnected) return; - - if (objects.length > 0) { - let slide_deleted = false, - slide_lock = false, - no_object = true, - objectLocked = false; - objects.forEach((object) => { - const type = object.get_ObjectType(); - const objectValue = object.get_ObjectValue(); - if (type === Asc.c_oAscTypeSelectElement.Slide) { - slide_deleted = objectValue.get_LockDelete(); - slide_lock = objectValue.get_LockLayout() || objectValue.get_LockBackground() || objectValue.get_LockTransition() || objectValue.get_LockTiming(); - } else if (objectValue && typeof objectValue.get_Locked === 'function') { - no_object = false; - objectLocked = objectLocked || objectValue.get_Locked(); - } - }); - - setDisabledEdit(slide_deleted || (objectLocked || no_object) && slide_lock); - } - }; - - const [disabledPreview, setDisabledPreview] = useState(false); - const onApiCountPages = (count) => { - setDisabledPreview(count <= 0); - }; - const [disabledEditControls, setDisabledEditControls] = useState(false); const [disabledSettings, setDisabledSettings] = useState(false); const deactivateEditControls = (enableDownload) => { @@ -192,7 +139,7 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { isCanRedo={isCanRedo} onUndo={onUndo} onRedo={onRedo} - disabledEdit={disabledEdit} + disabledEdit={isEditLocked} disabledPreview={disabledPreview} disabledControls={disabledControls} disabledEditControls={disabledEditControls} diff --git a/apps/presentationeditor/mobile/src/store/focusObjects.js b/apps/presentationeditor/mobile/src/store/focusObjects.js index 2a363150a7..e22ef57c13 100644 --- a/apps/presentationeditor/mobile/src/store/focusObjects.js +++ b/apps/presentationeditor/mobile/src/store/focusObjects.js @@ -14,7 +14,8 @@ export class storeFocusObjects { tableObject: computed, isTableInStack: computed, chartObject: computed, - linkObject: computed + linkObject: computed, + isEditLocked: computed }); } @@ -74,4 +75,26 @@ export class storeFocusObjects { get linkObject() { return !!this.intf ? this.intf.getLinkObject() : null; } + + get isEditLocked() { + if (this._focusObjects.length > 0) { + let slide_deleted = false, + slide_lock = false, + no_object = true, + objectLocked = false; + this._focusObjects.forEach((object) => { + const type = object.get_ObjectType(); + const objectValue = object.get_ObjectValue(); + if (type === Asc.c_oAscTypeSelectElement.Slide) { + slide_deleted = objectValue.get_LockDelete(); + slide_lock = objectValue.get_LockLayout() || objectValue.get_LockBackground() || objectValue.get_LockTransition() || objectValue.get_LockTiming(); + } else if (objectValue && typeof objectValue.get_Locked === 'function') { + no_object = false; + objectLocked = objectLocked || objectValue.get_Locked(); + } + }); + + return (slide_deleted || (objectLocked || no_object) && slide_lock); + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/store/mainStore.js b/apps/presentationeditor/mobile/src/store/mainStore.js index 299a6a63b0..a750c72fbf 100644 --- a/apps/presentationeditor/mobile/src/store/mainStore.js +++ b/apps/presentationeditor/mobile/src/store/mainStore.js @@ -17,6 +17,7 @@ import { storeLinkSettings } from "./linkSettings"; // import {storeShapeSettings} from "./shapeSettings"; // import {storeImageSettings} from "./imageSettings"; import {storeComments} from "../../../../common/mobile/lib/store/comments"; +import {storeToolbarSettings} from "./toolbar"; export const stores = { storeAppOptions: new storeAppOptions(), @@ -37,6 +38,7 @@ export const stores = { // storeParagraphSettings: new storeParagraphSettings(), // storeShapeSettings: new storeShapeSettings(), // storeChartSettings: new storeChartSettings(), - storeComments: new storeComments() + storeComments: new storeComments(), + storeToolbarSettings: new storeToolbarSettings() }; From 0f8d9d4c1a045b7ff14fbe313ef1eb6f02c7b635 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 22 Jul 2021 17:58:48 +0300 Subject: [PATCH 10/21] [DE PE mobile] Add toolbar store --- .../mobile/src/store/toolbar.js | 24 ++++++++++++++ .../mobile/src/store/toolbar.js | 32 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 apps/documenteditor/mobile/src/store/toolbar.js create mode 100644 apps/presentationeditor/mobile/src/store/toolbar.js diff --git a/apps/documenteditor/mobile/src/store/toolbar.js b/apps/documenteditor/mobile/src/store/toolbar.js new file mode 100644 index 0000000000..ff0d1764ac --- /dev/null +++ b/apps/documenteditor/mobile/src/store/toolbar.js @@ -0,0 +1,24 @@ +import {action, observable, makeObservable} from 'mobx'; + +export class storeToolbarSettings { + constructor() { + makeObservable(this, { + isCanUndo: observable, + setCanUndo: action, + isCanRedo: observable, + setCanRedo: action + }) + } + + isCanUndo = false; + + setCanUndo(can) { + this.isCanUndo = can; + } + + isCanRedo = false; + + setCanRedo(can) { + this.isCanRedo = can; + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/store/toolbar.js b/apps/presentationeditor/mobile/src/store/toolbar.js new file mode 100644 index 0000000000..db3a9e87d7 --- /dev/null +++ b/apps/presentationeditor/mobile/src/store/toolbar.js @@ -0,0 +1,32 @@ +import {action, observable, makeObservable} from 'mobx'; + +export class storeToolbarSettings { + constructor() { + makeObservable(this, { + isCanUndo: observable, + setCanUndo: action, + isCanRedo: observable, + setCanRedo: action, + countPages: observable, + setCountPages: action + }) + } + + isCanUndo = false; + + setCanUndo(can) { + this.isCanUndo = can; + } + + isCanRedo = false; + + setCanRedo(can) { + this.isCanRedo = can; + } + + countPages = 0; + + setCountPages(count) { + this.countPages = count; + } +} \ No newline at end of file From ea7a738c5e663bfa8a043f406b3e7705267ec973 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 22 Jul 2021 23:39:06 +0300 Subject: [PATCH 11/21] [DE] Select form placeholder on focus --- apps/documenteditor/main/app/view/FormSettings.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 72fdc4f9f9..fdbabcb023 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -137,6 +137,9 @@ define([ this.lockedControls.push(this.txtPlaceholder); this.txtPlaceholder.on('changed:after', this.onPlaceholderChanged.bind(this)); this.txtPlaceholder.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + this.txtPlaceholder.cmpEl.on('focus', 'input.form-control', function() { + setTimeout(function(){me.txtPlaceholder._input && me.txtPlaceholder._input.select();}, 1); + }); this.textareaHelp = new Common.UI.TextareaField({ el : $markup.findById('#form-txt-help'), From d70ad97b2d4162c6fb5f7417485598fa4c697889 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 23 Jul 2021 00:38:36 +0300 Subject: [PATCH 12/21] [DE mobile] Fix track changes --- apps/common/mobile/lib/controller/collaboration/Review.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index 830ab10dee..1ffa6780d9 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -17,7 +17,10 @@ class InitReview extends Component { Common.Notifications.on('document:ready', () => { const api = Common.EditorApi.get(); const appOptions = props.storeAppOptions; - api.asc_SetTrackRevisions(appOptions.isReviewOnly || LocalStorage.getBool("de-mobile-track-changes-" + (appOptions.fileKey || ''))); + + var trackChanges = typeof (appOptions.customization) == 'object' ? appOptions.customization.trackChanges : undefined; + api.asc_SetTrackRevisions(appOptions.isReviewOnly || trackChanges===true || (trackChanges!==false) && LocalStorage.getBool("de-mobile-track-changes-" + (appOptions.fileKey || ''))); + // Init display mode if (!appOptions.canReview) { const canViewReview = appOptions.isEdit || api.asc_HaveRevisionsChanges(true); From e4b47bc25267d24c669f0bdca589047a79c3288b Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Fri, 23 Jul 2021 16:09:23 +0300 Subject: [PATCH 13/21] [DE PE SSE] Fix Bug 51465 --- apps/documenteditor/mobile/locale/en.json | 2 ++ .../src/view/settings/DocumentSettings.jsx | 16 ++++++++-------- apps/presentationeditor/mobile/locale/en.json | 2 ++ .../src/view/settings/PresentationSettings.jsx | 16 ++++++++-------- apps/spreadsheeteditor/mobile/locale/en.json | 2 ++ .../src/view/settings/SpreadsheetSettings.jsx | 16 ++++++++-------- 6 files changed, 30 insertions(+), 24 deletions(-) diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 428511166a..ee298ad32d 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -559,6 +559,8 @@ "txtScheme18": "Technic", "txtScheme19": "Trek", "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", "txtScheme22": "New Office", "txtScheme3": "Apex", "txtScheme4": "Aspect", diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx index 89111190b5..e9430a4f85 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx @@ -159,20 +159,20 @@ const PageDocumentColorSchemes = props => { const { t } = useTranslation(); const curScheme = props.initPageColorSchemes(); const [stateScheme, setScheme] = useState(curScheme); - const _t = t('Settings', {returnObjects: true}); const storeSettings = props.storeDocumentSettings; const allSchemes = storeSettings.allSchemes; - const SchemeNames = [ - _t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, - _t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, - _t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, - _t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, - _t.txtScheme21, _t.txtScheme22 + const SchemeNames = [ t('Settings.txtScheme22'), + t('Settings.txtScheme1'), t('Settings.txtScheme2'), t('Settings.txtScheme3'), t('Settings.txtScheme4'), + t('Settings.txtScheme5'), t('Settings.txtScheme6'), t('Settings.txtScheme7'), t('Settings.txtScheme8'), + t('Settings.txtScheme9'), t('Settings.txtScheme10'), t('Settings.txtScheme11'), t('Settings.txtScheme12'), + t('Settings.txtScheme13'), t('Settings.txtScheme14'), t('Settings.txtScheme15'), t('Settings.txtScheme16'), + t('Settings.txtScheme17'), t('Settings.txtScheme18'), t('Settings.txtScheme19'), t('Settings.txtScheme20'), + t('Settings.txtScheme21') ]; return ( - + { allSchemes ? allSchemes.map((scheme, index) => { diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index e1178e5225..a05f20bda8 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -452,6 +452,8 @@ "txtScheme18": "Technic", "txtScheme19": "Trek", "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", "txtScheme22": "New Office", "txtScheme3": "Apex", "txtScheme4": "Aspect", diff --git a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx index b04053ca84..0f5b4d39d6 100644 --- a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx @@ -35,20 +35,20 @@ const PagePresentationColorSchemes = props => { const { t } = useTranslation(); const curScheme = props.initPageColorSchemes(); const [stateScheme, setScheme] = useState(curScheme); - const _t = t('View.Settings', {returnObjects: true}); const storePresentationSettings = props.storePresentationSettings; const allSchemes = storePresentationSettings.allSchemes; - const SchemeNames = [ - _t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, - _t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, - _t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, - _t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, - _t.txtScheme21, _t.txtScheme22 + const SchemeNames = [ t('View.Settings.txtScheme22'), + t('View.Settings.txtScheme1'), t('View.Settings.txtScheme2'), t('View.Settings.txtScheme3'), t('View.Settings.txtScheme4'), + t('View.Settings.txtScheme5'), t('View.Settings.txtScheme6'), t('View.Settings.txtScheme7'), t('View.Settings.txtScheme8'), + t('View.Settings.txtScheme9'), t('View.Settings.txtScheme10'), t('View.Settings.txtScheme11'), t('View.Settings.txtScheme12'), + t('View.Settings.txtScheme13'), t('View.Settings.txtScheme14'), t('View.Settings.txtScheme15'), t('View.Settings.txtScheme16'), + t('View.Settings.txtScheme17'), t('View.Settings.txtScheme18'), t('View.Settings.txtScheme19'), t('View.Settings.txtScheme20'), + t('View.Settings.txtScheme21') ]; return ( - + { allSchemes ? allSchemes.map((scheme, index) => { diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index a3ad6925fa..b1794a7a93 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -619,6 +619,8 @@ "txtScheme18": "Technic", "txtScheme19": "Trek", "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", "txtScheme22": "New Office", "txtScheme3": "Apex", "txtScheme4": "Aspect", diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx index 78feb66f40..be2a38fee2 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx @@ -8,20 +8,20 @@ const PageSpreadsheetColorSchemes = props => { const { t } = useTranslation(); const curScheme = props.initPageColorSchemes(); const [stateScheme, setScheme] = useState(curScheme); - const _t = t('View.Settings', {returnObjects: true}); const storeSpreadsheetSettings = props.storeSpreadsheetSettings; const allSchemes = storeSpreadsheetSettings.allSchemes; - const SchemeNames = [ - _t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, - _t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, - _t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, - _t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, - _t.txtScheme21, _t.txtScheme22 + const SchemeNames = [ t('View.Settings.txtScheme22'), + t('View.Settings.txtScheme1'), t('View.Settings.txtScheme2'), t('View.Settings.txtScheme3'), t('View.Settings.txtScheme4'), + t('View.Settings.txtScheme5'), t('View.Settings.txtScheme6'), t('View.Settings.txtScheme7'), t('View.Settings.txtScheme8'), + t('View.Settings.txtScheme9'), t('View.Settings.txtScheme10'), t('View.Settings.txtScheme11'), t('View.Settings.txtScheme12'), + t('View.Settings.txtScheme13'), t('View.Settings.txtScheme14'), t('View.Settings.txtScheme15'), t('View.Settings.txtScheme16'), + t('View.Settings.txtScheme17'), t('View.Settings.txtScheme18'), t('View.Settings.txtScheme19'), t('View.Settings.txtScheme20'), + t('View.Settings.txtScheme21') ]; return ( - + { allSchemes ? allSchemes.map((scheme, index) => { From f305e57396a65dc7dc14c8e5f2fb149f12fd22ac Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 23 Jul 2021 17:40:21 +0300 Subject: [PATCH 14/21] Fix Bug 51487 --- apps/documenteditor/main/app/controller/LeftMenu.js | 7 ++++--- apps/presentationeditor/main/app/controller/LeftMenu.js | 9 +++++---- apps/presentationeditor/main/app/controller/Main.js | 2 +- .../main/app/controller/DocumentHolder.js | 2 +- apps/spreadsheeteditor/main/app/controller/LeftMenu.js | 7 ++++--- 5 files changed, 15 insertions(+), 12 deletions(-) diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 9251da2305..bfeae3d1e3 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -155,7 +155,8 @@ define([ var collection = this.getApplication().getCollection('Common.Collections.Comments'), resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id && (resolved || !collection.at(i).get('resolved'))) { + var comment = collection.at(i); + if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id && (resolved || !comment.get('resolved'))) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -690,14 +691,14 @@ define([ onApiAddComment: function(id, data) { var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); - if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved())) + if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved())) { + if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index 26565ba845..f74bda1b57 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -156,7 +156,8 @@ define([ this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this)); var collection = this.getApplication().getCollection('Common.Collections.Comments'); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id) { + var comment = collection.at(i); + if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -169,6 +170,7 @@ define([ this.leftMenu.getMenu('file').setApi(api); if (this.mode.canUseHistory) this.getApplication().getController('Common.Controllers.History').setApi(this.api).setMode(this.mode); + this.leftMenu.btnThumbs.toggle(true); return this; }, @@ -208,7 +210,6 @@ define([ (this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion); /** coauthoring end **/ Common.util.Shortcuts.resumeEvents(); - this.leftMenu.btnThumbs.toggle(true); return this; }, @@ -578,13 +579,13 @@ define([ }, onApiAddComment: function(id, data) { - if (data && data.asc_getUserId() !== this.mode.user.id) + if (data && data.asc_getUserId() !== this.mode.user.id && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id) { + if (data[i].asc_getUserId() !== this.mode.user.id && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 97d05fbaeb..278e59cb16 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -803,7 +803,7 @@ define([ pluginsController = application.getController('Common.Controllers.Plugins'); leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document}); - leftmenuController.setMode(me.appOptions).setApi(me.api).createDelayedElements(); + leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api); chatController.setApi(this.api).setMode(this.appOptions); application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 7e1ede5503..5e00f02b27 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -682,7 +682,7 @@ define([ var comments = cellinfo.asc_getComments(); if (comments.length) { controller.onEditComments(comments); - } else if (this.permissions.canCoAuthoring || this.commentsCollection.getCommentsReplysCount()<3) { + } else if (this.permissions.canCoAuthoring) { controller.addDummyComment(); } } diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index e60895ed3f..9d17ad6ab9 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -157,7 +157,8 @@ define([ var collection = comments[name], resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id && (resolved || !collection.at(i).get('resolved'))) { + var comment = collection.at(i); + if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id && (resolved || !comment.get('resolved'))) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -718,14 +719,14 @@ define([ onApiAddComment: function(id, data) { var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); - if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved())) + if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved())) { + if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } From e1fc8d4de30042edb217d0e77555179599b6e113 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 23 Jul 2021 19:38:42 +0300 Subject: [PATCH 15/21] Fix Bug 51491 --- apps/documenteditor/main/app/view/FormSettings.js | 1 + apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js | 1 + apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js | 1 + .../main/app/view/ParagraphSettingsAdvanced.js | 1 + apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js | 1 + .../spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js | 1 + 6 files changed, 6 insertions(+) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index fdbabcb023..f1bee80ac9 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -1035,6 +1035,7 @@ define([ }, onSelectItem: function(listView, itemView, record) { + if (!record) return; this.txtNewValue.setValue(record.get('name')); this._state.listValue = record.get('name'); this._state.listIndex = undefined; diff --git a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js index 0ec4e69c21..bb25c2a5de 100644 --- a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -1375,6 +1375,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem }, onSelectTab: function(lisvView, itemView, record) { + if (!record) return; var rawData = {}, isViewSelect = _.isFunction(record.toJSON); diff --git a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js index 9bb50805a0..0b98ddbe8d 100644 --- a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js @@ -416,6 +416,7 @@ define([ }, onSelectItem: function(picker, item, record, e){ + if (!record) return; this.btnOk.setDisabled(record.get('index')==4); if (this.isAutoUpdate) { this.inputDisplay.setValue((record.get('level') || record.get('index')<4) ? record.get('name') : ''); diff --git a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js index 5e33c00feb..57d45949b3 100644 --- a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js @@ -726,6 +726,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced }, onSelectTab: function(lisvView, itemView, record) { + if (!record) return; var rawData = {}, isViewSelect = _.isFunction(record.toJSON); diff --git a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js index a7708b77c0..80b13fbbc3 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js @@ -348,6 +348,7 @@ define([ }, onSelectStyles: function(dataView, itemView, record) { + if (!record) return; this.chartSettings.putStyle(record.get('data')); }, diff --git a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js index 06775e9c64..ebe91e7170 100644 --- a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -721,6 +721,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced. }, onSelectTab: function(lisvView, itemView, record) { + if (!record) return; var rawData = {}, isViewSelect = _.isFunction(record.toJSON); From fb325aaa19ed91c777df239fdaf1428f9aafa61a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 23 Jul 2021 20:08:13 +0300 Subject: [PATCH 16/21] Update translation --- apps/documenteditor/embed/locale/ca.json | 4 + apps/documenteditor/embed/locale/de.json | 4 + apps/documenteditor/embed/locale/el.json | 4 + apps/documenteditor/embed/locale/es.json | 4 + apps/documenteditor/embed/locale/fr.json | 4 + apps/documenteditor/embed/locale/nl.json | 13 + apps/documenteditor/embed/locale/pt.json | 4 + apps/documenteditor/embed/locale/ro.json | 15 +- apps/documenteditor/embed/locale/zh.json | 4 + apps/documenteditor/main/locale/ca.json | 10 + apps/documenteditor/main/locale/de.json | 10 + apps/documenteditor/main/locale/el.json | 12 +- apps/documenteditor/main/locale/es.json | 10 + apps/documenteditor/main/locale/fr.json | 68 +- apps/documenteditor/main/locale/nl.json | 20 +- apps/documenteditor/main/locale/pt.json | 10 + apps/documenteditor/main/locale/ro.json | 25 +- apps/documenteditor/mobile/locale/ca.json | 64 +- apps/documenteditor/mobile/locale/de.json | 62 +- apps/documenteditor/mobile/locale/fr.json | 569 +++++++- apps/documenteditor/mobile/locale/nl.json | 1178 ++++++++------- apps/documenteditor/mobile/locale/pt.json | 119 +- apps/documenteditor/mobile/locale/ro.json | 1178 ++++++++------- apps/documenteditor/mobile/locale/ru.json | 64 +- apps/documenteditor/mobile/locale/tr.json | 75 +- apps/presentationeditor/embed/locale/ca.json | 2 + apps/presentationeditor/embed/locale/de.json | 2 + apps/presentationeditor/embed/locale/el.json | 2 + apps/presentationeditor/embed/locale/es.json | 2 + apps/presentationeditor/embed/locale/fr.json | 2 + apps/presentationeditor/embed/locale/nl.json | 3 + apps/presentationeditor/embed/locale/pt.json | 2 + apps/presentationeditor/embed/locale/ro.json | 4 +- apps/presentationeditor/embed/locale/zh.json | 2 + apps/presentationeditor/main/locale/ca.json | 1 + apps/presentationeditor/main/locale/de.json | 1 + apps/presentationeditor/main/locale/el.json | 3 +- apps/presentationeditor/main/locale/es.json | 1 + apps/presentationeditor/main/locale/fr.json | 50 +- apps/presentationeditor/main/locale/nl.json | 16 +- apps/presentationeditor/main/locale/pt.json | 8 + apps/presentationeditor/main/locale/ro.json | 5 +- apps/presentationeditor/main/locale/ru.json | 7 + apps/presentationeditor/mobile/locale/ca.json | 28 +- apps/presentationeditor/mobile/locale/de.json | 28 +- apps/presentationeditor/mobile/locale/fr.json | 411 +++++- apps/presentationeditor/mobile/locale/nl.json | 462 +++++- apps/presentationeditor/mobile/locale/pt.json | 127 +- apps/presentationeditor/mobile/locale/ro.json | 1033 ++++++------- apps/presentationeditor/mobile/locale/ru.json | 28 +- apps/spreadsheeteditor/embed/locale/ca.json | 2 + apps/spreadsheeteditor/embed/locale/de.json | 2 + apps/spreadsheeteditor/embed/locale/el.json | 2 + apps/spreadsheeteditor/embed/locale/es.json | 2 + apps/spreadsheeteditor/embed/locale/fr.json | 2 + apps/spreadsheeteditor/embed/locale/nl.json | 3 + apps/spreadsheeteditor/embed/locale/pt.json | 2 + apps/spreadsheeteditor/embed/locale/ro.json | 4 +- apps/spreadsheeteditor/embed/locale/zh.json | 2 + apps/spreadsheeteditor/main/locale/ca.json | 11 + apps/spreadsheeteditor/main/locale/de.json | 11 + apps/spreadsheeteditor/main/locale/en.json | 6 +- apps/spreadsheeteditor/main/locale/es.json | 7 + apps/spreadsheeteditor/main/locale/fr.json | 78 +- apps/spreadsheeteditor/main/locale/nl.json | 295 +++- apps/spreadsheeteditor/main/locale/pt.json | 12 + apps/spreadsheeteditor/main/locale/ro.json | 71 +- apps/spreadsheeteditor/main/locale/ru.json | 7 +- apps/spreadsheeteditor/mobile/locale/ca.json | 65 +- apps/spreadsheeteditor/mobile/locale/de.json | 65 +- apps/spreadsheeteditor/mobile/locale/en.json | 4 +- apps/spreadsheeteditor/mobile/locale/fr.json | 369 ++++- apps/spreadsheeteditor/mobile/locale/nl.json | 1290 ++++++++--------- apps/spreadsheeteditor/mobile/locale/pt.json | 785 ++-------- apps/spreadsheeteditor/mobile/locale/ro.json | 597 +++++++- apps/spreadsheeteditor/mobile/locale/ru.json | 65 +- apps/spreadsheeteditor/mobile/locale/zh.json | 1 + 77 files changed, 6213 insertions(+), 3307 deletions(-) diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index b91723786a..319f01d6fd 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "DE.ApplicationController.notcriticalErrorTitle": "Avis", "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "DE.ApplicationController.textAnonymous": "Anònim", "DE.ApplicationController.textClear": "Esborrar tots els camps", + "DE.ApplicationController.textGotIt": "Ho tinc", + "DE.ApplicationController.textGuest": "Convidat", "DE.ApplicationController.textLoadingDocument": "Carregant document", "DE.ApplicationController.textNext": "Següent camp", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Ompli tots els camps requerits per enviar el formulari.", "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulari enviat amb èxit
    Faci clic per a tancar el consell", "DE.ApplicationController.txtClose": "Tancar", diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json index 8304142d96..09023d4de0 100644 --- a/apps/documenteditor/embed/locale/de.json +++ b/apps/documenteditor/embed/locale/de.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.", "DE.ApplicationController.notcriticalErrorTitle": "Warnung", "DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", + "DE.ApplicationController.textAnonymous": "Anonym", "DE.ApplicationController.textClear": "Alle Felder löschen", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Dokument wird geladen...", "DE.ApplicationController.textNext": "Nächstes Feld", "DE.ApplicationController.textOf": "von", + "DE.ApplicationController.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.", "DE.ApplicationController.textSubmit": "Senden", "DE.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
    Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.txtClose": "Schließen", diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index a2f03f2e6c..2a30fac8dc 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "DE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", + "DE.ApplicationController.textAnonymous": "Ανώνυμος", "DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων", + "DE.ApplicationController.textGotIt": "Ελήφθη", + "DE.ApplicationController.textGuest": "Επισκέπτης", "DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου", "DE.ApplicationController.textNext": "Επόμενο Πεδίο", "DE.ApplicationController.textOf": "του", + "DE.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.", "DE.ApplicationController.textSubmit": "Υποβολή", "DE.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
    Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.txtClose": "Κλείσιμο", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index 0982a0c1f4..de92ca281a 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.", + "DE.ApplicationController.textAnonymous": "Anónimo", "DE.ApplicationController.textClear": "Borrar todos los campos", + "DE.ApplicationController.textGotIt": "Entiendo", + "DE.ApplicationController.textGuest": "Invitado", "DE.ApplicationController.textLoadingDocument": "Cargando documento", "DE.ApplicationController.textNext": "Campo siguiente", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
    Haga clic para cerrar el consejo", "DE.ApplicationController.txtClose": "Cerrar", diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 4ad3bb1e22..c56b67a2fd 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "DE.ApplicationController.notcriticalErrorTitle": "Avertissement", "DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "DE.ApplicationController.textAnonymous": "Anonyme", "DE.ApplicationController.textClear": "Effacer tous les champs", + "DE.ApplicationController.textGotIt": "C'est compris", + "DE.ApplicationController.textGuest": "Invité", "DE.ApplicationController.textLoadingDocument": "Chargement du document", "DE.ApplicationController.textNext": "Champ suivant", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.", "DE.ApplicationController.textSubmit": "Soumettre ", "DE.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
    Cliquez ici pour fermer l'astuce", "DE.ApplicationController.txtClose": "Fermer", diff --git a/apps/documenteditor/embed/locale/nl.json b/apps/documenteditor/embed/locale/nl.json index c17b005676..424c279f00 100644 --- a/apps/documenteditor/embed/locale/nl.json +++ b/apps/documenteditor/embed/locale/nl.json @@ -11,20 +11,33 @@ "DE.ApplicationController.downloadTextText": "Document wordt gedownload...", "DE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
    Neem contact op met de beheerder van de documentserver.", "DE.ApplicationController.errorDefaultMessage": "Foutcode: %1", + "DE.ApplicationController.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.
    Gebruik de 'Opslaan als...' optie om het bestand als back-upkopie op te slaan op uw computer.", "DE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", "DE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
    Neem contact op met uw Document Server-beheerder voor details.", + "DE.ApplicationController.errorSubmit": "Verzenden mislukt. ", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "DE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", + "DE.ApplicationController.textAnonymous": "Anoniem", + "DE.ApplicationController.textClear": "Wis Alle Velden", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Document wordt geladen", + "DE.ApplicationController.textNext": "Volgend veld ", "DE.ApplicationController.textOf": "van", + "DE.ApplicationController.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.", + "DE.ApplicationController.textSubmit": "Verzenden ", + "DE.ApplicationController.textSubmited": "Formulier succesvol ingediend
    Klik om de tip te sluiten", "DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "DE.ApplicationController.waitText": "Een moment geduld", "DE.ApplicationView.txtDownload": "Downloaden", + "DE.ApplicationView.txtDownloadDocx": "Downloaden als docx", + "DE.ApplicationView.txtDownloadPdf": "Downloaden als PDF", "DE.ApplicationView.txtEmbed": "Invoegen", + "DE.ApplicationView.txtFileLocation": "Open bestandslocatie", "DE.ApplicationView.txtFullScreen": "Volledig scherm", "DE.ApplicationView.txtPrint": "Afdrukken", "DE.ApplicationView.txtShare": "Delen" diff --git a/apps/documenteditor/embed/locale/pt.json b/apps/documenteditor/embed/locale/pt.json index a61f4e5f3e..ec784e55d4 100644 --- a/apps/documenteditor/embed/locale/pt.json +++ b/apps/documenteditor/embed/locale/pt.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", + "DE.ApplicationController.textAnonymous": "Anônimo", "DE.ApplicationController.textClear": "Limpar todos os campos", + "DE.ApplicationController.textGotIt": "Entendi", + "DE.ApplicationController.textGuest": "Convidado(a)", "DE.ApplicationController.textLoadingDocument": "Carregando documento", "DE.ApplicationController.textNext": "Próximo campo", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulário apresentado com sucesso>br>Click para fechar a ponta", "DE.ApplicationController.txtClose": "Fechar", diff --git a/apps/documenteditor/embed/locale/ro.json b/apps/documenteditor/embed/locale/ro.json index 0a69dd72df..2916153cc1 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -11,20 +11,33 @@ "DE.ApplicationController.downloadTextText": "Descărcarea documentului...", "DE.ApplicationController.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", "DE.ApplicationController.errorDefaultMessage": "Codul de eroare: %1", + "DE.ApplicationController.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca...", "DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "DE.ApplicationController.errorSubmit": "Remiterea eșuată.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", "DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "DE.ApplicationController.notcriticalErrorTitle": "Avertisment", "DE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "DE.ApplicationController.textAnonymous": "Anonim", + "DE.ApplicationController.textClear": "Goleşte toate câmpurile", + "DE.ApplicationController.textGotIt": "Am înțeles", + "DE.ApplicationController.textGuest": "Invitat", "DE.ApplicationController.textLoadingDocument": "Încărcare document", + "DE.ApplicationController.textNext": "Câmpul următor", "DE.ApplicationController.textOf": "din", + "DE.ApplicationController.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.", + "DE.ApplicationController.textSubmit": "Remitere", + "DE.ApplicationController.textSubmited": "Formularul a fost remis cu succes
    Faceţi clic pentru a închide sfatul", "DE.ApplicationController.txtClose": "Închidere", - "DE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", + "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...", "DE.ApplicationView.txtDownload": "Descărcare", + "DE.ApplicationView.txtDownloadDocx": "Descărcare ca docx", + "DE.ApplicationView.txtDownloadPdf": "Descărcare ca pdf", "DE.ApplicationView.txtEmbed": "Încorporare", + "DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului", "DE.ApplicationView.txtFullScreen": "Ecran complet", "DE.ApplicationView.txtPrint": "Imprimare", "DE.ApplicationView.txtShare": "Partajează" diff --git a/apps/documenteditor/embed/locale/zh.json b/apps/documenteditor/embed/locale/zh.json index 16ef5651ec..24883a8220 100644 --- a/apps/documenteditor/embed/locale/zh.json +++ b/apps/documenteditor/embed/locale/zh.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", + "DE.ApplicationController.textAnonymous": "匿名", "DE.ApplicationController.textClear": "清除所有字段", + "DE.ApplicationController.textGotIt": "知道了", + "DE.ApplicationController.textGuest": "访客", "DE.ApplicationController.textLoadingDocument": "文件加载中…", "DE.ApplicationController.textNext": "下一域", "DE.ApplicationController.textOf": "的", + "DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。", "DE.ApplicationController.textSubmit": "提交", "DE.ApplicationController.textSubmited": "表单成功地被提交了
    点击以关闭贴士", "DE.ApplicationController.txtClose": "关闭", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 3905ab5373..7bd6a874c6 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació", "DE.Views.FileMenuPanels.Settings.txtWin": "com Windows", + "DE.Views.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAspect": "Blocar relació d'aspecte", + "DE.Views.FormSettings.textAutofit": "AutoAjustar", "DE.Views.FormSettings.textCheckbox": "\nCasella de selecció", "DE.Views.FormSettings.textColor": "Color Vora", "DE.Views.FormSettings.textComb": "Pinta de caràcters", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Clau", "DE.Views.FormSettings.textLock": "Bloqueja", "DE.Views.FormSettings.textMaxChars": "Límit de caràcters", + "DE.Views.FormSettings.textMulti": "Camp multilínia", + "DE.Views.FormSettings.textNever": "Mai", "DE.Views.FormSettings.textNoBorder": "Sense vora", "DE.Views.FormSettings.textPlaceholder": "Marcador de posició", "DE.Views.FormSettings.textRadiobox": "Botó d'opció", "DE.Views.FormSettings.textRequired": "Requerit", + "DE.Views.FormSettings.textScale": "Quan escalar", "DE.Views.FormSettings.textSelectImage": "Seleccionar imatge", "DE.Views.FormSettings.textTip": "Consell", "DE.Views.FormSettings.textTipAdd": "Afegeir nou valor", "DE.Views.FormSettings.textTipDelete": "Suprimeix el valor", "DE.Views.FormSettings.textTipDown": "Mou avall", "DE.Views.FormSettings.textTipUp": "Mou amunt", + "DE.Views.FormSettings.textTooBig": "La Imatge és Massa Gran", + "DE.Views.FormSettings.textTooSmall": "La Imatge és Massa Petita", "DE.Views.FormSettings.textUnlock": "Desbloquejar", "DE.Views.FormSettings.textValue": "Opcions de valor", "DE.Views.FormSettings.textWidth": "Ample de cel·la", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Paràmetres de ressaltat", "DE.Views.FormsTab.textNewColor": "Afegeix Color Personalitzat Nou", "DE.Views.FormsTab.textNoHighlight": "Sense ressaltat", + "DE.Views.FormsTab.textRequired": "Ompli tots els camps requerits per enviar el formulari.", "DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament", "DE.Views.FormsTab.tipCheckBox": "Insereix casella de selecció", "DE.Views.FormsTab.tipComboBox": "Insereix casella de combinació", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Escala de Gris", "DE.Views.Toolbar.txtScheme20": "Urbà", "DE.Views.Toolbar.txtScheme21": "Empenta", + "DE.Views.Toolbar.txtScheme22": "Nova Oficina", "DE.Views.Toolbar.txtScheme3": "Vèrtex", "DE.Views.Toolbar.txtScheme4": "Aspecte", "DE.Views.Toolbar.txtScheme5": "Cívic", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 01a349e4ef..ecfbca9c6f 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Benachrichtigung anzeigen", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren", "DE.Views.FileMenuPanels.Settings.txtWin": "wie Windows", + "DE.Views.FormSettings.textAlways": "Immer", + "DE.Views.FormSettings.textAspect": "Seitenverhältnis sperren", + "DE.Views.FormSettings.textAutofit": "Automatisch anpassen", "DE.Views.FormSettings.textCheckbox": "Kontrollkästchen", "DE.Views.FormSettings.textColor": "Rahmenfarbe", "DE.Views.FormSettings.textComb": "Zeichenanzahl in Textfeld", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Schlüssel", "DE.Views.FormSettings.textLock": "Sperren", "DE.Views.FormSettings.textMaxChars": "Zeichengrenze", + "DE.Views.FormSettings.textMulti": "Mehrzeiliges Feld", + "DE.Views.FormSettings.textNever": "Nie", "DE.Views.FormSettings.textNoBorder": "Kein Rahmen", "DE.Views.FormSettings.textPlaceholder": "Platzhalter", "DE.Views.FormSettings.textRadiobox": "Radiobutton", "DE.Views.FormSettings.textRequired": "Erforderlich", + "DE.Views.FormSettings.textScale": "Wann skalieren", "DE.Views.FormSettings.textSelectImage": "Bild auswählen", "DE.Views.FormSettings.textTip": "Tipp", "DE.Views.FormSettings.textTipAdd": "Neuen Wert hinzufügen", "DE.Views.FormSettings.textTipDelete": "Den Wert löschen", "DE.Views.FormSettings.textTipDown": "Nach unten bewegen", "DE.Views.FormSettings.textTipUp": "Nach oben bewegen", + "DE.Views.FormSettings.textTooBig": "Das Bild ist zu groß", + "DE.Views.FormSettings.textTooSmall": "Das Bild ist zu klein", "DE.Views.FormSettings.textUnlock": "Entsperren", "DE.Views.FormSettings.textValue": "Optionen von Werten", "DE.Views.FormSettings.textWidth": "Zeilenbreite", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Einstellungen für Hervorhebungen", "DE.Views.FormsTab.textNewColor": "Benutzerdefinierte Farbe", "DE.Views.FormsTab.textNoHighlight": "Ohne Hervorhebung", + "DE.Views.FormsTab.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.", "DE.Views.FormsTab.textSubmited": "Das Formular wurde erfolgreich versandt", "DE.Views.FormsTab.tipCheckBox": "Checkbox einfügen", "DE.Views.FormsTab.tipComboBox": "Combobox einfügen", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Graustufe", "DE.Views.Toolbar.txtScheme20": "Rhea", "DE.Views.Toolbar.txtScheme21": "Telesto", + "DE.Views.Toolbar.txtScheme22": "Neues Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Aspekt ", "DE.Views.Toolbar.txtScheme5": "bürgerlich", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index cfe438cefc..61c48162a4 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -846,7 +846,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εγγράφου.", "DE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "DE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "DE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εικόνας.", + "DE.Controllers.Main.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "DE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...", "DE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας", "DE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", "DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows", + "DE.Views.FormSettings.textAlways": "Πάντα", + "DE.Views.FormSettings.textAspect": "Κλείδωμα αναλογίας", + "DE.Views.FormSettings.textAutofit": "Αυτόματο Ταίριασμα", "DE.Views.FormSettings.textCheckbox": "Πλαίσιο επιλογής", "DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος", "DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Κλειδί", "DE.Views.FormSettings.textLock": "Κλείδωμα", "DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων", + "DE.Views.FormSettings.textMulti": "Πεδίο πολλών γραμμών", + "DE.Views.FormSettings.textNever": "Ποτέ", "DE.Views.FormSettings.textNoBorder": "Χωρίς περίγραμμα", "DE.Views.FormSettings.textPlaceholder": "Δέσμευση Θέσης", "DE.Views.FormSettings.textRadiobox": "Κουμπί Επιλογής", "DE.Views.FormSettings.textRequired": "Απαιτείται", + "DE.Views.FormSettings.textScale": "Πότε να γίνεται κλιμάκωση", "DE.Views.FormSettings.textSelectImage": "Επιλογή Εικόνας", "DE.Views.FormSettings.textTip": "Υπόδειξη", "DE.Views.FormSettings.textTipAdd": "Προσθήκη νέας τιμής", "DE.Views.FormSettings.textTipDelete": "Διαγραφή τιμής", "DE.Views.FormSettings.textTipDown": "Μετακίνηση κάτω", "DE.Views.FormSettings.textTipUp": "Μετακίνηση πάνω", + "DE.Views.FormSettings.textTooBig": "Η Εικόνα είναι Πολύ Μεγάλη", + "DE.Views.FormSettings.textTooSmall": "Η Εικόνα είναι Πολύ Μικρή", "DE.Views.FormSettings.textUnlock": "Ξεκλείδωμα", "DE.Views.FormSettings.textValue": "Επιλογές Τιμής", "DE.Views.FormSettings.textWidth": "Πλάτος κελιού", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης", "DE.Views.FormsTab.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", "DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση", + "DE.Views.FormsTab.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.", "DE.Views.FormsTab.textSubmited": "Η φόρμα υποβλήθηκε επιτυχώς", "DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής", "DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι", "DE.Views.Toolbar.txtScheme20": "Αστικό", "DE.Views.Toolbar.txtScheme21": "Οίστρος", + "DE.Views.Toolbar.txtScheme22": "Νέο Γραφείο", "DE.Views.Toolbar.txtScheme3": "Άκρο", "DE.Views.Toolbar.txtScheme4": "Άποψη", "DE.Views.Toolbar.txtScheme5": "Κυβικό", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index a817633800..8de0d19a92 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "DE.Views.FormSettings.textAlways": "Siempre", + "DE.Views.FormSettings.textAspect": "Bloquear relación de aspecto", + "DE.Views.FormSettings.textAutofit": "Autoajustar", "DE.Views.FormSettings.textCheckbox": "Casilla", "DE.Views.FormSettings.textColor": "Color de borde", "DE.Views.FormSettings.textComb": "Peine de caracteres", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Clave", "DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textMaxChars": "Límite de caracteres", + "DE.Views.FormSettings.textMulti": "Campo multilínea", + "DE.Views.FormSettings.textNever": "Nunca", "DE.Views.FormSettings.textNoBorder": "Sin bordes", "DE.Views.FormSettings.textPlaceholder": "Marcador de posición", "DE.Views.FormSettings.textRadiobox": "Botón de opción", "DE.Views.FormSettings.textRequired": "Necesario", + "DE.Views.FormSettings.textScale": "Cuándo escalar", "DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen", "DE.Views.FormSettings.textTip": "Sugerencia", "DE.Views.FormSettings.textTipAdd": "Agregar nuevo valor", "DE.Views.FormSettings.textTipDelete": "Eliminar valor", "DE.Views.FormSettings.textTipDown": "Mover hacia abajo", "DE.Views.FormSettings.textTipUp": "Mover hacia arriba", + "DE.Views.FormSettings.textTooBig": "La imagen es demasiado grande", + "DE.Views.FormSettings.textTooSmall": "La imagen es demasiado pequeña", "DE.Views.FormSettings.textUnlock": "Desbloquear", "DE.Views.FormSettings.textValue": "Opciones de valor", "DE.Views.FormSettings.textWidth": "Ancho de celda", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Ajustes de resaltado", "DE.Views.FormsTab.textNewColor": "Color personalizado", "DE.Views.FormsTab.textNoHighlight": "No resaltar", + "DE.Views.FormsTab.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", "DE.Views.FormsTab.textSubmited": "El formulario se ha enviado correctamente", "DE.Views.FormsTab.tipCheckBox": "Insertar casilla", "DE.Views.FormsTab.tipComboBox": "Insertar cuadro combinado", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Escala de grises", "DE.Views.Toolbar.txtScheme20": "Urbano", "DE.Views.Toolbar.txtScheme21": "Brío", + "DE.Views.Toolbar.txtScheme22": "Nueva oficina", "DE.Views.Toolbar.txtScheme3": "Vértice", "DE.Views.Toolbar.txtScheme4": "Aspecto", "DE.Views.Toolbar.txtScheme5": "Civil", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 4452b337f8..2e302b8e26 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -23,7 +23,7 @@ "Common.Controllers.ReviewChanges.textColor": "Couleur de police", "Common.Controllers.ReviewChanges.textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style", "Common.Controllers.ReviewChanges.textDeleted": "Supprimé:", - "Common.Controllers.ReviewChanges.textDStrikeout": "Double barré", + "Common.Controllers.ReviewChanges.textDStrikeout": "Barré double", "Common.Controllers.ReviewChanges.textEquation": "Équation", "Common.Controllers.ReviewChanges.textExact": "exactement", "Common.Controllers.ReviewChanges.textFirstLine": "Première ligne", @@ -40,7 +40,7 @@ "Common.Controllers.ReviewChanges.textKeepNext": "Paragraphes solidaires", "Common.Controllers.ReviewChanges.textLeft": "Aligner à gauche", "Common.Controllers.ReviewChanges.textLineSpacing": "Interligne:", - "Common.Controllers.ReviewChanges.textMultiple": "Plusieurs", + "Common.Controllers.ReviewChanges.textMultiple": "multiple ", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Pas de saut de page avant", "Common.Controllers.ReviewChanges.textNoContextual": "Ajouter un intervalle entre les paragraphes du même style", "Common.Controllers.ReviewChanges.textNoKeepLines": "Ne gardez pas de lignes ensemble", @@ -201,7 +201,7 @@ "Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtMail": "émail: ", - "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtPoweredBy": "Réalisation", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", @@ -505,7 +505,7 @@ "DE.Controllers.Main.errorCompare": "La fonctionnalité «‎ Comparaison des documents » n'est pas disponible lors de co-édition.", "DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", "DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.", - "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", + "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", "DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", "DE.Controllers.Main.errorDirectUrl": "Vérifiez le lien vers le document.
    Assurez-vous que c'est un lien de téléchargement direct. ", @@ -516,9 +516,9 @@ "DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ", "DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", "DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", - "DE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré", + "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "DE.Controllers.Main.errorMailMergeLoadFile": "Échec de chargement du document. Merci de choisir un autre fichier.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Fusionner échoué.", + "DE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", "DE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", "DE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "DE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", @@ -584,7 +584,7 @@ "DE.Controllers.Main.textLoadingDocument": "Chargement du document", "DE.Controllers.Main.textLongName": "Entrez un nom inférieur à 128 caractères.", "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", - "DE.Controllers.Main.textPaidFeature": "Fonction payée", + "DE.Controllers.Main.textPaidFeature": "Fonction payante", "DE.Controllers.Main.textRemember": "Se souvenir de mon choix pour tous les fichiers", "DE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "DE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -607,7 +607,7 @@ "DE.Controllers.Main.txtClickToLoad": "Cliquez pour charger une image", "DE.Controllers.Main.txtCurrentDocument": "Document actuel", "DE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "DE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", + "DE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "DE.Controllers.Main.txtEndOfFormula": "Fin de Formule Inattendue.", "DE.Controllers.Main.txtEnterDate": "Entrer une date", "DE.Controllers.Main.txtErrorLoadHistory": "Chargement de histoire a échoué", @@ -846,7 +846,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "La taille du fichier dépasse la limite autorisée.", "DE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "DE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", - "DE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", + "DE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "DE.Controllers.Main.uploadImageTextText": "Chargement d'une image...", "DE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "DE.Controllers.Main.waitText": "Veuillez patienter...", @@ -871,7 +871,7 @@ "DE.Controllers.Toolbar.notcriticalErrorTitle": "Avertissement", "DE.Controllers.Toolbar.textAccent": "Types d'accentuation", "DE.Controllers.Toolbar.textBracket": "Crochets", - "DE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image", + "DE.Controllers.Toolbar.textEmptyImgUrl": "Spécifiez l'URL de l'image", "DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.
    Entrez une valeur numérique entre 1 et 300", "DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFunction": "Fonctions", @@ -1360,7 +1360,7 @@ "DE.Views.DocumentHolder.alignmentText": "Alignement", "DE.Views.DocumentHolder.belowText": "En dessous", "DE.Views.DocumentHolder.breakBeforeText": "Saut de page avant", - "DE.Views.DocumentHolder.bulletsText": "Puces et Numérotation", + "DE.Views.DocumentHolder.bulletsText": "Puces et Numéros", "DE.Views.DocumentHolder.cellAlignText": "Alignement vertical de la cellule", "DE.Views.DocumentHolder.cellText": "Cellule", "DE.Views.DocumentHolder.centerText": "Centre", @@ -1392,7 +1392,7 @@ "DE.Views.DocumentHolder.insertText": "Insérer", "DE.Views.DocumentHolder.keepLinesText": "Lignes solidaires", "DE.Views.DocumentHolder.langText": "Sélectionner la langue", - "DE.Views.DocumentHolder.leftText": "A gauche", + "DE.Views.DocumentHolder.leftText": "À gauche", "DE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "DE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "DE.Views.DocumentHolder.moreText": "Plus de variantes...", @@ -1598,7 +1598,7 @@ "DE.Views.DropcapSettingsAdvanced.textInline": "Cadre en ligne", "DE.Views.DropcapSettingsAdvanced.textInMargin": "Dans la marge", "DE.Views.DropcapSettingsAdvanced.textInText": "Dans le texte", - "DE.Views.DropcapSettingsAdvanced.textLeft": "A gauche", + "DE.Views.DropcapSettingsAdvanced.textLeft": "À gauche", "DE.Views.DropcapSettingsAdvanced.textMargin": "Marge", "DE.Views.DropcapSettingsAdvanced.textMove": "Déplacer avec le texte", "DE.Views.DropcapSettingsAdvanced.textNone": "Aucune", @@ -1734,9 +1734,12 @@ "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Vérification de l'orthographe", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Désactiver tout", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Désactiver toutes les macros sans notification", - "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Montrer la notification", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Montrer la notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Désactiver toutes les macros avec notification", "DE.Views.FileMenuPanels.Settings.txtWin": "comme Windows", + "DE.Views.FormSettings.textAlways": "Toujour", + "DE.Views.FormSettings.textAspect": "Verrouiller les proportions", + "DE.Views.FormSettings.textAutofit": "Ajuster automatiquement", "DE.Views.FormSettings.textCheckbox": "Case à cocher", "DE.Views.FormSettings.textColor": "Couleur de bordure.", "DE.Views.FormSettings.textComb": "Peigne de caractères ", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Clé", "DE.Views.FormSettings.textLock": "Verrou ", "DE.Views.FormSettings.textMaxChars": "Limite de caractères", + "DE.Views.FormSettings.textMulti": "Champ de saisie à plusieurs lignes", + "DE.Views.FormSettings.textNever": "Jamais", "DE.Views.FormSettings.textNoBorder": "Sans bordures", "DE.Views.FormSettings.textPlaceholder": "Espace réservé", "DE.Views.FormSettings.textRadiobox": "Bouton radio", "DE.Views.FormSettings.textRequired": "Requis", + "DE.Views.FormSettings.textScale": "Mise à l'échelle", "DE.Views.FormSettings.textSelectImage": "Sélectionner une image", "DE.Views.FormSettings.textTip": "Conseil", "DE.Views.FormSettings.textTipAdd": "Ajouter une nouvelle valeur", "DE.Views.FormSettings.textTipDelete": "Supprimer la valeur", "DE.Views.FormSettings.textTipDown": "Descendre", "DE.Views.FormSettings.textTipUp": "Monter", + "DE.Views.FormSettings.textTooBig": "L'image semble trop grande", + "DE.Views.FormSettings.textTooSmall": "L'image semble trop petite", "DE.Views.FormSettings.textUnlock": "Déverrouiller", "DE.Views.FormSettings.textValue": "Options de valeur", "DE.Views.FormSettings.textWidth": "Largeur de cellule", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Paramètres de surbrillance", "DE.Views.FormsTab.textNewColor": "Couleur personnalisée", "DE.Views.FormsTab.textNoHighlight": "Pas de surbrillance ", + "DE.Views.FormsTab.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.", "DE.Views.FormsTab.textSubmited": "Formulaire soumis avec succès", "DE.Views.FormsTab.tipCheckBox": "Insérer une case à cocher", "DE.Views.FormsTab.tipComboBox": "Insérer une zone de liste déroulante", @@ -1800,7 +1809,7 @@ "DE.Views.HeaderFooterSettings.textBottomRight": "En bas à droite", "DE.Views.HeaderFooterSettings.textDiffFirst": "Première page différente", "DE.Views.HeaderFooterSettings.textDiffOdd": "Pages paires et impaires différentes", - "DE.Views.HeaderFooterSettings.textFrom": "Début", + "DE.Views.HeaderFooterSettings.textFrom": "Commencer par", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Pied de page à partir du bas", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "En-tête à partir du haut", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insérer à la position actuelle", @@ -1889,7 +1898,7 @@ "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement", "DE.Views.ImageSettingsAdvanced.textJoinType": "Type de jointure", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proportions constantes", - "DE.Views.ImageSettingsAdvanced.textLeft": "A gauche", + "DE.Views.ImageSettingsAdvanced.textLeft": "À gauche", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche", "DE.Views.ImageSettingsAdvanced.textLine": "Ligne", "DE.Views.ImageSettingsAdvanced.textLineStyle": "Style de la ligne", @@ -1932,12 +1941,12 @@ "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Au travers", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Rapproché", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Haut et bas", - "DE.Views.LeftMenu.tipAbout": "Au sujet de", + "DE.Views.LeftMenu.tipAbout": "À propos", "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Commentaires", "DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipPlugins": "Plug-ins", - "DE.Views.LeftMenu.tipSearch": "Recherche", + "DE.Views.LeftMenu.tipSearch": "Rechercher", "DE.Views.LeftMenu.tipSupport": "Commentaires & assistance", "DE.Views.LeftMenu.tipTitles": "Titres", "DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", @@ -1994,7 +2003,7 @@ "DE.Views.Links.titleUpdateTOF": "Rafraichir la table des figures", "DE.Views.ListSettingsDialog.textAuto": "Automatique", "DE.Views.ListSettingsDialog.textCenter": "Au centre", - "DE.Views.ListSettingsDialog.textLeft": "A gauche", + "DE.Views.ListSettingsDialog.textLeft": "À gauche", "DE.Views.ListSettingsDialog.textLevel": "Niveau", "DE.Views.ListSettingsDialog.textPreview": "Aperçu", "DE.Views.ListSettingsDialog.textRight": "A droite", @@ -2085,7 +2094,7 @@ "DE.Views.NoteSettingsDialog.textPageBottom": "Bas de page", "DE.Views.NoteSettingsDialog.textSectEnd": "Fin de section", "DE.Views.NoteSettingsDialog.textSection": "Section active", - "DE.Views.NoteSettingsDialog.textStart": "Début", + "DE.Views.NoteSettingsDialog.textStart": "Commencer par", "DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte", "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page", "DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin", @@ -2116,7 +2125,7 @@ "DE.Views.PageSizeDialog.textWidth": "Largeur", "DE.Views.PageSizeDialog.txtCustom": "Personnalisé", "DE.Views.ParagraphSettings.strIndent": "Retraits", - "DE.Views.ParagraphSettings.strIndentsLeftText": "Gauche", + "DE.Views.ParagraphSettings.strIndentsLeftText": "À gauche", "DE.Views.ParagraphSettings.strIndentsRightText": "Droite", "DE.Views.ParagraphSettings.strIndentsSpecial": "Spécial", "DE.Views.ParagraphSettings.strLineHeight": "Interligne", @@ -2127,7 +2136,7 @@ "DE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "DE.Views.ParagraphSettings.textAt": "A", "DE.Views.ParagraphSettings.textAtLeast": "Au moins ", - "DE.Views.ParagraphSettings.textAuto": "Plusieurs", + "DE.Views.ParagraphSettings.textAuto": "Multiple ", "DE.Views.ParagraphSettings.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettings.textExact": "Exactement", "DE.Views.ParagraphSettings.textFirstLine": "Première ligne", @@ -2138,9 +2147,9 @@ "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Toutes en majuscules", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant", - "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", - "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Niveau hiérarchique", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", @@ -2165,7 +2174,7 @@ "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ", - "DE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur", @@ -2192,7 +2201,7 @@ "DE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espacement", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", - "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", + "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", @@ -2429,8 +2438,8 @@ "DE.Views.TableSettingsAdvanced.textDistance": "Distance du texte", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.TableSettingsAdvanced.textIndLeft": "Retrait à gauche", - "DE.Views.TableSettingsAdvanced.textLeft": "A gauche", - "DE.Views.TableSettingsAdvanced.textLeftTooltip": "A gauche", + "DE.Views.TableSettingsAdvanced.textLeft": "À gauche", + "DE.Views.TableSettingsAdvanced.textLeftTooltip": "À gauche", "DE.Views.TableSettingsAdvanced.textMargin": "Marge", "DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule", "DE.Views.TableSettingsAdvanced.textMeasure": "Mesure en", @@ -2574,7 +2583,7 @@ "DE.Views.Toolbar.textChangeLevel": "Changer le niveau de liste", "DE.Views.Toolbar.textCheckboxControl": "Case à cocher", "DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées", - "DE.Views.Toolbar.textColumnsLeft": "A gauche", + "DE.Views.Toolbar.textColumnsLeft": "À gauche", "DE.Views.Toolbar.textColumnsOne": "Un", "DE.Views.Toolbar.textColumnsRight": "A droite", "DE.Views.Toolbar.textColumnsThree": "Trois", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Niveaux de gris", "DE.Views.Toolbar.txtScheme20": "Urbain", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "New Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Proportions", "DE.Views.Toolbar.txtScheme5": "Civique", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index ff590e77ee..855439cc95 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -156,7 +156,7 @@ "Common.UI.Calendar.textShortThursday": "do", "Common.UI.Calendar.textShortTuesday": "di", "Common.UI.Calendar.textShortWednesday": "wij", - "Common.UI.Calendar.textYears": "jaren", + "Common.UI.Calendar.textYears": "Jaren", "Common.UI.ColorButton.textAutoColor": "Automatisch", "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", @@ -299,7 +299,7 @@ "Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen", "Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", - "Common.Views.OpenDialog.txtEncoding": "Versleuteling", + "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", @@ -846,7 +846,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Maximale documentgrootte overschreden.", "DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", + "DE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", "DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "DE.Controllers.Main.waitText": "Een moment...", @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Weergeef notificatie", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "DE.Views.FileMenuPanels.Settings.txtWin": "als Windows", + "DE.Views.FormSettings.textAlways": "Altijd", + "DE.Views.FormSettings.textAspect": "Aspectratio vastzetten", + "DE.Views.FormSettings.textAutofit": "Automatische pasvorm", "DE.Views.FormSettings.textCheckbox": "Checkbox", "DE.Views.FormSettings.textColor": "Randkleur", "DE.Views.FormSettings.textComb": "Lijst van characters", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Sleutel", "DE.Views.FormSettings.textLock": "Opslot", "DE.Views.FormSettings.textMaxChars": "Teken limiet", + "DE.Views.FormSettings.textMulti": "Meerlijnig veld", + "DE.Views.FormSettings.textNever": "Nooit", "DE.Views.FormSettings.textNoBorder": "Geen rand", "DE.Views.FormSettings.textPlaceholder": "Tijdelijke aanduiding", "DE.Views.FormSettings.textRadiobox": "Radial knop", "DE.Views.FormSettings.textRequired": "Vereist", + "DE.Views.FormSettings.textScale": "Wanneer schalen", "DE.Views.FormSettings.textSelectImage": "Selecteer afbeelding", "DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTipAdd": "Voeg nieuwe waarde toe", "DE.Views.FormSettings.textTipDelete": "Verwijder waarde", "DE.Views.FormSettings.textTipDown": "Naar beneden", "DE.Views.FormSettings.textTipUp": "Naar boven", + "DE.Views.FormSettings.textTooBig": "Afbeelding is Te Groot", + "DE.Views.FormSettings.textTooSmall": "Afbeelding is Te Klein", "DE.Views.FormSettings.textUnlock": "Ontgrendelen", "DE.Views.FormSettings.textValue": "Waarde opties", "DE.Views.FormSettings.textWidth": "Celbreedte", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Markeer Instellingen", "DE.Views.FormsTab.textNewColor": "Nieuwe aangepaste kleur toevoegen", "DE.Views.FormsTab.textNoHighlight": "Geen accentuering", + "DE.Views.FormsTab.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.", "DE.Views.FormsTab.textSubmited": "Formulier succesvol ingediend ", "DE.Views.FormsTab.tipCheckBox": "Selectievakje invoegen", "DE.Views.FormsTab.tipComboBox": "Plaats de keuzelijst met invoervak", @@ -1898,7 +1907,7 @@ "DE.Views.ImageSettingsAdvanced.textMove": "Object met tekst verplaatsen", "DE.Views.ImageSettingsAdvanced.textOptions": "Opties", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ware grootte", - "DE.Views.ImageSettingsAdvanced.textOverlap": "Overlapping toestaan", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Overlappingen toestaan", "DE.Views.ImageSettingsAdvanced.textPage": "Pagina", "DE.Views.ImageSettingsAdvanced.textParagraph": "Alinea", "DE.Views.ImageSettingsAdvanced.textPosition": "Positie", @@ -2632,7 +2641,7 @@ "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Onderdrukken voor huidige alinea", "DE.Views.Toolbar.textTabCollaboration": "Samenwerking", "DE.Views.Toolbar.textTabFile": "Bestand", - "DE.Views.Toolbar.textTabHome": "Home", + "DE.Views.Toolbar.textTabHome": "Start", "DE.Views.Toolbar.textTabInsert": "Invoegen", "DE.Views.Toolbar.textTabLayout": "Pagina-indeling", "DE.Views.Toolbar.textTabLinks": "Verwijzingen", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Grijswaarden", "DE.Views.Toolbar.txtScheme20": "Stedelijk", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "Nieuw kantoor", "DE.Views.Toolbar.txtScheme3": "Toppunt", "DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme5": "Civiel", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 51870e9bff..ea611da127 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "DE.Views.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAspect": "Bloquear proporção", + "DE.Views.FormSettings.textAutofit": "Ajuste automático", "DE.Views.FormSettings.textCheckbox": "Caixa de seleção", "DE.Views.FormSettings.textColor": "Cor da borda", "DE.Views.FormSettings.textComb": "Conjunto de Caracteres", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Chave", "DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textMaxChars": "Limite de caracteres", + "DE.Views.FormSettings.textMulti": "Campo multilinha", + "DE.Views.FormSettings.textNever": "Nunca", "DE.Views.FormSettings.textNoBorder": "Sem limite", "DE.Views.FormSettings.textPlaceholder": "Marcador de posição", "DE.Views.FormSettings.textRadiobox": "Botao de radio", "DE.Views.FormSettings.textRequired": "Necessário", + "DE.Views.FormSettings.textScale": "Quando escalar", "DE.Views.FormSettings.textSelectImage": "Selecionar Imagem", "DE.Views.FormSettings.textTip": "Dica", "DE.Views.FormSettings.textTipAdd": "Adicionar novo valor", "DE.Views.FormSettings.textTipDelete": "Excluir valor", "DE.Views.FormSettings.textTipDown": "Mover para baixo", "DE.Views.FormSettings.textTipUp": "Mover para cima", + "DE.Views.FormSettings.textTooBig": "A imagem é muito grande", + "DE.Views.FormSettings.textTooSmall": "A imagem é muito pequena", "DE.Views.FormSettings.textUnlock": "Desbloquear", "DE.Views.FormSettings.textValue": "Opções de valor", "DE.Views.FormSettings.textWidth": "Largura da célula", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Configurações de destaque", "DE.Views.FormsTab.textNewColor": "Adicionar nova cor personalizada", "DE.Views.FormsTab.textNoHighlight": "Sem destaque", + "DE.Views.FormsTab.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", "DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso", "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Escala de cinza", "DE.Views.Toolbar.txtScheme20": "Urbano", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "Novo Office", "DE.Views.Toolbar.txtScheme3": "Ápice", "DE.Views.Toolbar.txtScheme4": "Aspecto", "DE.Views.Toolbar.txtScheme5": "Cívico", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 32db3fe020..ecc7e1f329 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -53,11 +53,11 @@ "Common.Controllers.ReviewChanges.textOn": "{0} folosește Urmărirea Modificărilor acum.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} a activat Urmărire modificări pentru toți.", "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraful a fost eliminat", - "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraf formatat", + "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraful a fost formatat", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraful a fost inserat", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Deplasat în jos:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Deplasat în sus:", - "Common.Controllers.ReviewChanges.textParaMoveTo": "S-a deplasat:", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Este mutat în jos:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Este mutat în sus:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "S-a mutat:", "Common.Controllers.ReviewChanges.textPosition": "Poziție", "Common.Controllers.ReviewChanges.textRight": "Aliniere la dreapta", "Common.Controllers.ReviewChanges.textShape": "Forma", @@ -133,7 +133,7 @@ "Common.UI.Calendar.textJune": "Iunie", "Common.UI.Calendar.textMarch": "Martie", "Common.UI.Calendar.textMay": "Mai", - "Common.UI.Calendar.textMonths": "Luni", + "Common.UI.Calendar.textMonths": "Lună", "Common.UI.Calendar.textNovember": "Noiembrie", "Common.UI.Calendar.textOctober": "Octombrie", "Common.UI.Calendar.textSeptember": "Septembrie", @@ -839,7 +839,7 @@ "DE.Controllers.Main.txtXAxis": "Axa X", "DE.Controllers.Main.txtYAxis": "Axa Y", "DE.Controllers.Main.txtZeroDivide": "Împărțirea cu zero", - "DE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", + "DE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.Controllers.Main.uploadDocExtMessage": "Format de fișier necunoscut.", "DE.Controllers.Main.uploadDocFileCountMessage": "Nu există nicun document încărcat.", @@ -1600,7 +1600,7 @@ "DE.Views.DropcapSettingsAdvanced.textInText": "În paragraf", "DE.Views.DropcapSettingsAdvanced.textLeft": "Stânga", "DE.Views.DropcapSettingsAdvanced.textMargin": "Margine", - "DE.Views.DropcapSettingsAdvanced.textMove": "Deplasare odată cu textul", + "DE.Views.DropcapSettingsAdvanced.textMove": "Mutare odată cu textul", "DE.Views.DropcapSettingsAdvanced.textNone": "Niciunul", "DE.Views.DropcapSettingsAdvanced.textPage": "Pagina", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraf", @@ -1737,6 +1737,7 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Afișare notificări", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "DE.Views.FileMenuPanels.Settings.txtWin": "ca Windows", + "DE.Views.FormSettings.textAlways": "Întotdeauna", "DE.Views.FormSettings.textAspect": "Blocare raport aspect", "DE.Views.FormSettings.textAutofit": "Potrivire automată", "DE.Views.FormSettings.textCheckbox": "Caseta de selectare", @@ -1757,17 +1758,21 @@ "DE.Views.FormSettings.textKey": "Cheie", "DE.Views.FormSettings.textLock": "Blocare", "DE.Views.FormSettings.textMaxChars": "Numărul limită de caractere", + "DE.Views.FormSettings.textMulti": "Câmp cu mai multe linii de text", "DE.Views.FormSettings.textNever": "Niciodată", "DE.Views.FormSettings.textNoBorder": "Fără bordură", "DE.Views.FormSettings.textPlaceholder": "Substituent", "DE.Views.FormSettings.textRadiobox": "Buton opțiune", "DE.Views.FormSettings.textRequired": "Obligatoriu", + "DE.Views.FormSettings.textScale": "Scalare", "DE.Views.FormSettings.textSelectImage": "Selectați imaginea", "DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTipAdd": "Se adaugă o valoare nouă", "DE.Views.FormSettings.textTipDelete": "Valoarea trebuie eliminată", - "DE.Views.FormSettings.textTipDown": "Deplasare în jos", - "DE.Views.FormSettings.textTipUp": "Deplasare în sus", + "DE.Views.FormSettings.textTipDown": "Mutare în jos", + "DE.Views.FormSettings.textTipUp": "Mutare în sus", + "DE.Views.FormSettings.textTooBig": "Imaginea este prea mare", + "DE.Views.FormSettings.textTooSmall": "Imaginea este prea mică", "DE.Views.FormSettings.textUnlock": "Deblocare", "DE.Views.FormSettings.textValue": "Opțiuni valori", "DE.Views.FormSettings.textWidth": "Lățimea celulei", @@ -1786,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Evidențiere setări", "DE.Views.FormsTab.textNewColor": "Сuloare particularizată", "DE.Views.FormsTab.textNoHighlight": "Fără evidențiere", + "DE.Views.FormsTab.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.", "DE.Views.FormsTab.textSubmited": "Formularul a fost remis cu succes", "DE.Views.FormsTab.tipCheckBox": "Se inserează un control casetă de selectare", "DE.Views.FormsTab.tipComboBox": "Se inserează un control casetă combo", @@ -2724,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Tonuri de gri", "DE.Views.Toolbar.txtScheme20": "Urban", "DE.Views.Toolbar.txtScheme21": "Vervă", + "DE.Views.Toolbar.txtScheme22": "New Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme5": "Civic", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 79a51b0bfe..9775a2d92b 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -205,6 +205,7 @@ "textBehind": "Darrere", "textBorder": "Vora", "textBringToForeground": "Portar a primer pla", + "textBullets": "Vinyetes", "textBulletsAndNumbers": "Vinyetes i números", "textCellMargins": "Marges de cel·la", "textChart": "Gràfic", @@ -250,6 +251,7 @@ "textNone": "cap", "textNoStyles": "No hi ha estils per a aquest tipus de diagrames.", "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textNumbers": "Nombres", "textOpacity": "Opacitat", "textOptions": "Opcions", "textOrphanControl": "Control de línies Orfes", @@ -379,7 +381,22 @@ "leavePageText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { + " -Section ": "-Secció", + "above": "Damunt", + "below": "Sota", + "Caption": "Llegenda", + "Choose an item": "Tria un element", + "Click to load image": "Clicar per carregar la imatge", + "Current Document": "Document Actual", "Diagram Title": "Títol del Gràfic", + "endnote text": "Final de Nota de Text", + "Enter a date": "Introduïu una data", + "Error! Bookmark not defined": "Error! Marcador no definit.", + "Error! Main Document Only": "Error! Només Document Principal.", + "Error! No text of specified style in document": "Error! No hi ha cap text de l'estil especificat al document.", + "Error! Not a valid bookmark self-reference": "Error! No és una autoreferència vàlida d'adreces d'interès.", + "Even Page ": "Pàgina parell", + "First Page ": "Primera Pàgina", "Footer": "Peu de pàgina", "footnote text": "Text de Nota al Peu de Pàgina", "Header": "Capçalera", @@ -392,17 +409,38 @@ "Heading 7": "Títol 7", "Heading 8": "Títol 8", "Heading 9": "Títol 9", + "Hyperlink": "Hiperenllaç", + "Index Too Large": "L'índex és Massa Gran", "Intense Quote": "Cita Destacada", + "Is Not In Table": "No És a la Taula", "List Paragraph": "Paràgraf de la Llista", + "Missing Argument": "Falta Argument", + "Missing Operator": "Falta Operador", "No Spacing": "Sense Espai", + "No table of contents entries found": "No hi ha capçaleres en el document. Aplica un estil d'encapçalament al text perquè aparegui a la taula de continguts.", + "No table of figures entries found": "No s'ha trobat cap entrada a la taula de figures.", + "None": "Cap", "Normal": "Normal", + "Number Too Large To Format": "Nombre Massa Gran Per Formatar", + "Odd Page ": "Pàgina Sanar.", "Quote": "Cita", + "Same as Previous": "Igual al Anterior", "Series": "Sèrie", "Subtitle": "Subtítol", + "Syntax Error": "Error de Sintaxi", + "Table Index Cannot be Zero": "L'índex de la Taula No pot ser Zero", + "Table of Contents": "Taula de Continguts", + "table of figures": "Taula de figures", + "The Formula Not In Table": "La Fórmula No es a la Taula", "Title": "Nom", + "TOC Heading": "Capçalera de la taula de continguts", + "Type equation here": "Escriu l'equació aquí", + "Undefined Bookmark": "Marcador no definit", + "Unexpected End of Formula": "Final inesperat de la fórmula", "X Axis": "Eix X XAS", "Y Axis": "Eix Y", - "Your text here": "El seu text aquí" + "Your text here": "El seu text aquí", + "Zero Divide": "Divideix per zero" }, "textAnonymous": "Anònim", "textBuyNow": "Visita lloc web", @@ -481,7 +519,7 @@ "textMacrosSettings": "Configuració de Macros", "textMargins": "Marges", "textMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", - "textMarginsW": "Els marges esquerre i dret són massa alts per a una amplada de pàgina donada", + "textMarginsW": "Els marges esquerre i dret són massa amplis per a un ample de pàgina determinat", "textNoCharacters": "Caràcters no Imprimibles", "textNoTextFound": "Text no Trobat", "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", @@ -506,7 +544,27 @@ "textUnitOfMeasurement": "Unitat de Mesura", "textUploaded": "Penjat", "txtIncorrectPwd": "La contrasenya és incorrecta", - "txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual" + "txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual", + "txtScheme1": "Oficina", + "txtScheme10": "Mitjana", + "txtScheme11": "Metro", + "txtScheme12": "Mòdul", + "txtScheme13": "Opulent", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Paper", + "txtScheme17": "Solstici", + "txtScheme18": "Tècnic", + "txtScheme19": "Excursió", + "txtScheme2": "Escala de grisos", + "txtScheme22": "Nova Oficina", + "txtScheme3": "Vèrtex", + "txtScheme4": "Aspecte", + "txtScheme5": "Cívic", + "txtScheme6": "Concurs", + "txtScheme7": "Patrimoni net", + "txtScheme8": "Flux", + "txtScheme9": "Fosa" }, "Toolbar": { "dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 43623f7f92..e35c586dff 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -205,6 +205,7 @@ "textBehind": "Hinten", "textBorder": "Rahmen", "textBringToForeground": "In den Vordergrund bringen", + "textBullets": "Aufzählungszeichen", "textBulletsAndNumbers": "Aufzählungszeichen und Nummern", "textCellMargins": "Zellenränder", "textChart": "Diagramm", @@ -250,6 +251,7 @@ "textNone": "Kein(e)", "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "textNumbers": "Nummern", "textOpacity": "Undurchsichtigkeit", "textOptions": "Optionen", "textOrphanControl": "Absatzkontrolle", @@ -379,7 +381,22 @@ "leavePageText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", "notcriticalErrorTitle": "Warnung", "SDK": { + " -Section ": "-Abschnitt", + "above": "Oben", + "below": "Unten", + "Caption": "Beschriftung", + "Choose an item": "Wählen Sie ein Element aus", + "Click to load image": "Klicken Sie, um das Bild herunterzuladen", + "Current Document": "Aktuelles Dokument", "Diagram Title": "Diagrammtitel", + "endnote text": "Endnotentext", + "Enter a date": "Datum einfügen", + "Error! Bookmark not defined": "Fehler! Textmarke nicht definiert.", + "Error! Main Document Only": "Fehler! Nur Hauptdokument.", + "Error! No text of specified style in document": "Fehler! Im Dokument gibt es keinen Text des angegebenen Stils.", + "Error! Not a valid bookmark self-reference": "Fehler! Ungültiger Lesezeichen-Link.", + "Even Page ": "Gerade Seite", + "First Page ": "Erste Seite", "Footer": "Fußzeile", "footnote text": "Fußnotentext", "Header": "Kopfzeile", @@ -392,17 +409,38 @@ "Heading 7": "Überschrift 7", "Heading 8": "Überschrift 8", "Heading 9": "Überschrift 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Zu großer Index", "Intense Quote": "Intensives Zitat", + "Is Not In Table": "Nicht in Tabelle", "List Paragraph": "Listenabsatz", + "Missing Argument": "Fehlendes Argument", + "Missing Operator": "Fehlender Operator", "No Spacing": "Kein Abstand", + "No table of contents entries found": "Im Dokument sind keine Überschriften vorhanden. Wenden Sie einen Überschriftenstil auf den Text an, damit er im Inhaltsverzeichnis erscheint.", + "No table of figures entries found": "Es konnten keine Einträge für ein Abbildungsverzeichnis gefunden werden.", + "None": "Kein(e)", "Normal": "Normal", + "Number Too Large To Format": "Nummer zu groß zum Formatieren", + "Odd Page ": "Ungerade Seite", "Quote": "Zitat", + "Same as Previous": "Wie vorherige", "Series": "Reihen", "Subtitle": "Untertitel", + "Syntax Error": "Syntaxfehler", + "Table Index Cannot be Zero": "Tabellenindex darf nicht Null sein", + "Table of Contents": "Inhaltsverzeichnis", + "table of figures": "Abbildungsverzeichnis", + "The Formula Not In Table": "Die Formel steht nicht in einer Tabelle", "Title": "Titel", + "TOC Heading": "Inhaltsverzeichnisüberschrift", + "Type equation here": "Gleichung hier eingeben", + "Undefined Bookmark": "Undefiniertes Lesezeichen", + "Unexpected End of Formula": "Unerwartetes Ende der Formel", "X Axis": "Achse X (XAS)", "Y Axis": "Achse Y", - "Your text here": "Text hier eingeben" + "Your text here": "Text hier eingeben", + "Zero Divide": "Nullteilung" }, "textAnonymous": "Anonym", "textBuyNow": "Webseite besuchen", @@ -506,7 +544,27 @@ "textUnitOfMeasurement": "Maßeinheit", "textUploaded": "Hochgeladen", "txtIncorrectPwd": "Passwort ist falsch", - "txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt" + "txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Reichhaltig", + "txtScheme14": "Erker", + "txtScheme15": "Herkunft", + "txtScheme16": "Papier", + "txtScheme17": "Sonnenwende", + "txtScheme18": "Technik", + "txtScheme19": "Wanderung", + "txtScheme2": "Graustufe", + "txtScheme22": "Neues Office", + "txtScheme3": "Apex", + "txtScheme4": "Bildseitenverhältnis", + "txtScheme5": "bürgerlich", + "txtScheme6": "Halle", + "txtScheme7": "Kapital", + "txtScheme8": "Fluss", + "txtScheme9": "Gießerei" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index f185378f79..b1968cb382 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -1,10 +1,575 @@ { + "About": { + "textAbout": "À propos", + "textAddress": "Adresse", + "textBack": "Retour", + "textEmail": "E-mail", + "textPoweredBy": "Réalisation", + "textTel": "Tél.", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Avertissement", + "textAddLink": "Ajouter un lien", + "textAddress": "Adresse", + "textBack": "Retour", + "textBelowText": "Sous le texte", + "textBottomOfPage": "Bas de page", + "textBreak": "Saut", + "textCancel": "Annuler", + "textCenterBottom": "En bas au centre", + "textCenterTop": "En haut au centre", + "textColumnBreak": "Saut de colonne", + "textColumns": "Colonnes", + "textComment": "Commentaire", + "textContinuousPage": "Page continue", + "textCurrentPosition": "Position actuelle", + "textDisplay": "Afficher", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textEvenPage": "Page paire", + "textFootnote": "Note de bas de page", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "URL d'image", + "textInsert": "Insertion", + "textInsertFootnote": "Insérer une note de bas de page", + "textInsertImage": "Insérer une image", + "textLeftBottom": "À gauche en bas", + "textLeftTop": "À gauche en haut", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLocation": "Emplacement", + "textNextPage": "Page suivante", + "textOddPage": "Page impaire", + "textOther": "Autre", + "textPageBreak": "Saut de page", + "textPageNumber": "Numéro de page", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPosition": "Position", + "textRightBottom": "À droite en bas", + "textRightTop": "À droite en haut", + "textRows": "Lignes", + "textScreenTip": "Info-bulle", + "textSectionBreak": "Saut de section", + "textShape": "Forme", + "textStartAt": "Commencer par", + "textTable": "Tableau", + "textTableSize": "Taille du tableau", + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"" + }, "Common": { "Collaboration": { - "textAddComment": "Ajouter un commentaire" + "notcriticalErrorTitle": "Avertissement", + "textAccept": "Accepter", + "textAcceptAllChanges": "Accepter toutes les modifications", + "textAddComment": "Ajouter un commentaire", + "textAddReply": "Ajouter une réponse", + "textAllChangesAcceptedPreview": "Toutes les modifications acceptées (aperçu)", + "textAllChangesEditing": "Toutes les modifications (édition)", + "textAllChangesRejectedPreview": "Toutes les modifications rejetées (Aperçu)", + "textAtLeast": "au moins ", + "textAuto": "Auto", + "textBack": "Retour", + "textBaseline": "Ligne de base", + "textBold": "Gras", + "textBreakBefore": "Saut de page avant", + "textCancel": "Annuler", + "textCaps": "Majuscules", + "textCenter": "Aligner au centre", + "textChart": "Graphique", + "textCollaboration": "Collaboration", + "textColor": "Couleur de police", + "textComments": "Commentaires", + "textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style", + "textDelete": "Supprimer", + "textDeleteComment": "Supprimer commentaire", + "textDeleted": "Supprimé:", + "textDeleteReply": "Supprimer réponse", + "textDisplayMode": "Mode d'affichage", + "textDone": "Terminé", + "textDStrikeout": "Double-barré", + "textEdit": "Modifier", + "textEditComment": "Modifier le commentaire", + "textEditReply": "Modifier la réponse", + "textEditUser": "Le document est en cours de modification par les utilisateurs suivants:", + "textEquation": "Équation", + "textExact": "exactement", + "textFinal": "Final", + "textFirstLine": "Première ligne", + "textFormatted": "Formaté", + "textHighlight": "Couleur de surlignage", + "textImage": "Image", + "textIndentLeft": "Retrait à gauche", + "textIndentRight": "Retrait à droite", + "textInserted": "Inséré:", + "textItalic": "Italique", + "textJustify": "Justifier ", + "textKeepLines": "Lignes solidaires", + "textKeepNext": "Paragraphes solidaires", + "textLeft": "Aligner à gauche", + "textLineSpacing": "Interligne:", + "textMarkup": "Balisage", + "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", + "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", + "textMultiple": "multiple ", + "textNoBreakBefore": "Pas de saut de page avant", + "textNoChanges": "Aucune modification", + "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textNoContextual": "Ajouter un intervalle entre les paragraphes du même style", + "textNoKeepLines": "Ne gardez pas de lignes ensemble", + "textNoKeepNext": "Ne gardez pas avec la prochaine", + "textNot": "Non", + "textNoWidow": "Pas de contrôle des veuves", + "textNum": "Changer la numérotation", + "textOriginal": "Original", + "textParaDeleted": "Paragraphe supprimé", + "textParaFormatted": "Paragraphe formaté", + "textParaInserted": "Paragraphe inséré", + "textParaMoveFromDown": "Déplacé vers le bas:", + "textParaMoveFromUp": "Déplacé vers le haut:", + "textParaMoveTo": "Déplacé:", + "textPosition": "Position", + "textReject": "Rejeter", + "textRejectAllChanges": "Rejeter toutes les modifications", + "textReopen": "Rouvrir", + "textResolve": "Résoudre", + "textReview": "Révision", + "textReviewChange": "Réviser modifications", + "textRight": "Aligner à droite", + "textShape": "Forme", + "textShd": "Couleur d'arrière-plan", + "textSmallCaps": "Petites majuscules", + "textSpacing": "Espacement", + "textSpacingAfter": "Espacement après", + "textSpacingBefore": "Espacement avant", + "textStrikeout": "Barré", + "textSubScript": "Indice", + "textSuperScript": "Exposant", + "textTableChanged": "Paramètres du tableau modifiés", + "textTableRowsAdd": "Les lignes sont ajoutées au tableau", + "textTableRowsDel": "Les lignes du tableau sont supprimées", + "textTabs": "Changer les tabulations", + "textTrackChanges": "Suivi des modifications", + "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", + "textUnderline": "Souligné", + "textUsers": "Utilisateurs", + "textWidow": "Contrôle des veuves" + }, + "ThemeColorPalette": { + "textCustomColors": "Couleurs personnalisées", + "textStandartColors": "Couleurs standard", + "textThemeColors": "Couleurs de thème" } }, + "ContextMenu": { + "errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", + "menuAddComment": "Ajouter un commentaire", + "menuAddLink": "Ajouter un lien", + "menuCancel": "Annuler", + "menuDelete": "Supprimer", + "menuDeleteTable": "Supprimer le tableau", + "menuEdit": "Modifier", + "menuMerge": "Fusionner", + "menuMore": "Plus", + "menuOpenLink": "Ouvrir le lien", + "menuReview": "Révision", + "menuReviewChange": "Réviser modifications", + "menuSplit": "Fractionner", + "menuViewComment": "Voir le commentaire", + "textColumns": "Colonnes", + "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "textDoNotShowAgain": "Ne plus afficher", + "textRows": "Lignes" + }, + "Edit": { + "notcriticalErrorTitle": "Avertissement", + "textActualSize": "Taille réelle", + "textAddCustomColor": "Ajouter une couleur personnalisée", + "textAdditional": "Supplémentaire", + "textAdditionalFormatting": "Mise en forme supplémentaire", + "textAddress": "Adresse", + "textAdvanced": "Avancé", + "textAdvancedSettings": "Paramètres avancés", + "textAfter": "Après", + "textAlign": "Aligner", + "textAllCaps": "Majuscules", + "textAllowOverlap": "Autoriser le chevauchement", + "textAuto": "Auto", + "textAutomatic": "Automatique", + "textBack": "Retour", + "textBackground": "Arrière-plan", + "textBandedColumn": "Colonne à bandes", + "textBandedRow": "Ligne à bandes", + "textBefore": "Avant", + "textBehind": "Derrière", + "textBorder": "Bordure", + "textBringToForeground": "Mettre au premier plan", + "textBullets": "Puces", + "textBulletsAndNumbers": "Puces et numérotation", + "textCellMargins": "Marges de la cellule", + "textChart": "Graphique", + "textClose": "Fermer", + "textColor": "Couleur", + "textContinueFromPreviousSection": "Continuer à partir de la section précédente", + "textCustomColor": "Couleur personnalisée", + "textDifferentFirstPage": "Première page différente", + "textDifferentOddAndEvenPages": "Pages paires et impaires différentes", + "textDisplay": "Afficher", + "textDistanceFromText": "Distance du texte", + "textDoubleStrikethrough": "Barré double", + "textEditLink": "Modifier le lien", + "textEffects": "Effets", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textFill": "Remplissage", + "textFirstColumn": "Première colonne", + "textFirstLine": "Première ligne", + "textFlow": "Flux", + "textFontColor": "Couleur de police", + "textFontColors": "Couleurs de police", + "textFonts": "Polices", + "textFooter": "Pied de page", + "textHeader": "En-tête", + "textHeaderRow": "Ligne d’en-tête", + "textHighlightColor": "Couleur de surlignage", + "textHyperlink": "Lien hypertexte", + "textImage": "Image", + "textImageURL": "URL d'image", + "textInFront": "Devant", + "textInline": "En ligne", + "textKeepLinesTogether": "Lignes solidaires", + "textKeepWithNext": "Paragraphes solidaires", + "textLastColumn": "Dernière colonne", + "textLetterSpacing": "Espacement entre les lettres", + "textLineSpacing": "Interligne", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkToPrevious": "Lier au précédent", + "textMoveBackward": "Déplacer vers l'arrière", + "textMoveForward": "Avancer", + "textMoveWithText": "Déplacer avec le texte", + "textNone": "Aucun", + "textNoStyles": "Aucun style pour ce type de graphique.", + "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "textNumbers": "Numérotation", + "textOpacity": "Opacité", + "textOptions": "Options", + "textOrphanControl": "Éviter orphelines", + "textPageBreakBefore": "Saut de page avant", + "textPageNumbering": "Numérotation des pages", + "textParagraph": "Paragraphe", + "textParagraphStyles": "Styles de paragraphe", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPt": "pt", + "textRemoveChart": "Supprimer le graphique", + "textRemoveImage": "Supprimer l'image", + "textRemoveLink": "Supprimer le lien", + "textRemoveShape": "Supprimer la forme", + "textRemoveTable": "Supprimer le tableau", + "textReorder": "Réorganiser", + "textRepeatAsHeaderRow": "Répéter la ligne d'en-tête", + "textReplace": "Remplacer", + "textReplaceImage": "Remplacer l’image", + "textResizeToFitContent": "Redimensionner pour adapter au contenu", + "textScreenTip": "Info-bulle", + "textSelectObjectToEdit": "Sélectionnez l'objet à modifier", + "textSendToBackground": "Mettre en arrière-plan", + "textSettings": "Paramètres", + "textShape": "Forme", + "textSize": "Taille", + "textSmallCaps": "Petites majuscules", + "textSpaceBetweenParagraphs": "Espace entre les paragraphes", + "textSquare": "Carré", + "textStartAt": "Commencer par", + "textStrikethrough": "Barré", + "textStyle": "Style", + "textStyleOptions": "Options de style", + "textSubscript": "Indice", + "textSuperscript": "Exposant", + "textTable": "Tableau", + "textTableOptions": "Options du tableau", + "textText": "Texte", + "textThrough": "Au travers", + "textTight": "Rapproché", + "textTopAndBottom": "Haut et bas", + "textTotalRow": "Ligne de total", + "textType": "Type", + "textWrap": "Renvoi à la ligne" + }, + "Error": { + "convertationTimeoutText": "Délai de conversion expiré.", + "criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents", + "criticalErrorTitle": "Erreur", + "downloadErrorText": "Téléchargement echoué.", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton OK, vous serez invité à télécharger le document.", + "errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Contactez le support.", + "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", + "errorDataRange": "Plage de données incorrecte.", + "errorDefaultMessage": "Code d'erreur: %1", + "errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.
    Téléchargez le document pour enregistrer une copie locale de sauvegarde du fichier.", + "errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", + "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur. ", + "errorKeyEncrypt": "Descripteur de clé inconnu", + "errorKeyExpire": "Descripteur de clés expiré", + "errorMailMergeLoadFile": "Échec du chargement", + "errorMailMergeSaveFile": "Fusion a échoué.", + "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", + "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", + "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.", + "errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.", + "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", + "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", + "notcriticalErrorTitle": "Avertissement", + "openErrorText": "Une erreur s’est produite lors de l'ouverture du fichier", + "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier", + "scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1", + "splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1", + "splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1", + "unknownErrorText": "Erreur inconnue.", + "uploadImageExtMessage": "Format d'image inconnu.", + "uploadImageFileCountMessage": "Aucune image chargée.", + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + }, + "LongActions": { + "applyChangesTextText": "Chargement des données en cours...", + "applyChangesTitleText": "Chargement des données", + "downloadMergeText": "Téléchargement en cours...", + "downloadMergeTitle": "Téléchargement en cours", + "downloadTextText": "Téléchargement du document...", + "downloadTitleText": "Téléchargement du document", + "loadFontsTextText": "Chargement des données en cours...", + "loadFontsTitleText": "Chargement des données", + "loadFontTextText": "Chargement des données en cours...", + "loadFontTitleText": "Chargement des données", + "loadImagesTextText": "Chargement des images en cours...", + "loadImagesTitleText": "Chargement des images", + "loadImageTextText": "Chargement d'une image en cours...", + "loadImageTitleText": "Chargement d'une image", + "loadingDocumentTextText": "Chargement du document...", + "loadingDocumentTitleText": "Chargement du document", + "mailMergeLoadFileText": "Chargement de la source des données...", + "mailMergeLoadFileTitle": "Chargement de la source des données", + "openTextText": "Ouverture du document...", + "openTitleText": "Ouverture document", + "printTextText": "Impression du document en cours...", + "printTitleText": "Impression du document", + "savePreparingText": "Préparation à l'enregistrement ", + "savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "saveTextText": "Enregistrement document en cours...", + "saveTitleText": "Enregistrement du document", + "sendMergeText": "Envoie du résultat de la fusion...", + "sendMergeTitle": "Envoie du résultat de la fusion", + "textLoadingDocument": "Chargement du document", + "txtEditingMode": "Réglage mode d'édition...", + "uploadImageTextText": "Chargement d'une image en cours...", + "uploadImageTitleText": "Chargement d'une image", + "waitText": "Veuillez patienter..." + }, + "Main": { + "criticalErrorTitle": "Erreur", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web vous avez besoin d'une licence payante.", + "errorProcessSaveResult": "Échec de l'enregistrement", + "errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", + "errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", + "leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "notcriticalErrorTitle": "Avertissement", + "SDK": { + " -Section ": "- Section", + "above": "au-dessus", + "below": "en dessous", + "Caption": "Légende", + "Choose an item": "Choisir un élément", + "Click to load image": "Cliquez pour charger une image", + "Current Document": "Document actuel", + "Diagram Title": "Titre du graphique", + "endnote text": "Texte de note de fin", + "Enter a date": "Entrer une date", + "Error! Bookmark not defined": "Erreur! Marque-page non défini.", + "Error! Main Document Only": "Erreur ! Document principal seulement.", + "Error! No text of specified style in document": "Erreur ! Il n'y a pas de texte répondant à ce style dans ce document.", + "Error! Not a valid bookmark self-reference": "Erreur ! Référence non valide pour un signet.", + "Even Page ": "Page paire", + "First Page ": "Première Page", + "Footer": "Pied de page", + "footnote text": "Texte de la note de bas de page", + "Header": "En-tête", + "Heading 1": "Titre 1", + "Heading 2": "Titre 2", + "Heading 3": "Titre 3", + "Heading 4": "Titre 4", + "Heading 5": "Titre 5", + "Heading 6": "Titre 6", + "Heading 7": "Titre 7", + "Heading 8": "Titre 8", + "Heading 9": "Titre 9", + "Hyperlink": "Lien hypertexte", + "Index Too Large": "Index trop long", + "Intense Quote": "Citation intense", + "Is Not In Table": "N'est pas dans le tableau", + "List Paragraph": "Paragraphe de liste", + "Missing Argument": "Argument manquant", + "Missing Operator": "Operateur manquant", + "No Spacing": "Pas d'espacement", + "No table of contents entries found": "Aucun titre dans le document. L'application d'un style de titre sur une sélection de texte permettra l'affichage dans la table des matières.", + "No table of figures entries found": "Aucune entrée de table d'illustration n'a été trouvée.", + "None": "Aucun", + "Normal": "Normal", + "Number Too Large To Format": "Nom Trop Grand Pour Formater", + "Odd Page ": "Page impaire", + "Quote": "Citation", + "Same as Previous": "Identique au précédent", + "Series": "Série", + "Subtitle": "Sous-titre", + "Syntax Error": "Erreur de Syntaxe", + "Table Index Cannot be Zero": "Index d'un tableau ne peut pas être zero", + "Table of Contents": "Table des matières", + "table of figures": "Table des figures", + "The Formula Not In Table": "La formule n'est pas dans le tableau", + "Title": "Titre", + "TOC Heading": "En-tête de table des matières", + "Type equation here": "Saisissez l'équation ici", + "Undefined Bookmark": "Signet indéterminé ", + "Unexpected End of Formula": "Fin de formule inattendue", + "X Axis": "Axe X (XAS)", + "Y Axis": "Axe Y", + "Your text here": "Votre texte ici", + "Zero Divide": "Division par Zéro" + }, + "textAnonymous": "Anonyme", + "textBuyNow": "Visiter le site web", + "textClose": "Fermer", + "textContactUs": "Contacter l'équipe de ventes", + "textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.", + "textGuest": "Invité", + "textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros?", + "textNo": "Non", + "textNoLicenseTitle": "La limite de la licence est atteinte", + "textPaidFeature": "Fonction payante", + "textRemember": "Se souvenir de mon choix", + "textYes": "Oui", + "titleLicenseExp": "Licence expirée", + "titleServerVersion": "L'éditeur est mis à jour", + "titleUpdateVersion": "La version a été modifiée", + "warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.", + "warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualisez la page.", + "warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.", + "warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.
    Veuillez contacter votre administrateur pour obtenir un accès complet", + "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", + "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." + }, "Settings": { - "textAbout": "A propos" + "advDRMOptions": "Fichier protégé", + "advDRMPassword": "Mot de passe", + "advTxtOptions": "Choisir les options TXT", + "closeButtonText": "Fermer le fichier", + "notcriticalErrorTitle": "Avertissement", + "textAbout": "À propos", + "textApplication": "Application", + "textApplicationSettings": "Paramètres de l'application", + "textAuthor": "Auteur", + "textBack": "Retour", + "textBottom": "En bas", + "textCancel": "Annuler", + "textCaseSensitive": "Sensible à la casse", + "textCentimeter": "Centimètre", + "textCollaboration": "Collaboration", + "textColorSchemes": "Jeux de couleurs", + "textComment": "Commentaire", + "textComments": "Commentaires", + "textCommentsDisplay": "Affichage des commentaires ", + "textCreated": "Créé", + "textCustomSize": "Taille personnalisée", + "textDisableAll": "Désactiver tout", + "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", + "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", + "textDocumentInfo": "Descriptif du document", + "textDocumentSettings": "Paramètres du document", + "textDocumentTitle": "Titre du document", + "textDone": "Terminé", + "textDownload": "Télécharger", + "textDownloadAs": "Télécharger comme", + "textDownloadRtf": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée. Êtes-vous sûr de vouloir continuer?", + "textDownloadTxt": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues. Êtes-vous sûr de vouloir continuer?", + "textEnableAll": "Activer tout", + "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textEncoding": "Codage ", + "textFind": "Rechercher", + "textFindAndReplace": "Rechercher et remplacer", + "textFindAndReplaceAll": "Rechercher et remplacer tout", + "textFormat": "Format", + "textHelp": "Aide", + "textHiddenTableBorders": "Bordures du tableau cachées", + "textHighlightResults": "Surligner les résultats", + "textInch": "Pouce", + "textLandscape": "Paysage", + "textLastModified": "Dernière modification", + "textLastModifiedBy": "Dernière modification par", + "textLeft": "À gauche", + "textLoading": "Chargement en cours...", + "textLocation": "Emplacement", + "textMacrosSettings": "Réglages macros", + "textMargins": "Marges", + "textMarginsH": "Les marges supérieure et inférieure sont trop élevés pour une hauteur de page donnée", + "textMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée", + "textNoCharacters": "Caractères non imprimables", + "textNoTextFound": "Le texte est introuvable", + "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", + "textOrientation": "Orientation", + "textOwner": "Propriétaire", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Imprimer", + "textReaderMode": "Mode de lecture", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textResolvedComments": "Commentaires résolus", + "textRight": "À droite", + "textSearch": "Recherche", + "textSettings": "Paramètres", + "textShowNotification": "Montrer la notification", + "textSpellcheck": "Vérification de l'orthographe", + "textStatistic": "Statistique", + "textSubject": "Sujet", + "textTitle": "Titre", + "textTop": "En haut", + "textUnitOfMeasurement": "Unité de mesure", + "textUploaded": "Chargé", + "txtIncorrectPwd": "Mot de passe incorrect", + "txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé", + "txtScheme1": "Office", + "txtScheme10": "Médian", + "txtScheme11": "Métro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origine", + "txtScheme16": "Papier", + "txtScheme17": "Solstice", + "txtScheme18": "Technique", + "txtScheme19": "Promenade", + "txtScheme2": "Nuances de gris", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civique", + "txtScheme6": "Rotonde", + "txtScheme7": "Capitaux", + "txtScheme8": "Flux", + "txtScheme9": "Fonderie" + }, + "Toolbar": { + "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "dlgLeaveTitleText": "Vous quittez l'application", + "leaveButtonText": "Quitter cette page", + "stayButtonText": "Rester sur cette page" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 287f0b30a3..a01baa33df 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -1,607 +1,575 @@ { - "Common.Controllers.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Controllers.Collaboration.textAtLeast": "ten minste", - "Common.Controllers.Collaboration.textAuto": "automatisch", - "Common.Controllers.Collaboration.textBaseline": "Basislijn", - "Common.Controllers.Collaboration.textBold": "Vet", - "Common.Controllers.Collaboration.textBreakBefore": "Pagina-einde vóór", - "Common.Controllers.Collaboration.textCancel": "Annuleren", - "Common.Controllers.Collaboration.textCaps": "Hoofdletters", - "Common.Controllers.Collaboration.textCenter": "Centreren", - "Common.Controllers.Collaboration.textChart": "Grafiek", - "Common.Controllers.Collaboration.textColor": "Tekenkleur", - "Common.Controllers.Collaboration.textContextual": "Voeg geen interval toe tussen alinea's met dezelfde stijl", - "Common.Controllers.Collaboration.textDelete": "Verwijderen", - "Common.Controllers.Collaboration.textDeleteComment": "Verwijder opmerking", - "Common.Controllers.Collaboration.textDeleted": "Verwijderd:", - "Common.Controllers.Collaboration.textDeleteReply": "Verwijderen antwoord", - "Common.Controllers.Collaboration.textDone": "Klaar", - "Common.Controllers.Collaboration.textDStrikeout": "Dubbel doorhalen", - "Common.Controllers.Collaboration.textEdit": "Bewerken", - "Common.Controllers.Collaboration.textEditUser": "Document wordt op dit moment bewerkt door verschillende gebruikers.", - "Common.Controllers.Collaboration.textEquation": "Vergelijking", - "Common.Controllers.Collaboration.textExact": "exact", - "Common.Controllers.Collaboration.textFirstLine": "Eerste alinea", - "Common.Controllers.Collaboration.textFormatted": "Opgemaakt", - "Common.Controllers.Collaboration.textHighlight": "Markeringskleur", - "Common.Controllers.Collaboration.textImage": "Afbeelding", - "Common.Controllers.Collaboration.textIndentLeft": "Links inspringen", - "Common.Controllers.Collaboration.textIndentRight": "Rechts inspringen", - "Common.Controllers.Collaboration.textInserted": "Ingevoegd:", - "Common.Controllers.Collaboration.textItalic": "Cursief", - "Common.Controllers.Collaboration.textJustify": "Uitvullen", - "Common.Controllers.Collaboration.textKeepLines": "Regels bijeenhouden", - "Common.Controllers.Collaboration.textKeepNext": "Bij volgende alinea houden", - "Common.Controllers.Collaboration.textLeft": "Links uitlijnen", - "Common.Controllers.Collaboration.textLineSpacing": "Regelafstand:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Wil je deze opmerking verwijderen?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Wil je dit antwoord verwijderen?", - "Common.Controllers.Collaboration.textMultiple": "meerdere", - "Common.Controllers.Collaboration.textNoBreakBefore": "Geen pagina-einde vóór", - "Common.Controllers.Collaboration.textNoChanges": "Er zijn geen wijzigingen.", - "Common.Controllers.Collaboration.textNoContextual": "Interval toevoegen tussen alinea's met dezelfde stijl", - "Common.Controllers.Collaboration.textNoKeepLines": "Houd lijnen niet bij elkaar", - "Common.Controllers.Collaboration.textNoKeepNext": "Niet bij volgende alinea houden", - "Common.Controllers.Collaboration.textNot": "Niet", - "Common.Controllers.Collaboration.textNoWidow": "Zwevende eindregels niet voorkomen", - "Common.Controllers.Collaboration.textNum": "Nummering wijzigen", - "Common.Controllers.Collaboration.textParaDeleted": "Paragraaf verwijderd ", - "Common.Controllers.Collaboration.textParaFormatted": "Paragraaf Opgemaakt", - "Common.Controllers.Collaboration.textParaInserted": "Paragraaf ingevoegd ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Verplaatst naar beneden:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Verplaatst naar boven:", - "Common.Controllers.Collaboration.textParaMoveTo": "Verplaatst:", - "Common.Controllers.Collaboration.textPosition": "Positie", - "Common.Controllers.Collaboration.textReopen": "Heropenen", - "Common.Controllers.Collaboration.textResolve": "Oplossen", - "Common.Controllers.Collaboration.textRight": "Rechts uitlijnen", - "Common.Controllers.Collaboration.textShape": "Vorm", - "Common.Controllers.Collaboration.textShd": "Arcering", - "Common.Controllers.Collaboration.textSmallCaps": "Kleine letters", - "Common.Controllers.Collaboration.textSpacing": "Afstand", - "Common.Controllers.Collaboration.textSpacingAfter": "Afstand na", - "Common.Controllers.Collaboration.textSpacingBefore": "Afstand vóór", - "Common.Controllers.Collaboration.textStrikeout": "Doorhalen", - "Common.Controllers.Collaboration.textSubScript": "Subscript", - "Common.Controllers.Collaboration.textSuperScript": "Superscript", - "Common.Controllers.Collaboration.textTableChanged": "Tabel instellingen aangepast", - "Common.Controllers.Collaboration.textTableRowsAdd": "Tabel rijen toegevoegd", - "Common.Controllers.Collaboration.textTableRowsDel": "Tabel rijen verwijderd", - "Common.Controllers.Collaboration.textTabs": "Tabs wijzigen", - "Common.Controllers.Collaboration.textUnderline": "Onderstrepen", - "Common.Controllers.Collaboration.textWidow": "Zwevende regels voorkomen", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Aangepaste kleuren", - "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", - "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Accepteren", - "Common.Views.Collaboration.textAcceptAllChanges": "Alle wijzigingen accepteren", - "Common.Views.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Alles accepteren (voorbeeld)", - "Common.Views.Collaboration.textAllChangesEditing": "Alle veranderingen (bewerken)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Alle wijzigingen afkeuren (voorbeeld)", - "Common.Views.Collaboration.textBack": "Vorige", - "Common.Views.Collaboration.textCancel": "Annuleren", - "Common.Views.Collaboration.textChange": "Bekijk de wijziging", - "Common.Views.Collaboration.textCollaboration": "Samenwerking", - "Common.Views.Collaboration.textDisplayMode": "Weergavemodus", - "Common.Views.Collaboration.textDone": "Klaar", - "Common.Views.Collaboration.textEditReply": "Bewerk antwoord", - "Common.Views.Collaboration.textEditUsers": "Gebruikers", - "Common.Views.Collaboration.textEditСomment": "Opmerking bewerken", - "Common.Views.Collaboration.textFinal": "Definitief", - "Common.Views.Collaboration.textMarkup": "Markup", - "Common.Views.Collaboration.textNoComments": "Dit document bevat geen opmerkingen", - "Common.Views.Collaboration.textOriginal": "Origineel", - "Common.Views.Collaboration.textReject": "Afkeuren", - "Common.Views.Collaboration.textRejectAllChanges": "Alle wijzigingen afwijzen", - "Common.Views.Collaboration.textReview": "Wijzigingen bijhouden", - "Common.Views.Collaboration.textReviewing": "Beoordelen", - "Common.Views.Collaboration.textСomments": "Opmerkingen", - "DE.Controllers.AddContainer.textImage": "Afbeelding", - "DE.Controllers.AddContainer.textOther": "Overige", - "DE.Controllers.AddContainer.textShape": "Vorm", - "DE.Controllers.AddContainer.textTable": "Tabel", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.AddImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "DE.Controllers.AddImage.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.AddOther.textBelowText": "Onder de tekst", - "DE.Controllers.AddOther.textBottomOfPage": "Onder aan pagina", - "DE.Controllers.AddOther.textCancel": "Annuleren", - "DE.Controllers.AddOther.textContinue": "Doorgaan", - "DE.Controllers.AddOther.textDelete": "Verwijderen", - "DE.Controllers.AddOther.textDeleteDraft": "Wilt u het concept verwijderen?", - "DE.Controllers.AddOther.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", - "DE.Controllers.AddTable.textCancel": "Annuleren", - "DE.Controllers.AddTable.textColumns": "Kolommen", - "DE.Controllers.AddTable.textRows": "Rijen", - "DE.Controllers.AddTable.textTableSize": "Tabelgrootte", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken via het contextmenu worden alleen in het huidige bestand uitgevoerd.", - "DE.Controllers.DocumentHolder.menuAddComment": "Opmerking toevoegen", - "DE.Controllers.DocumentHolder.menuAddLink": "Koppeling toevoegen", - "DE.Controllers.DocumentHolder.menuCopy": "Kopiëren", - "DE.Controllers.DocumentHolder.menuCut": "Knippen", - "DE.Controllers.DocumentHolder.menuDelete": "Verwijderen", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Tabel verwijderen", - "DE.Controllers.DocumentHolder.menuEdit": "Bewerken", - "DE.Controllers.DocumentHolder.menuMerge": "Cellen samenvoegen", - "DE.Controllers.DocumentHolder.menuMore": "Meer", - "DE.Controllers.DocumentHolder.menuOpenLink": "Koppeling openen", - "DE.Controllers.DocumentHolder.menuPaste": "Plakken", - "DE.Controllers.DocumentHolder.menuReview": "Beoordelen", - "DE.Controllers.DocumentHolder.menuReviewChange": "Bekijk de wijziging", - "DE.Controllers.DocumentHolder.menuSplit": "Cel splitsen", - "DE.Controllers.DocumentHolder.menuViewComment": "Bekijk opmerking", - "DE.Controllers.DocumentHolder.sheetCancel": "Annuleren", - "DE.Controllers.DocumentHolder.textCancel": "Annuleren", - "DE.Controllers.DocumentHolder.textColumns": "Kolommen", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Niet meer weergeven", - "DE.Controllers.DocumentHolder.textGuest": "Gast", - "DE.Controllers.DocumentHolder.textRows": "Rijen", - "DE.Controllers.EditContainer.textChart": "Grafiek", - "DE.Controllers.EditContainer.textFooter": "Voettekst", - "DE.Controllers.EditContainer.textHeader": "Koptekst", - "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "DE.Controllers.EditContainer.textImage": "Afbeelding", - "DE.Controllers.EditContainer.textParagraph": "Alinea", - "DE.Controllers.EditContainer.textSettings": "Instellingen", - "DE.Controllers.EditContainer.textShape": "Vorm", - "DE.Controllers.EditContainer.textTable": "Tabel", - "DE.Controllers.EditContainer.textText": "Tekst", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Dit veld moet een URL zijn in de 'http://www.example.com'-indeling", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.EditImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "DE.Controllers.EditImage.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", - "DE.Controllers.EditText.textAuto": "Automatisch", - "DE.Controllers.EditText.textFonts": "Lettertypen", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Voer uw wachtwoord in:", - "DE.Controllers.Main.advDRMOptions": "Beschermd bestand", - "DE.Controllers.Main.advDRMPassword": "Wachtwoord", - "DE.Controllers.Main.advTxtOptions": "Opties voor TXT-bestanden kiezen", - "DE.Controllers.Main.applyChangesTextText": "Gegevens worden geladen...", - "DE.Controllers.Main.applyChangesTitleText": "Gegevens worden geladen", - "DE.Controllers.Main.closeButtonText": "Bestand sluiten", - "DE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", - "DE.Controllers.Main.criticalErrorExtText": "Druk op \"OK\" om terug te gaan naar de lijst met documenten.", - "DE.Controllers.Main.criticalErrorTitle": "Fout", - "DE.Controllers.Main.downloadErrorText": "Download mislukt.", - "DE.Controllers.Main.downloadMergeText": "Downloaden...", - "DE.Controllers.Main.downloadMergeTitle": "Downloaden", - "DE.Controllers.Main.downloadTextText": "Document wordt gedownload...", - "DE.Controllers.Main.downloadTitleText": "Document wordt gedownload", - "DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
    Neem contact op met de beheerder van de documentserver.", - "DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server verbroken. U kunt niet doorgaan met bewerken.", - "DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
    Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", - "DE.Controllers.Main.errorDatabaseConnection": "Externe fout.
    Fout in databaseverbinding. Neem contact op met Support.", - "DE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", - "DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik", - "DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan bij het werken met dit document.
    Gebruik de 'Download' optie om een backup op te slaan op uw computer.", - "DE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", - "DE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
    Neem contact op met uw Document Server-beheerder voor details.", - "DE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", - "DE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", - "DE.Controllers.Main.errorMailMergeLoadFile": "Het laden van het document is mislukt. Selecteer een ander bestand.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Samenvoegen mislukt.", - "DE.Controllers.Main.errorOpensource": "Met de gratis Community-versie kunt u documenten openen om ze alleen te bekijken. Om toegang te krijgen tot mobiele webeditors is een commerciële licentie vereist.", - "DE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt.", - "DE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", - "DE.Controllers.Main.errorSessionAbsolute": "De bewerksessie voor het document is vervallen. Laad de pagina opnieuw.", - "DE.Controllers.Main.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw.", - "DE.Controllers.Main.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", - "DE.Controllers.Main.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", - "DE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", - "DE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", - "DE.Controllers.Main.errorUsersExceed": "Het aantal gebruikers is overschreden", - "DE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
    maar kunt het pas downloaden wanneer de verbinding is hersteld.", - "DE.Controllers.Main.leavePageText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "DE.Controllers.Main.loadFontsTextText": "Gegevens worden geladen...", - "DE.Controllers.Main.loadFontsTitleText": "Gegevens worden geladen", - "DE.Controllers.Main.loadFontTextText": "Gegevens worden geladen...", - "DE.Controllers.Main.loadFontTitleText": "Gegevens worden geladen", - "DE.Controllers.Main.loadImagesTextText": "Afbeeldingen worden geladen...", - "DE.Controllers.Main.loadImagesTitleText": "Afbeeldingen worden geladen", - "DE.Controllers.Main.loadImageTextText": "Afbeelding wordt geladen...", - "DE.Controllers.Main.loadImageTitleText": "Afbeelding wordt geladen", - "DE.Controllers.Main.loadingDocumentTextText": "Document wordt geladen...", - "DE.Controllers.Main.loadingDocumentTitleText": "Document wordt geladen", - "DE.Controllers.Main.mailMergeLoadFileText": "Gegevensbron wordt geladen...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen", - "DE.Controllers.Main.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.Main.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", - "DE.Controllers.Main.openTextText": "Document wordt geopend...", - "DE.Controllers.Main.openTitleText": "Document wordt geopend", - "DE.Controllers.Main.printTextText": "Document wordt afgedrukt...", - "DE.Controllers.Main.printTitleText": "Document wordt afgedrukt", - "DE.Controllers.Main.saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", - "DE.Controllers.Main.savePreparingText": "Voorbereiding op opslaan", - "DE.Controllers.Main.savePreparingTitle": "Bezig met voorbereiding op opslaan. Even geduld...", - "DE.Controllers.Main.saveTextText": "Document wordt opgeslagen...", - "DE.Controllers.Main.saveTitleText": "Document wordt opgeslagen", - "DE.Controllers.Main.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", - "DE.Controllers.Main.sendMergeText": "Samenvoegen en verzenden...", - "DE.Controllers.Main.sendMergeTitle": "Samenvoegen en verzenden", - "DE.Controllers.Main.splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1", - "DE.Controllers.Main.textAnonymous": "Anoniem", - "DE.Controllers.Main.textBack": "Terug", - "DE.Controllers.Main.textBuyNow": "Website bezoeken", - "DE.Controllers.Main.textCancel": "Annuleren", - "DE.Controllers.Main.textClose": "Sluiten", - "DE.Controllers.Main.textContactUs": "Verkoopafdeling", - "DE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
    Neem contact op met onze verkoopafdeling voor een offerte.", - "DE.Controllers.Main.textDone": "Klaar", - "DE.Controllers.Main.textGuest": "Gastgebruiker", - "DE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", - "DE.Controllers.Main.textLoadingDocument": "Document wordt geladen", - "DE.Controllers.Main.textNo": "Nee", - "DE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Betaalde optie", - "DE.Controllers.Main.textPassword": "Wachtwoord", - "DE.Controllers.Main.textPreloader": "Laden...", - "DE.Controllers.Main.textRemember": "Onthoud voorkeur voor alle bestanden", - "DE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw zijn gedeactiveerd voor de modus Snel gezamenlijk bewerken.", - "DE.Controllers.Main.textUsername": "Gebruikersnaam", - "DE.Controllers.Main.textYes": "Ja", - "DE.Controllers.Main.titleLicenseExp": "Licentie vervallen", - "DE.Controllers.Main.titleServerVersion": "Editor bijgewerkt", - "DE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd", - "DE.Controllers.Main.txtAbove": "Boven", - "DE.Controllers.Main.txtArt": "Hier tekst invoeren", - "DE.Controllers.Main.txtBelow": "Onder", - "DE.Controllers.Main.txtCurrentDocument": "Huidig document", - "DE.Controllers.Main.txtDiagramTitle": "Grafiektitel", - "DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", - "DE.Controllers.Main.txtEvenPage": "Even pagina", - "DE.Controllers.Main.txtFirstPage": "Eerste pagina", - "DE.Controllers.Main.txtFooter": "Voettekst", - "DE.Controllers.Main.txtHeader": "Koptekst", - "DE.Controllers.Main.txtOddPage": "Oneven pagina", - "DE.Controllers.Main.txtOnPage": "op pagina", - "DE.Controllers.Main.txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", - "DE.Controllers.Main.txtSameAsPrev": "Zelfde als vorige", - "DE.Controllers.Main.txtSection": "-Sectie", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_footnote_text": "Voetnoot tekst", - "DE.Controllers.Main.txtStyle_Heading_1": "Kop 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Kop 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Kop 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Kop 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Kop 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Kop 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Kop 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Kop 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Kop 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Duidelijk citaat", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Lijstalinea", - "DE.Controllers.Main.txtStyle_No_Spacing": "Geen afstand", - "DE.Controllers.Main.txtStyle_Normal": "Normaal", - "DE.Controllers.Main.txtStyle_Quote": "Citaat", - "DE.Controllers.Main.txtStyle_Subtitle": "Subtitel", - "DE.Controllers.Main.txtStyle_Title": "Titel", - "DE.Controllers.Main.txtXAxis": "X-as", - "DE.Controllers.Main.txtYAxis": "Y-as", - "DE.Controllers.Main.unknownErrorText": "Onbekende fout.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", - "DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximaal toegestane afbeeldingsgrootte overschreden.", - "DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", - "DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", - "DE.Controllers.Main.waitText": "Een moment...", - "DE.Controllers.Main.warnLicenseExceeded": "U heeft de limiet bereikt voor gelijktijdige verbindingen met% 1 editors. Dit document wordt alleen geopend om te bekijken.
    Neem contact op met uw beheerder voor meer informatie.", - "DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
    Werk uw licentie bij en vernieuw de pagina.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licentie verlopen.
    U heeft geen toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licentie moet worden verlengd.
    U heeft beperkte toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder voor volledige toegang", - "DE.Controllers.Main.warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor% 1 editors bereikt. Neem contact op met uw beheerder voor meer informatie.", - "DE.Controllers.Main.warnNoLicense": "U heeft de limiet bereikt voor gelijktijdige verbindingen met% 1 editors. Dit document wordt alleen geopend om te bekijken.
    Neem contact op met het% 1 verkoopteam voor persoonlijke upgradevoorwaarden.", - "DE.Controllers.Main.warnNoLicenseUsers": "U heeft de gebruikerslimiet voor% 1 editors bereikt. Neem contact op met het verkoopteam van% 1 voor persoonlijke upgradevoorwaarden.", - "DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", - "DE.Controllers.Search.textNoTextFound": "Tekst niet gevonden", - "DE.Controllers.Search.textReplaceAll": "Alles vervangen", - "DE.Controllers.Settings.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.Settings.textCustomSize": "Aangepaste grootte", - "DE.Controllers.Settings.txtLoading": "Laden...", - "DE.Controllers.Settings.unknownText": "Onbekend", - "DE.Controllers.Settings.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Als u doorgaat met opslaan in deze indeling, kan een deel van de opmaak verloren gaan.
    Weet u zeker dat u wilt doorgaan?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "U verlaat de toepassing", - "DE.Controllers.Toolbar.leaveButtonText": "Pagina verlaten", - "DE.Controllers.Toolbar.stayButtonText": "Op deze pagina blijven", - "DE.Views.AddImage.textAddress": "Adres", - "DE.Views.AddImage.textBack": "Terug", - "DE.Views.AddImage.textFromLibrary": "Afbeelding uit bibliotheek", - "DE.Views.AddImage.textFromURL": "Afbeelding van URL", - "DE.Views.AddImage.textImageURL": "URL afbeelding", - "DE.Views.AddImage.textInsertImage": "Afbeelding invoegen", - "DE.Views.AddImage.textLinkSettings": "Koppelingsinstellingen", - "DE.Views.AddOther.textAddComment": "Opmerking toevoegen", - "DE.Views.AddOther.textAddLink": "Koppeling toevoegen", - "DE.Views.AddOther.textBack": "Terug", - "DE.Views.AddOther.textBreak": "Pagina-einde", - "DE.Views.AddOther.textCenterBottom": "Middenonder", - "DE.Views.AddOther.textCenterTop": "Middenboven", - "DE.Views.AddOther.textColumnBreak": "Kolomeinde", - "DE.Views.AddOther.textComment": "Opmerking", - "DE.Views.AddOther.textContPage": "Doorlopende pagina", - "DE.Views.AddOther.textCurrentPos": "Huidige positie", - "DE.Views.AddOther.textDisplay": "Weergeven", - "DE.Views.AddOther.textDone": "Klaar", - "DE.Views.AddOther.textEvenPage": "Even pagina", - "DE.Views.AddOther.textFootnote": "Voetnoot", - "DE.Views.AddOther.textFormat": "Opmaak", - "DE.Views.AddOther.textInsert": "Invoegen", - "DE.Views.AddOther.textInsertFootnote": "Voetnoot invoegen", - "DE.Views.AddOther.textLeftBottom": "Linksonder", - "DE.Views.AddOther.textLeftTop": "Linksboven", - "DE.Views.AddOther.textLink": "Koppeling", - "DE.Views.AddOther.textLocation": "Locatie", - "DE.Views.AddOther.textNextPage": "Volgende pagina", - "DE.Views.AddOther.textOddPage": "Oneven pagina", - "DE.Views.AddOther.textPageBreak": "Pagina-einde", - "DE.Views.AddOther.textPageNumber": "Paginanummer", - "DE.Views.AddOther.textPosition": "Positie", - "DE.Views.AddOther.textRightBottom": "Rechtsonder", - "DE.Views.AddOther.textRightTop": "Rechtsboven", - "DE.Views.AddOther.textSectionBreak": "Sectie-einde", - "DE.Views.AddOther.textStartFrom": "Beginnen bij", - "DE.Views.AddOther.textTip": "Scherminfo", - "DE.Views.EditChart.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditChart.textAlign": "Uitlijnen", - "DE.Views.EditChart.textBack": "Terug", - "DE.Views.EditChart.textBackward": "Naar achter verplaatsen", - "DE.Views.EditChart.textBehind": "Achter", - "DE.Views.EditChart.textBorder": "Rand", - "DE.Views.EditChart.textColor": "Kleur", - "DE.Views.EditChart.textCustomColor": "Aangepaste kleur", - "DE.Views.EditChart.textDistanceText": "Afstand van tekst", - "DE.Views.EditChart.textFill": "Vulling", - "DE.Views.EditChart.textForward": "Naar voren verplaatsen", - "DE.Views.EditChart.textInFront": "Vooraan", - "DE.Views.EditChart.textInline": "Inline", - "DE.Views.EditChart.textMoveText": "Met tekst verplaatsen", - "DE.Views.EditChart.textOverlap": "Overlapping toestaan", - "DE.Views.EditChart.textRemoveChart": "Grafiek verwijderen", - "DE.Views.EditChart.textReorder": "Opnieuw ordenen", - "DE.Views.EditChart.textSize": "Grootte", - "DE.Views.EditChart.textSquare": "Vierkant", - "DE.Views.EditChart.textStyle": "Stijl", - "DE.Views.EditChart.textThrough": "Door", - "DE.Views.EditChart.textTight": "Strak", - "DE.Views.EditChart.textToBackground": "Naar achtergrond sturen", - "DE.Views.EditChart.textToForeground": "Naar voorgrond brengen", - "DE.Views.EditChart.textTopBottom": "Boven en onder", - "DE.Views.EditChart.textType": "Type", - "DE.Views.EditChart.textWrap": "Terugloop", - "DE.Views.EditHeader.textDiffFirst": "Eerste pagina afwijkend", - "DE.Views.EditHeader.textDiffOdd": "Even en oneven pagina's afwijkend", - "DE.Views.EditHeader.textFrom": "Beginnen bij", - "DE.Views.EditHeader.textPageNumbering": "Paginanummering", - "DE.Views.EditHeader.textPrev": "Doorgaan vanuit volgende sectie", - "DE.Views.EditHeader.textSameAs": "Koppelen aan vorige", - "DE.Views.EditHyperlink.textDisplay": "Weergeven", - "DE.Views.EditHyperlink.textEdit": "Koppeling bewerken", - "DE.Views.EditHyperlink.textLink": "Koppeling", - "DE.Views.EditHyperlink.textRemove": "Koppeling verwijderen", - "DE.Views.EditHyperlink.textTip": "Scherminfo", - "DE.Views.EditImage.textAddress": "Adres", - "DE.Views.EditImage.textAlign": "Uitlijnen", - "DE.Views.EditImage.textBack": "Terug", - "DE.Views.EditImage.textBackward": "Naar achter verplaatsen", - "DE.Views.EditImage.textBehind": "Achter", - "DE.Views.EditImage.textDefault": "Ware grootte", - "DE.Views.EditImage.textDistanceText": "Afstand van tekst", - "DE.Views.EditImage.textForward": "Naar voren verplaatsen", - "DE.Views.EditImage.textFromLibrary": "Afbeelding uit bibliotheek", - "DE.Views.EditImage.textFromURL": "Afbeelding van URL", - "DE.Views.EditImage.textImageURL": "URL afbeelding", - "DE.Views.EditImage.textInFront": "Vooraan", - "DE.Views.EditImage.textInline": "Inline", - "DE.Views.EditImage.textLinkSettings": "Koppelingsinstellingen", - "DE.Views.EditImage.textMoveText": "Met tekst verplaatsen", - "DE.Views.EditImage.textOverlap": "Overlapping toestaan", - "DE.Views.EditImage.textRemove": "Afbeelding verwijderen", - "DE.Views.EditImage.textReorder": "Opnieuw ordenen", - "DE.Views.EditImage.textReplace": "Vervangen", - "DE.Views.EditImage.textReplaceImg": "Afbeelding vervangen", - "DE.Views.EditImage.textSquare": "Vierkant", - "DE.Views.EditImage.textThrough": "Door", - "DE.Views.EditImage.textTight": "Strak", - "DE.Views.EditImage.textToBackground": "Naar achtergrond sturen", - "DE.Views.EditImage.textToForeground": "Naar voorgrond brengen", - "DE.Views.EditImage.textTopBottom": "Boven en onder", - "DE.Views.EditImage.textWrap": "Terugloop", - "DE.Views.EditParagraph.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditParagraph.textAdvanced": "Geavanceerd", - "DE.Views.EditParagraph.textAdvSettings": "Geavanceerde instellingen", - "DE.Views.EditParagraph.textAfter": "Na", - "DE.Views.EditParagraph.textAuto": "Automatisch", - "DE.Views.EditParagraph.textBack": "Terug", - "DE.Views.EditParagraph.textBackground": "Achtergrond", - "DE.Views.EditParagraph.textBefore": "Vóór", - "DE.Views.EditParagraph.textCustomColor": "Aangepaste kleur", - "DE.Views.EditParagraph.textFirstLine": "Eerste regel", - "DE.Views.EditParagraph.textFromText": "Afstand van tekst", - "DE.Views.EditParagraph.textKeepLines": "Regels bijeenhouden", - "DE.Views.EditParagraph.textKeepNext": "Bij volgende alinea houden", - "DE.Views.EditParagraph.textOrphan": "Zwevende regels voorkomen", - "DE.Views.EditParagraph.textPageBreak": "Pagina-einde vóór", - "DE.Views.EditParagraph.textPrgStyles": "Alineastijlen", - "DE.Views.EditParagraph.textSpaceBetween": "Ruimte tussen alinea's", - "DE.Views.EditShape.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditShape.textAlign": "Uitlijnen", - "DE.Views.EditShape.textBack": "Terug", - "DE.Views.EditShape.textBackward": "Naar achter verplaatsen", - "DE.Views.EditShape.textBehind": "Achter", - "DE.Views.EditShape.textBorder": "Rand", - "DE.Views.EditShape.textColor": "Kleur", - "DE.Views.EditShape.textCustomColor": "Aangepaste kleur", - "DE.Views.EditShape.textEffects": "Effecten", - "DE.Views.EditShape.textFill": "Vulling", - "DE.Views.EditShape.textForward": "Naar voren verplaatsen", - "DE.Views.EditShape.textFromText": "Afstand van tekst", - "DE.Views.EditShape.textInFront": "Vooraan", - "DE.Views.EditShape.textInline": "Inline", - "DE.Views.EditShape.textOpacity": "Ondoorzichtigheid", - "DE.Views.EditShape.textOverlap": "Overlapping toestaan", - "DE.Views.EditShape.textRemoveShape": "Vorm verwijderen", - "DE.Views.EditShape.textReorder": "Opnieuw ordenen", - "DE.Views.EditShape.textReplace": "Vervangen", - "DE.Views.EditShape.textSize": "Grootte", - "DE.Views.EditShape.textSquare": "Vierkant", - "DE.Views.EditShape.textStyle": "Stijl", - "DE.Views.EditShape.textThrough": "Door", - "DE.Views.EditShape.textTight": "Strak", - "DE.Views.EditShape.textToBackground": "Naar achtergrond sturen", - "DE.Views.EditShape.textToForeground": "Naar voorgrond brengen", - "DE.Views.EditShape.textTopAndBottom": "Boven en onder", - "DE.Views.EditShape.textWithText": "Met tekst verplaatsen", - "DE.Views.EditShape.textWrap": "Terugloop", - "DE.Views.EditTable.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditTable.textAlign": "Uitlijnen", - "DE.Views.EditTable.textBack": "Terug", - "DE.Views.EditTable.textBandedColumn": "Gestreepte kolom", - "DE.Views.EditTable.textBandedRow": "Gestreepte rij", - "DE.Views.EditTable.textBorder": "Rand", - "DE.Views.EditTable.textCellMargins": "Celmarges", - "DE.Views.EditTable.textColor": "Kleur", - "DE.Views.EditTable.textCustomColor": "Aangepaste kleur", - "DE.Views.EditTable.textFill": "Vulling", - "DE.Views.EditTable.textFirstColumn": "Eerste kolom", - "DE.Views.EditTable.textFlow": "Stroom", - "DE.Views.EditTable.textFromText": "Afstand van tekst", - "DE.Views.EditTable.textHeaderRow": "Koprij", - "DE.Views.EditTable.textInline": "Inline", - "DE.Views.EditTable.textLastColumn": "Laatste kolom", - "DE.Views.EditTable.textOptions": "Opties", - "DE.Views.EditTable.textRemoveTable": "Tabel verwijderen", - "DE.Views.EditTable.textRepeatHeader": "Als koprij herhalen", - "DE.Views.EditTable.textResizeFit": "Grootte aanpassen aan inhoud", - "DE.Views.EditTable.textSize": "Grootte", - "DE.Views.EditTable.textStyle": "Stijl", - "DE.Views.EditTable.textStyleOptions": "Stijlopties", - "DE.Views.EditTable.textTableOptions": "Tabelopties", - "DE.Views.EditTable.textTotalRow": "Totaalrij", - "DE.Views.EditTable.textWithText": "Met tekst verplaatsen", - "DE.Views.EditTable.textWrap": "Terugloop", - "DE.Views.EditText.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditText.textAdditional": "Extra", - "DE.Views.EditText.textAdditionalFormat": "Aanvullende opmaak", - "DE.Views.EditText.textAllCaps": "Allemaal hoofdletters", - "DE.Views.EditText.textAutomatic": "Automatisch", - "DE.Views.EditText.textBack": "Terug", - "DE.Views.EditText.textBullets": "Opsommingstekens", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "s", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Aangepaste kleur", - "DE.Views.EditText.textDblStrikethrough": "Dubbel doorhalen", - "DE.Views.EditText.textDblSuperscript": "Superscript", - "DE.Views.EditText.textFontColor": "Tekenkleur", - "DE.Views.EditText.textFontColors": "Tekenkleuren", - "DE.Views.EditText.textFonts": "Lettertypen", - "DE.Views.EditText.textHighlightColor": "Markeringskleur", - "DE.Views.EditText.textHighlightColors": "Markeringskleuren", - "DE.Views.EditText.textLetterSpacing": "Letterafstand", - "DE.Views.EditText.textLineSpacing": "Regelafstand", - "DE.Views.EditText.textNone": "Geen", - "DE.Views.EditText.textNumbers": "Nummers", - "DE.Views.EditText.textSize": "Grootte", - "DE.Views.EditText.textSmallCaps": "Kleine hoofdletters", - "DE.Views.EditText.textStrikethrough": "Doorhalen", - "DE.Views.EditText.textSubscript": "Subscript", - "DE.Views.Search.textCase": "Hoofdlettergevoelig", - "DE.Views.Search.textDone": "Klaar", - "DE.Views.Search.textFind": "Zoeken", - "DE.Views.Search.textFindAndReplace": "Zoeken en vervangen", - "DE.Views.Search.textHighlight": "Resultaten markeren", - "DE.Views.Search.textReplace": "Vervangen", - "DE.Views.Search.textSearch": "Zoeken", - "DE.Views.Settings.textAbout": "Over", - "DE.Views.Settings.textAddress": "adres", - "DE.Views.Settings.textAdvancedSettings": "Instellingen", - "DE.Views.Settings.textApplication": "Applicatie", - "DE.Views.Settings.textAuthor": "Auteur", - "DE.Views.Settings.textBack": "Terug", - "DE.Views.Settings.textBottom": "Onder", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Samenwerking", - "DE.Views.Settings.textColorSchemes": "Kleurschema's", - "DE.Views.Settings.textComment": "Opmerking", - "DE.Views.Settings.textCommentingDisplay": "Opmerkingen weergeven", - "DE.Views.Settings.textCreated": "Aangemaakt", - "DE.Views.Settings.textCreateDate": "Datum gemaakt", - "DE.Views.Settings.textCustom": "Aangepast", - "DE.Views.Settings.textCustomSize": "Aangepaste grootte", - "DE.Views.Settings.textDisableAll": "Alles uitschakelen", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Schakel alle macro's uit zonder melding", - "DE.Views.Settings.textDisplayComments": "Opmerkingen", - "DE.Views.Settings.textDisplayResolvedComments": "Opgeloste opmerkingen", - "DE.Views.Settings.textDocInfo": "Documentinfo", - "DE.Views.Settings.textDocTitle": "Titel document", - "DE.Views.Settings.textDocumentFormats": "Documentindelingen", - "DE.Views.Settings.textDocumentSettings": "Documentinstellingen", - "DE.Views.Settings.textDone": "Klaar", - "DE.Views.Settings.textDownload": "Downloaden", - "DE.Views.Settings.textDownloadAs": "Downloaden als...", - "DE.Views.Settings.textEditDoc": "Document bewerken", - "DE.Views.Settings.textEmail": "e-mail", - "DE.Views.Settings.textEnableAll": "Alles inschakelen", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Schakel alle macro's in zonder een notificatie", - "DE.Views.Settings.textFind": "Zoeken", - "DE.Views.Settings.textFindAndReplace": "Zoeken en vervangen", - "DE.Views.Settings.textFormat": "Opmaak", - "DE.Views.Settings.textHelp": "Help", - "DE.Views.Settings.textHiddenTableBorders": "Verborgen tabelranden", - "DE.Views.Settings.textInch": "Inch", - "DE.Views.Settings.textLandscape": "Liggend", - "DE.Views.Settings.textLastModified": "Laatst aangepast", - "DE.Views.Settings.textLastModifiedBy": "Laatst aangepast door", - "DE.Views.Settings.textLeft": "Links", - "DE.Views.Settings.textLoading": "Laden...", - "DE.Views.Settings.textLocation": "Locatie", - "DE.Views.Settings.textMacrosSettings": "Macro instellingen", - "DE.Views.Settings.textMargins": "Marges", - "DE.Views.Settings.textNoCharacters": "Niet-afdrukbare tekens", - "DE.Views.Settings.textOrientation": "Afdrukstand", - "DE.Views.Settings.textOwner": "Eigenaar", - "DE.Views.Settings.textPages": "Pagina's", - "DE.Views.Settings.textParagraphs": "Alinea's", - "DE.Views.Settings.textPoint": "Punt", - "DE.Views.Settings.textPortrait": "Staand", - "DE.Views.Settings.textPoweredBy": "Aangedreven door", - "DE.Views.Settings.textPrint": "Afdrukken", - "DE.Views.Settings.textReader": "Leesmodus", - "DE.Views.Settings.textReview": "Wijzigingen bijhouden", - "DE.Views.Settings.textRight": "Rechts", - "DE.Views.Settings.textSettings": "Instellingen", - "DE.Views.Settings.textShowNotification": "Weergeef notificatie", - "DE.Views.Settings.textSpaces": "Spaties", - "DE.Views.Settings.textSpellcheck": "Spellingcontrole", - "DE.Views.Settings.textStatistic": "Statistiek", - "DE.Views.Settings.textSubject": "Onderwerp", - "DE.Views.Settings.textSymbols": "Symbolen", - "DE.Views.Settings.textTel": "Tel.", - "DE.Views.Settings.textTitle": "Titel", - "DE.Views.Settings.textTop": "Boven", - "DE.Views.Settings.textUnitOfMeasurement": "Maateenheid", - "DE.Views.Settings.textUploaded": "Geüpload", - "DE.Views.Settings.textVersion": "Versie", - "DE.Views.Settings.textWords": "Woorden", - "DE.Views.Settings.unknownText": "Onbekend", - "DE.Views.Toolbar.textBack": "Terug" + "About": { + "textAbout": "Over", + "textAddress": "Adres", + "textBack": "Terug", + "textEmail": "E-mail", + "textPoweredBy": "Aangedreven door", + "textTel": "Tel.", + "textVersion": "Versie" + }, + "Add": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddLink": "Koppeling toevoegen", + "textAddress": "Adres", + "textBack": "Terug", + "textBelowText": "Onder de tekst", + "textBottomOfPage": "Onderkant pagina", + "textBreak": "Onderbreking", + "textCancel": "Annuleren", + "textCenterBottom": "Middenonder", + "textCenterTop": "Middenboven", + "textColumnBreak": "Kolomeinde", + "textColumns": "Kolommen", + "textComment": "Opmerking", + "textContinuousPage": "Doorlopende pagina", + "textCurrentPosition": "Huidige positie", + "textDisplay": "Weergeven", + "textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", + "textEvenPage": "Even pagina", + "textFootnote": "Voetnoot", + "textFormat": "Opmaak", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInsert": "Invoegen", + "textInsertFootnote": "Voetnoot invoegen", + "textInsertImage": "Afbeelding invoegen", + "textLeftBottom": "Linksonder", + "textLeftTop": "Linksboven", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLocation": "Locatie", + "textNextPage": "Volgende pagina", + "textOddPage": "Oneven pagina", + "textOther": "Overige", + "textPageBreak": "Pagina-einde", + "textPageNumber": "Paginanummer", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPosition": "Positie", + "textRightBottom": "Rechtsonder", + "textRightTop": "Rechtsboven", + "textRows": "Rijen", + "textScreenTip": "Schermtip", + "textSectionBreak": "Sectie-einde", + "textShape": "Vorm", + "textStartAt": "Beginnen bij", + "textTable": "Tabel", + "textTableSize": "Tabelgrootte", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Waarschuwing", + "textAccept": "Accepteren", + "textAcceptAllChanges": "Alle wijzigingen accepteren", + "textAddComment": "Opmerking toevoegen", + "textAddReply": "Reactie toevoegen", + "textAllChangesAcceptedPreview": "Alle veranderingen geaccepteerd (Voorbeeld)", + "textAllChangesEditing": "Alle veranderingen (Bewerken)", + "textAllChangesRejectedPreview": "Alle veranderingen afgekeurd (Voorbeeld)", + "textAtLeast": "ten minste", + "textAuto": "Automatisch", + "textBack": "Terug", + "textBaseline": "Basislijn", + "textBold": "Vet", + "textBreakBefore": "Pagina-einde vóór", + "textCancel": "Annuleren", + "textCaps": "Allemaal hoofdletters", + "textCenter": "Centreren", + "textChart": "Grafiek", + "textCollaboration": "Samenwerking", + "textColor": "Kleur lettertype", + "textComments": "Opmerkingen", + "textContextual": "Voeg geen intervallen toe tussen alinea's van dezelfde stijl", + "textDelete": "Verwijderen", + "textDeleteComment": "Verwijder opmerking", + "textDeleted": "Verwijderd:", + "textDeleteReply": "Reactie verwijderen", + "textDisplayMode": "Weergavemodus", + "textDone": "Klaar", + "textDStrikeout": "Dubbel doorhalen", + "textEdit": "Bewerken", + "textEditComment": "Opmerking bewerken", + "textEditReply": "Reactie bewerken", + "textEditUser": "Gebruikers die het bestand bewerken:", + "textEquation": "Vergelijking", + "textExact": "precies", + "textFinal": "Definitief", + "textFirstLine": "Eerste regel", + "textFormatted": "Opgemaakt", + "textHighlight": "Markeringskleur", + "textImage": "Afbeelding", + "textIndentLeft": "Links inspringen", + "textIndentRight": "Rechts inspringen", + "textInserted": "Ingevoegd:", + "textItalic": "Cursief", + "textJustify": "Links en rechts uitlijnen", + "textKeepLines": "Houd de lijnen bij elkaar", + "textKeepNext": "Bij volgende alinea houden", + "textLeft": "Links uitlijnen", + "textLineSpacing": "Regelafstand:", + "textMarkup": "Markup", + "textMessageDeleteComment": "Wil je deze opmerking verwijderen?", + "textMessageDeleteReply": "Wil je deze reactie verwijderen?", + "textMultiple": "meerdere", + "textNoBreakBefore": "Geen pagina-einde vóór", + "textNoChanges": "Er zijn geen wijzigingen.", + "textNoComments": "Dit document bevat geen opmerkingen", + "textNoContextual": "Interval toevoegen tussen alinea's met dezelfde stijl", + "textNoKeepLines": "Houd de lijnen niet bij elkaar", + "textNoKeepNext": "Blijf niet bij de volgende", + "textNot": "Niet", + "textNoWidow": "Zwevende eindregels niet voorkomen", + "textNum": "Nummering wijzigen", + "textOriginal": "Origineel", + "textParaDeleted": "Alinea verwijderd", + "textParaFormatted": "Alinea opgemaakt", + "textParaInserted": "Alinea ingevoegd", + "textParaMoveFromDown": "Omlaag verplaatst:", + "textParaMoveFromUp": "Omhoog geplaatst:", + "textParaMoveTo": "Verplaast:", + "textPosition": "Positie", + "textReject": "Weigeren", + "textRejectAllChanges": "Alle wijzigingen weigeren", + "textReopen": "Heropenen", + "textResolve": "Oplossen", + "textReview": "Beoordeling", + "textReviewChange": "Bekijk de wijziging", + "textRight": "Rechts uitlijnen", + "textShape": "Vorm", + "textShd": "Achtergrondkleur", + "textSmallCaps": "Kleine hoofdletters", + "textSpacing": "Afstand", + "textSpacingAfter": "Afstand na", + "textSpacingBefore": "Afstand vóór", + "textStrikeout": "Doorhalen", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Tafelinstellingen gewijzigd", + "textTableRowsAdd": "Tabelrijen toegevoegd", + "textTableRowsDel": "Tabelrijen verwijderd", + "textTabs": "Tabs wijzigen", + "textTrackChanges": "Wijzigingen bijhouden", + "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", + "textUnderline": "Onderstrepen", + "textUsers": "Gebruikers", + "textWidow": "Zwevende regels voorkomen" + }, + "ThemeColorPalette": { + "textCustomColors": "Aangepaste kleuren", + "textStandartColors": "Standaardkleuren", + "textThemeColors": "Themakleuren" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Kopieer-, knip- en plakacties via het contextmenu worden alleen binnen het huidige bestand uitgevoerd.", + "menuAddComment": "Opmerking toevoegen", + "menuAddLink": "Koppeling toevoegen", + "menuCancel": "Annuleren", + "menuDelete": "Verwijderen", + "menuDeleteTable": "Tabel verwijderen", + "menuEdit": "Bewerken", + "menuMerge": "Samenvoegen", + "menuMore": "Meer", + "menuOpenLink": "Koppeling openen", + "menuReview": "Beoordeling", + "menuReviewChange": "Bekijk de wijziging", + "menuSplit": "Splitsen", + "menuViewComment": "Opmerking bekijken", + "textColumns": "Kolommen", + "textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", + "textDoNotShowAgain": "Niet meer laten zien.", + "textRows": "Rijen" + }, + "Edit": { + "notcriticalErrorTitle": "Waarschuwing", + "textActualSize": "Ware grootte", + "textAddCustomColor": "Aangepaste kleur toevoegen", + "textAdditional": "Extra", + "textAdditionalFormatting": "Aanvullende opmaak", + "textAddress": "Adres", + "textAdvanced": "Geavanceerd", + "textAdvancedSettings": "Geavanceerde instellingen", + "textAfter": "Na", + "textAlign": "Uitlijnen", + "textAllCaps": "Allemaal hoofdletters", + "textAllowOverlap": "Overlappingen toestaan", + "textAuto": "Automatisch", + "textAutomatic": "Automatisch", + "textBack": "Terug", + "textBackground": "Achtergrond", + "textBandedColumn": "Gestreepte kolom", + "textBandedRow": "Gestreepte rij", + "textBefore": "Voor", + "textBehind": "Achter", + "textBorder": "Rand", + "textBringToForeground": "Naar de voorgrond brengen", + "textBullets": "Opsommingstekens", + "textBulletsAndNumbers": "Opsommingstekens en nummers", + "textCellMargins": "Celmarges", + "textChart": "Grafiek", + "textClose": "Sluiten", + "textColor": "Kleur", + "textContinueFromPreviousSection": "Doorgaan vanuit volgende sectie", + "textCustomColor": "Aangepaste kleur", + "textDifferentFirstPage": "Afwijkende eerste pagina", + "textDifferentOddAndEvenPages": "Afwijkende even en oneven pagina's", + "textDisplay": "Weergeven", + "textDistanceFromText": "Afstand van tekst", + "textDoubleStrikethrough": "Dubbel doorhalen", + "textEditLink": "Koppeling bewerken", + "textEffects": "Effecten", + "textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", + "textFill": "Vullen", + "textFirstColumn": "Eerste kolom", + "textFirstLine": "Eerste regel", + "textFlow": "Stroom", + "textFontColor": "Kleur lettertype", + "textFontColors": "Lettertype kleuren", + "textFonts": "Lettertypen", + "textFooter": "Voettekst", + "textHeader": "Koptekst", + "textHeaderRow": "Koprij", + "textHighlightColor": "Markeringskleur", + "textHyperlink": "Hyperlink", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInFront": "Vooraan", + "textInline": "Inline", + "textKeepLinesTogether": "Houd de lijnen bij elkaar", + "textKeepWithNext": "Bij volgende alinea houden", + "textLastColumn": "Laatste kolom", + "textLetterSpacing": "Letterafstand", + "textLineSpacing": "Regelafstand", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkToPrevious": "Koppelen aan vorige", + "textMoveBackward": "Naar achter verplaatsen", + "textMoveForward": "Naar voren verplaatsen", + "textMoveWithText": "Met tekst verplaatsen", + "textNone": "Geen", + "textNoStyles": "Geen stijlen voor dit soort grafieken.", + "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textNumbers": "Nummers", + "textOpacity": "Ondoorzichtigheid", + "textOptions": "Opties", + "textOrphanControl": "Zwevende regels voorkomen", + "textPageBreakBefore": "Pagina-einde vóór", + "textPageNumbering": "Paginanummering", + "textParagraph": "Alinea", + "textParagraphStyles": "Alineastijlen", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPt": "pt", + "textRemoveChart": "Grafiek verwijderen", + "textRemoveImage": "Afbeelding verwijderen", + "textRemoveLink": "Koppeling verwijderen", + "textRemoveShape": "Vorm verwijderen", + "textRemoveTable": "Tabel verwijderen", + "textReorder": "Opnieuw ordenen", + "textRepeatAsHeaderRow": "Als koprij herhalen", + "textReplace": "Vervangen", + "textReplaceImage": "Afbeelding vervangen", + "textResizeToFitContent": "Grootte aanpassen aan inhoud", + "textScreenTip": "Schermtip", + "textSelectObjectToEdit": "Selecteer object om te bewerken", + "textSendToBackground": "Naar achtergrond sturen", + "textSettings": "Instellingen", + "textShape": "Vorm", + "textSize": "Grootte", + "textSmallCaps": "Kleine hoofdletters", + "textSpaceBetweenParagraphs": "Ruimte tussen alinea's", + "textSquare": "Kwadraat", + "textStartAt": "Beginnen bij", + "textStrikethrough": "Doorhalen", + "textStyle": "Stijl", + "textStyleOptions": "Stijlopties", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Tabel", + "textTableOptions": "Tabelopties", + "textText": "Tekst", + "textThrough": "Doorgaand", + "textTight": "Strak", + "textTopAndBottom": "Boven en onder", + "textTotalRow": "Totaalrij", + "textType": "Type", + "textWrap": "Wikkel" + }, + "Error": { + "convertationTimeoutText": "Time-out voor conversie overschreden.", + "criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.", + "criticalErrorTitle": "Fout", + "downloadErrorText": "Download mislukt.", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorBadImageUrl": "Afbeelding's URL is onjuist", + "errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met de beheerder.
    Wanneer u op OK klikt, wordt u gevraagd om het document te downloaden.", + "errorDatabaseConnection": "Externe fout.
    Database verbindingsfout. Neem contact op met support.", + "errorDataEncrypted": "Versleutelde aanpassingen zijn ontvangen, deze kunnen niet worden ontsleuteld.", + "errorDataRange": "Onjuist gegevensbereik.", + "errorDefaultMessage": "Foutcode: %1", + "errorEditingDownloadas": "Er is een fout opgetreden tijdens het bewerken van het document.
    Download het document om lokaal een reservekopie op te slaan.", + "errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.", + "errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet van uw server.
    Neem contact op met uw beheerder.", + "errorKeyEncrypt": "Onbekende sleutelbeschrijver", + "errorKeyExpire": "Sleutelbeschrijver vervallen", + "errorMailMergeLoadFile": "Laden mislukt", + "errorMailMergeSaveFile": "Samenvoegen mislukt.", + "errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.", + "errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.", + "errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", + "errorUserDrop": "Het bestand kan nu niet worden geopend.", + "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", + "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
    maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", + "notcriticalErrorTitle": "Waarschuwing", + "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", + "saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.", + "splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1", + "splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1", + "splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1", + "unknownErrorText": "Onbekende fout.", + "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", + "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + }, + "LongActions": { + "applyChangesTextText": "Gegevens worden geladen...", + "applyChangesTitleText": "Gegevens worden geladen", + "downloadMergeText": "Downloaden...", + "downloadMergeTitle": "Downloaden", + "downloadTextText": "Document wordt gedownload...", + "downloadTitleText": "Document wordt gedownload", + "loadFontsTextText": "Gegevens worden geladen...", + "loadFontsTitleText": "Gegevens worden geladen", + "loadFontTextText": "Gegevens worden geladen...", + "loadFontTitleText": "Gegevens worden geladen", + "loadImagesTextText": "Afbeeldingen worden geladen...", + "loadImagesTitleText": "Afbeeldingen worden geladen", + "loadImageTextText": "Afbeelding wordt geladen...", + "loadImageTitleText": "Afbeelding wordt geladen", + "loadingDocumentTextText": "Document wordt geladen...", + "loadingDocumentTitleText": "Document wordt geladen", + "mailMergeLoadFileText": "Gegevensbron wordt geladen...", + "mailMergeLoadFileTitle": "Gegevensbron wordt geladen", + "openTextText": "Document wordt geopend...", + "openTitleText": "Document wordt geopend", + "printTextText": "Document wordt afgedrukt...", + "printTitleText": "Document wordt afgedrukt", + "savePreparingText": "Klaarmaken om op te slaan", + "savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...", + "saveTextText": "Document wordt opgeslagen...", + "saveTitleText": "Document wordt opgeslagen", + "sendMergeText": "De resultaten van de samenvoeging worden verzonden...", + "sendMergeTitle": "De resultaten van de samenvoeging worden verzonden", + "textLoadingDocument": "Document wordt geladen", + "txtEditingMode": "Bewerkmodus instellen...", + "uploadImageTextText": "Afbeelding wordt geüpload...", + "uploadImageTitleText": "Afbeelding wordt geüpload", + "waitText": "Een moment geduld..." + }, + "Main": { + "criticalErrorTitle": "Fout", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw administrator.", + "errorOpensource": "Met de gratis Community versie kunt u documenten openen om ze alleen te bekijken. Voor toegang tot mobiele webeditors is een commerciële licentie vereist.", + "errorProcessSaveResult": "Opslaan mislukt.", + "errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "leavePageText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "notcriticalErrorTitle": "Waarschuwing", + "SDK": { + " -Section ": "-Sectie", + "above": "boven", + "below": "onder", + "Caption": "Onderschrift", + "Choose an item": "Kies een item", + "Click to load image": "Klik om afbeelding te laden", + "Current Document": "Huidig document", + "Diagram Title": "Grafiektitel", + "endnote text": "Eindnoot tekst", + "Enter a date": "Vul een datum in", + "Error! Bookmark not defined": "Fout! Bladwijzer is niet gedefinieerd.", + "Error! Main Document Only": "Fout! alleen hoofddocument", + "Error! No text of specified style in document": "Fout. Geen tekst van opgegeven stijl in document.", + "Error! Not a valid bookmark self-reference": "Fout! Geen geldige zelf referentie voor bladwijzers.", + "Even Page ": "Even pagina", + "First Page ": "Eerste pagina", + "Footer": "Voettekst", + "footnote text": "Voetnoot tekst", + "Header": "Koptekst", + "Heading 1": "Kop 1", + "Heading 2": "Kop 2", + "Heading 3": "Kop 3", + "Heading 4": "Kop 4", + "Heading 5": "Kop 5", + "Heading 6": "Kop 6", + "Heading 7": "Kop 7", + "Heading 8": "Kop 8", + "Heading 9": "Kop 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index te groot", + "Intense Quote": "Duidelijk citaat", + "Is Not In Table": "Niet in de tabel", + "List Paragraph": "Lijstalinea", + "Missing Argument": "Missende parameter", + "Missing Operator": "Ontbrekende operator", + "No Spacing": "Geen afstand", + "No table of contents entries found": "Er zijn geen koppen in het document. Pas een kopstijl toe op de tekst zodat deze in de inhoudsopgave wordt weergegeven.", + "No table of figures entries found": "Er konden geen tabel met cijfers gevonden worden.", + "None": "Geen", + "Normal": "Normaal", + "Number Too Large To Format": "Nummer is te groot om op te maken", + "Odd Page ": "Oneven pagina", + "Quote": "Citaat", + "Same as Previous": "Zelfde als vorige", + "Series": "Serie", + "Subtitle": "Subtitel", + "Syntax Error": "Syntax error", + "Table Index Cannot be Zero": "Tabelindex mag niet nul zijn", + "Table of Contents": "Inhoudsopgave", + "table of figures": "Tabel met figuren", + "The Formula Not In Table": "De formule niet in de tabel", + "Title": "Titel", + "TOC Heading": "TOC-Titel", + "Type equation here": "Type hier de vergelijking", + "Undefined Bookmark": "Ongedefinieerde bladwijzer", + "Unexpected End of Formula": "Onverwacht einde van de formule", + "X Axis": "X-as XAS", + "Y Axis": "Y-as", + "Your text here": "Hier tekst invoeren", + "Zero Divide": "Nul Delen" + }, + "textAnonymous": "Anoniem", + "textBuyNow": "Website bezoeken", + "textClose": "Sluiten", + "textContactUs": "Contact opnemen met de verkoopafdeling", + "textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een offerte.", + "textGuest": "Gast", + "textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", + "textNo": "Nee", + "textNoLicenseTitle": "Licentielimiet bereikt", + "textPaidFeature": "Betaalde functie", + "textRemember": "Bewaar mijn keuze", + "textYes": "Ja", + "titleLicenseExp": "Licentie vervallen", + "titleServerVersion": "Editor bijgewerkt", + "titleUpdateVersion": "Versie gewijzigd", + "warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie. ", + "warnLicenseExp": "Uw licentie is verlopen. Gelieve uw licentie bij te werken en de pagina te vernieuwen.", + "warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.", + "warnLicenseLimitedRenewed": "De licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.
    Neem contact op met uw administrator om volledige toegang te krijgen", + "warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.", + "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", + "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", + "warnProcessRightsChange": "Je hebt geen toestemming om dit bestand te bewerken." + }, + "Settings": { + "advDRMOptions": "Beveiligd bestand", + "advDRMPassword": "Wachtwoord", + "advTxtOptions": "Opties voor TXT-bestanden kiezen", + "closeButtonText": "Bestand sluiten", + "notcriticalErrorTitle": "Waarschuwing", + "textAbout": "Over", + "textApplication": "Applicatie", + "textApplicationSettings": "Applicatie instellingen", + "textAuthor": "Auteur", + "textBack": "Terug", + "textBottom": "Onder", + "textCancel": "Annuleren", + "textCaseSensitive": "Hoofdlettergevoelig", + "textCentimeter": "Centimeter", + "textCollaboration": "Samenwerking", + "textColorSchemes": "Kleurschema's", + "textComment": "Opmerking", + "textComments": "Opmerkingen", + "textCommentsDisplay": "Opmerkingen weergeven", + "textCreated": "Aangemaakt", + "textCustomSize": "Aangepaste grootte", + "textDisableAll": "Alles uitschakelen", + "textDisableAllMacrosWithNotification": "Alle macro's met notificaties uitschakelen", + "textDisableAllMacrosWithoutNotification": "Alle macro's met notificatie uitschakelen", + "textDocumentInfo": "Documentinformatie", + "textDocumentSettings": "Documentinstellingen", + "textDocumentTitle": "Documenttitel", + "textDone": "Klaar", + "textDownload": "Downloaden", + "textDownloadAs": "Downloaden als", + "textDownloadRtf": "Als u in dit formaat blijft opslaan, kan een deel van de opmaak verloren gaan. Weet u zeker dat u wilt doorgaan?", + "textDownloadTxt": "Als u in dit formaat opslaat gaat alle opmaak van de tekst verloren. Weet u zeker dat u wilt doorgaan?", + "textEnableAll": "Alles inschakelen", + "textEnableAllMacrosWithoutNotification": "Alle macro's inschakelen zonder notificatie", + "textEncoding": "Codering", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFindAndReplaceAll": "Zoek en vervang alles", + "textFormat": "Opmaak", + "textHelp": "Help", + "textHiddenTableBorders": "Verborgen tabelranden", + "textHighlightResults": "Resultaten markeren", + "textInch": "Inch", + "textLandscape": "Liggend", + "textLastModified": "Laatst aangepast", + "textLastModifiedBy": "Laatst aangepast door", + "textLeft": "Links", + "textLoading": "Bezig met laden...", + "textLocation": "Locatie", + "textMacrosSettings": "Macro instellingen", + "textMargins": "Marges", + "textMarginsH": "Boven- en ondermarges zijn te hoog voor de opgegeven paginahoogte", + "textMarginsW": "Linker- en rechtermarge zijn te breed voor opgegeven paginabreedte", + "textNoCharacters": "Niet-afdrukbare tekens", + "textNoTextFound": "Tekst niet gevonden", + "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", + "textOrientation": "Oriëntatie ", + "textOwner": "Eigenaar", + "textPoint": "Punt", + "textPortrait": "Staand", + "textPrint": "Afdrukken", + "textReaderMode": "Leesmodus", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textResolvedComments": "Opgeloste opmerkingen", + "textRight": "Rechts", + "textSearch": "Zoeken", + "textSettings": "Instellingen", + "textShowNotification": "Notificatie weergeven", + "textSpellcheck": "Spellingscontrole", + "textStatistic": "Statistiek", + "textSubject": "Onderwerp", + "textTitle": "Titel", + "textTop": "Boven", + "textUnitOfMeasurement": "Maateenheid", + "textUploaded": "Geüpload", + "txtIncorrectPwd": "Wachtwoord is onjuist", + "txtProtected": "Zodra u het wachtwoord invoert en het bestand opent, zal het huidige wachtwoord worden gereset", + "txtScheme1": "Kantoor", + "txtScheme10": "Mediaan", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Overvloedig", + "txtScheme14": "Erker", + "txtScheme15": "Oorsprong", + "txtScheme16": "Papier", + "txtScheme17": "Zonnewende", + "txtScheme18": "Technisch", + "txtScheme19": "Tocht", + "txtScheme2": "Grijstinten", + "txtScheme22": "Nieuw kantoor", + "txtScheme3": "Top", + "txtScheme4": "Aspect", + "txtScheme5": "Civiel", + "txtScheme6": "Concours", + "txtScheme7": "Vermogen", + "txtScheme8": "Stroom", + "txtScheme9": "Gieterij" + }, + "Toolbar": { + "dlgLeaveMsgText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "dlgLeaveTitleText": "U verlaat de toepassing", + "leaveButtonText": "Pagina verlaten", + "stayButtonText": "Op deze pagina blijven" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 55eed5a7f2..3786226763 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -1,5 +1,122 @@ { + "About": { + "textAbout": "Sobre", + "textAddress": "Endereço", + "textBack": "Voltar" + }, + "Add": { + "textAddLink": "Adicionar Link", + "textAddress": "Endereço", + "textBack": "Voltar", + "textBelowText": "Abaixo do texto", + "textBottomOfPage": "Fim da página", + "textBreak": "Pausa", + "textCancel": "Cancelar", + "textColumnBreak": "Quebra de Coluna", + "textColumns": "Colunas", + "textComment": "Comente" + }, + "Common": { + "Collaboration": { + "textAccept": "Aceitar", + "textAcceptAllChanges": "Aceitar todas as alterações", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textAllChangesAcceptedPreview": "Todas as alterações aceitas (Visualizar)", + "textAllChangesEditing": "Todas as alterações (Edição)", + "textAllChangesRejectedPreview": "Todas as alterações rejeitadas (Visualizar)", + "textAtLeast": "Pelo menos", + "textAuto": "Automático", + "textBack": "Voltar", + "textBaseline": "Baseline", + "textBold": "Negrito", + "textCancel": "Cancelar", + "textCaps": "Todas maiúsculas", + "textCenter": "Alinhar ao centro", + "textChart": "Gráfico", + "textCollaboration": "Colaboração", + "textComments": "Comentários", + "textJustify": "Alinhamento justificado", + "textLeft": "Alinhar à esquerda", + "textNoContextual": "Adicionar intervalo entre parágrafos do mesmo estilo", + "textNum": "Alterar numeração", + "textRight": "Alinhar à direita", + "textShd": "Cor do plano de fundo", + "textTabs": "Alterar guias" + } + }, + "ContextMenu": { + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar Link", + "menuCancel": "Cancelar", + "textColumns": "Colunas" + }, + "Edit": { + "textActualSize": "Tamanho atual", + "textAddCustomColor": "Adicionar Cor Personalizada", + "textAdditional": "Adicional", + "textAdditionalFormatting": "Formatação adicional", + "textAddress": "Endereço", + "textAdvanced": "Avançado", + "textAdvancedSettings": "Configurações avançadas", + "textAfter": "Depois", + "textAlign": "Alinhar", + "textAllCaps": "Todas maiúsculas", + "textAllowOverlap": "Permitir sobreposição", + "textAuto": "Automático", + "textAutomatic": "Automático", + "textBack": "Voltar", + "textBackground": "Plano de fundo", + "textBandedColumn": "Coluna em faixa", + "textBandedRow": "Linha de Faixa", + "textBefore": "Antes", + "textBehind": "Atrás", + "textBorder": "Borda", + "textBringToForeground": "Trazer para primeiro plano", + "textBullets": "Marcadores", + "textBulletsAndNumbers": "Marcadores e Numerações", + "textCellMargins": "Margens da célula", + "textChart": "Gráfico", + "textClose": "Fechar", + "textColor": "Cor" + }, + "Error": { + "errorConnectToServer": "Não é possível salvar este documento. Verifique suas configurações de conexão ou entre em contato com o administrador.
    Ao clicar em OK, você será solicitado a baixar o documento.", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Baixe o documento para salvar a cópia de backup do arquivo localmente.", + "openErrorText": "Ocorreu um erro ao abrir o arquivo", + "saveErrorText": "Ocorreu um erro ao salvar o arquivo" + }, + "Main": { + "SDK": { + " -Section ": "-Seção", + "above": "Acima", + "below": "Abaixo", + "Caption": "Legenda", + "Choose an item": "Escolha um item", + "Diagram Title": "Título do Gráfico" + }, + "textAnonymous": "Anônimo", + "textClose": "Fechar" + }, "Settings": { - "textAbout": "Sobre" + "closeButtonText": "Fechar Arquivo", + "textAbout": "Sobre", + "textApplication": "Aplicativo", + "textApplicationSettings": "Configurações de Aplicativo", + "textAuthor": "Autor", + "textBack": "Voltar", + "textBottom": "Inferior", + "textCancel": "Cancelar", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comente", + "textComments": "Comentários", + "textCommentsDisplay": "Tela de comentários", + "textCreated": "Criado", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme6": "Concurso" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index ba6304e356..57e8158554 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -1,607 +1,575 @@ { - "Common.Controllers.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Controllers.Collaboration.textAtLeast": "cel puțin", - "Common.Controllers.Collaboration.textAuto": "auto", - "Common.Controllers.Collaboration.textBaseline": "Referință", - "Common.Controllers.Collaboration.textBold": "Aldin", - "Common.Controllers.Collaboration.textBreakBefore": "Sfârsit pagină inainte", - "Common.Controllers.Collaboration.textCancel": "Revocare", - "Common.Controllers.Collaboration.textCaps": "Cu majuscule", - "Common.Controllers.Collaboration.textCenter": "Aliniere la centru", - "Common.Controllers.Collaboration.textChart": "Diagramă", - "Common.Controllers.Collaboration.textColor": "Culoare font", - "Common.Controllers.Collaboration.textContextual": "Nu se adaugă spațiu între paragrafele cu același stil", - "Common.Controllers.Collaboration.textDelete": "Ștergere", - "Common.Controllers.Collaboration.textDeleteComment": "Ștergere comentariu", - "Common.Controllers.Collaboration.textDeleted": "Eliminat:", - "Common.Controllers.Collaboration.textDeleteReply": "Ștergere răspuns", - "Common.Controllers.Collaboration.textDone": "Gata", - "Common.Controllers.Collaboration.textDStrikeout": "Tăiere cu două linii", - "Common.Controllers.Collaboration.textEdit": "Editare", - "Common.Controllers.Collaboration.textEditUser": "Fișierul este editat de către:", - "Common.Controllers.Collaboration.textEquation": "Ecuație", - "Common.Controllers.Collaboration.textExact": "exact", - "Common.Controllers.Collaboration.textFirstLine": "Primul rând", - "Common.Controllers.Collaboration.textFormatted": "Formatat", - "Common.Controllers.Collaboration.textHighlight": "Culoare de evidențiere", - "Common.Controllers.Collaboration.textImage": "Imagine", - "Common.Controllers.Collaboration.textIndentLeft": "Indentare stânga", - "Common.Controllers.Collaboration.textIndentRight": "Indentare dreapta", - "Common.Controllers.Collaboration.textInserted": "Inserat:", - "Common.Controllers.Collaboration.textItalic": "Cursiv", - "Common.Controllers.Collaboration.textJustify": "Alinierea stânga-dreapta", - "Common.Controllers.Collaboration.textKeepLines": "Păstrare linii împreună", - "Common.Controllers.Collaboration.textKeepNext": "Păstrare cu următorul", - "Common.Controllers.Collaboration.textLeft": "Aliniere la stânga", - "Common.Controllers.Collaboration.textLineSpacing": "Interlinie:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", - "Common.Controllers.Collaboration.textMultiple": "multiplu", - "Common.Controllers.Collaboration.textNoBreakBefore": "Niciun sfârșit de pagină înainte", - "Common.Controllers.Collaboration.textNoChanges": "Modificările nu s-au produs.", - "Common.Controllers.Collaboration.textNoContextual": "Se adaugă spațiu între paragrafele cu același stil ", - "Common.Controllers.Collaboration.textNoKeepLines": "Nu se păstrează liniile împreună", - "Common.Controllers.Collaboration.textNoKeepNext": "Nu se păstrează cu următorul", - "Common.Controllers.Collaboration.textNot": "Nu", - "Common.Controllers.Collaboration.textNoWidow": "Fără control văduvă", - "Common.Controllers.Collaboration.textNum": "Modificarea numerotării", - "Common.Controllers.Collaboration.textParaDeleted": "Paragraful a fost eliminat", - "Common.Controllers.Collaboration.textParaFormatted": "Paragraful a fost formatat ", - "Common.Controllers.Collaboration.textParaInserted": "Paragraful a fost inserat", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Deplasat în jos:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Deplasat în sus:", - "Common.Controllers.Collaboration.textParaMoveTo": "S-a deplasat:", - "Common.Controllers.Collaboration.textPosition": "Poziție", - "Common.Controllers.Collaboration.textReopen": "Redeschidere", - "Common.Controllers.Collaboration.textResolve": "Rezolvare", - "Common.Controllers.Collaboration.textRight": "Aliniere la dreapta", - "Common.Controllers.Collaboration.textShape": "Forma", - "Common.Controllers.Collaboration.textShd": "Culoare de fundal", - "Common.Controllers.Collaboration.textSmallCaps": "Majuscule reduse", - "Common.Controllers.Collaboration.textSpacing": "Spațiere", - "Common.Controllers.Collaboration.textSpacingAfter": "Spațiere după", - "Common.Controllers.Collaboration.textSpacingBefore": "Spațiere înainte", - "Common.Controllers.Collaboration.textStrikeout": "Tăiere cu o linie", - "Common.Controllers.Collaboration.textSubScript": "Indice", - "Common.Controllers.Collaboration.textSuperScript": "Exponent", - "Common.Controllers.Collaboration.textTableChanged": "Setări tabel s-au mofificat", - "Common.Controllers.Collaboration.textTableRowsAdd": "Rânduri de tabel au fost adăugate", - "Common.Controllers.Collaboration.textTableRowsDel": "Rânduri de tabel au fost șterse", - "Common.Controllers.Collaboration.textTabs": "Modificare file", - "Common.Controllers.Collaboration.textUnderline": "Subliniat", - "Common.Controllers.Collaboration.textWidow": "Control văduvă", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Culori particularizate", - "Common.UI.ThemeColorPalette.textStandartColors": "Culori standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Culori temă", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Acceptare", - "Common.Views.Collaboration.textAcceptAllChanges": "Acceptați toate modificările", - "Common.Views.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Toate modificările sunt acceptate (Previzualizare)", - "Common.Views.Collaboration.textAllChangesEditing": "Toate modificările (Editare)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Toate modificările sunt respinse (Previzualizare)", - "Common.Views.Collaboration.textBack": "Înapoi", - "Common.Views.Collaboration.textCancel": "Revocare", - "Common.Views.Collaboration.textChange": "Revizuire modificări", - "Common.Views.Collaboration.textCollaboration": "Colaborare", - "Common.Views.Collaboration.textDisplayMode": "Modul de afișare", - "Common.Views.Collaboration.textDone": "Gata", - "Common.Views.Collaboration.textEditReply": "Editare răspuns", - "Common.Views.Collaboration.textEditUsers": "Utilizatori", - "Common.Views.Collaboration.textEditСomment": "Editare comentariu", - "Common.Views.Collaboration.textFinal": "Final", - "Common.Views.Collaboration.textMarkup": "Marcaj", - "Common.Views.Collaboration.textNoComments": "Documentul nu cuprinde comentarii", - "Common.Views.Collaboration.textOriginal": "Inițial", - "Common.Views.Collaboration.textReject": "Respingere", - "Common.Views.Collaboration.textRejectAllChanges": "Se resping toate modificările", - "Common.Views.Collaboration.textReview": "Urmărirea modificărilor", - "Common.Views.Collaboration.textReviewing": "Revizuire", - "Common.Views.Collaboration.textСomments": "Comentarii", - "DE.Controllers.AddContainer.textImage": "Imagine", - "DE.Controllers.AddContainer.textOther": "Altele", - "DE.Controllers.AddContainer.textShape": "Forma", - "DE.Controllers.AddContainer.textTable": "Tabel", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.AddImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "DE.Controllers.AddImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.AddOther.textBelowText": "Dedesubt textul", - "DE.Controllers.AddOther.textBottomOfPage": "Josul paginii", - "DE.Controllers.AddOther.textCancel": "Revocare", - "DE.Controllers.AddOther.textContinue": "Continuare", - "DE.Controllers.AddOther.textDelete": "Ștergere", - "DE.Controllers.AddOther.textDeleteDraft": "Sunteți sigur că doriți să stergeți schiță?", - "DE.Controllers.AddOther.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Revocare", - "DE.Controllers.AddTable.textColumns": "Coloane", - "DE.Controllers.AddTable.textRows": "Rânduri", - "DE.Controllers.AddTable.textTableSize": "Dimensiune tabel", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", - "DE.Controllers.DocumentHolder.menuAddComment": "Adaugă comentariu", - "DE.Controllers.DocumentHolder.menuAddLink": "Adăugare link", - "DE.Controllers.DocumentHolder.menuCopy": "Copiere", - "DE.Controllers.DocumentHolder.menuCut": "Decupare", - "DE.Controllers.DocumentHolder.menuDelete": "Ștergere", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Ștergere tabel", - "DE.Controllers.DocumentHolder.menuEdit": "Editare", - "DE.Controllers.DocumentHolder.menuMerge": "Îmbinare celule", - "DE.Controllers.DocumentHolder.menuMore": "Mai multe", - "DE.Controllers.DocumentHolder.menuOpenLink": "Deschidere link", - "DE.Controllers.DocumentHolder.menuPaste": "Lipire", - "DE.Controllers.DocumentHolder.menuReview": "Revizuire", - "DE.Controllers.DocumentHolder.menuReviewChange": "Revizuire modificări", - "DE.Controllers.DocumentHolder.menuSplit": "Scindarea celulei", - "DE.Controllers.DocumentHolder.menuViewComment": "Vizualizarea comentariilor", - "DE.Controllers.DocumentHolder.sheetCancel": "Revocare", - "DE.Controllers.DocumentHolder.textCancel": "Revocare", - "DE.Controllers.DocumentHolder.textColumns": "Coloane", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Nu se mai afișează ", - "DE.Controllers.DocumentHolder.textGuest": "Invitat", - "DE.Controllers.DocumentHolder.textRows": "Rânduri", - "DE.Controllers.EditContainer.textChart": "Diagramă", - "DE.Controllers.EditContainer.textFooter": "Subsol", - "DE.Controllers.EditContainer.textHeader": "Antet", - "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "DE.Controllers.EditContainer.textImage": "Imagine", - "DE.Controllers.EditContainer.textParagraph": "Paragraf", - "DE.Controllers.EditContainer.textSettings": "Setări", - "DE.Controllers.EditContainer.textShape": "Forma", - "DE.Controllers.EditContainer.textTable": "Tabel", - "DE.Controllers.EditContainer.textText": "Text", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.EditImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "DE.Controllers.EditImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Fonturi", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Introduceți parola:", - "DE.Controllers.Main.advDRMOptions": "Fișierul protejat", - "DE.Controllers.Main.advDRMPassword": "Parola", - "DE.Controllers.Main.advTxtOptions": "Selectează opțiunea TXT", - "DE.Controllers.Main.applyChangesTextText": "Încărcarea datelor...", - "DE.Controllers.Main.applyChangesTitleText": "Încărcarea datelor", - "DE.Controllers.Main.closeButtonText": "Închide fișierul", - "DE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", - "DE.Controllers.Main.criticalErrorExtText": "Faceți click pe butonul'OK' pentru a vă întoarce la lista documente. ", - "DE.Controllers.Main.criticalErrorTitle": "Eroare", - "DE.Controllers.Main.downloadErrorText": "Descărcare eșuată.", - "DE.Controllers.Main.downloadMergeText": "Progres descărcare...", - "DE.Controllers.Main.downloadMergeTitle": "Progres descărcare", - "DE.Controllers.Main.downloadTextText": "Descărcarea documentului...", - "DE.Controllers.Main.downloadTitleText": "Descărcarea fișierului", - "DE.Controllers.Main.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", - "DE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Imposibil de editat mai departe.", - "DE.Controllers.Main.errorConnectToServer": "Salvarea documentului nu poate fi finalizată. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", - "DE.Controllers.Main.errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", - "DE.Controllers.Main.errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", - "DE.Controllers.Main.errorDataRange": "Zonă de date incorectă.", - "DE.Controllers.Main.errorDefaultMessage": "Codul de eroare: %1", - "DE.Controllers.Main.errorEditingDownloadas": "S-a produs o eroare în timpul procesării documentului.
    Folosiți funcția de Descărcare pentru a salva copia de rezervă a fișierului pe PC.", - "DE.Controllers.Main.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", - "DE.Controllers.Main.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", - "DE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", - "DE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", - "DE.Controllers.Main.errorMailMergeLoadFile": "Încărcarea fișierului eșuată. Selectați un alt fișier.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Îmbinarea eșuată.", - "DE.Controllers.Main.errorOpensource": "Versiunea gratuită a ediției Community include numai vizualizarea fișierilor. Licența comercială permite utilizarea editoarelor pentru dispozitivele mobile.", - "DE.Controllers.Main.errorProcessSaveResult": "Salvarea a eșuat.", - "DE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", - "DE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", - "DE.Controllers.Main.errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", - "DE.Controllers.Main.errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", - "DE.Controllers.Main.errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", - "DE.Controllers.Main.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", - "DE.Controllers.Main.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", - "DE.Controllers.Main.errorUsersExceed": "Limita de utilizatori a fost atinsă", - "DE.Controllers.Main.errorViewerDisconnect": "Conexiunea a fost pierdută. Puteți vizualiza fișierul,
    dar nu și să-l descărcați până când conexiunea se restabilește și această pagină se reîmprospătează.", - "DE.Controllers.Main.leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați salvarea automată. Faceți clic pe Părăsește această pagina ca să renunțați la toate modificările nesalvate.", - "DE.Controllers.Main.loadFontsTextText": "Încărcarea datelor...", - "DE.Controllers.Main.loadFontsTitleText": "Încărcarea datelor", - "DE.Controllers.Main.loadFontTextText": "Încărcarea datelor...", - "DE.Controllers.Main.loadFontTitleText": "Încărcarea datelor", - "DE.Controllers.Main.loadImagesTextText": "Încărcarea imaginilor...", - "DE.Controllers.Main.loadImagesTitleText": "Încărcare imagini", - "DE.Controllers.Main.loadImageTextText": "Încărcarea imaginii...", - "DE.Controllers.Main.loadImageTitleText": "Încărcare imagine", - "DE.Controllers.Main.loadingDocumentTextText": "Încărcarea documentului...", - "DE.Controllers.Main.loadingDocumentTitleText": "Încărcare document", - "DE.Controllers.Main.mailMergeLoadFileText": "Încărcarea sursei de date...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Încărcare sursa de date", - "DE.Controllers.Main.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.Main.openErrorText": "Eroare la deschiderea fișierului.", - "DE.Controllers.Main.openTextText": "Deschiderea fișierului...", - "DE.Controllers.Main.openTitleText": "Deschiderea fișierului ", - "DE.Controllers.Main.printTextText": "Imprimarea documentului...", - "DE.Controllers.Main.printTitleText": "Imprimarea documentului", - "DE.Controllers.Main.saveErrorText": "S-a produs o eroare în timpul încercării de salvare a fișierului.", - "DE.Controllers.Main.savePreparingText": "Pregătire pentru salvare", - "DE.Controllers.Main.savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", - "DE.Controllers.Main.saveTextText": "Salvarea documentului...", - "DE.Controllers.Main.saveTitleText": "Salvare document", - "DE.Controllers.Main.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", - "DE.Controllers.Main.sendMergeText": "Trimitere îmbinare a corespondenței...", - "DE.Controllers.Main.sendMergeTitle": "Trimitere îmbinare a corespondenței ", - "DE.Controllers.Main.splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Numărul maxim de coloane este de %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", - "DE.Controllers.Main.textAnonymous": "Anonim", - "DE.Controllers.Main.textBack": "Înapoi", - "DE.Controllers.Main.textBuyNow": "Vizitarea site-ul Web", - "DE.Controllers.Main.textCancel": "Revocare", - "DE.Controllers.Main.textClose": "Închidere", - "DE.Controllers.Main.textContactUs": "Contactați Departamentul de Vânzări", - "DE.Controllers.Main.textCustomLoader": "Vă rugăm să rețineți că conform termenilor de licență nu aveți dreptul să modificați programul de încărcare.
    Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", - "DE.Controllers.Main.textDone": "Gata", - "DE.Controllers.Main.textGuest": "Invitat", - "DE.Controllers.Main.textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", - "DE.Controllers.Main.textLoadingDocument": "Încărcare document", - "DE.Controllers.Main.textNo": "Nu", - "DE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Funcția contra plată", - "DE.Controllers.Main.textPassword": "Parola", - "DE.Controllers.Main.textPreloader": "Se incarca...", - "DE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", - "DE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", - "DE.Controllers.Main.textUsername": "Nume de utilizator", - "DE.Controllers.Main.textYes": "Da", - "DE.Controllers.Main.titleLicenseExp": "Licența a expirat", - "DE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", - "DE.Controllers.Main.titleUpdateVersion": "Versiunea s-a modificat", - "DE.Controllers.Main.txtAbove": "deasupra", - "DE.Controllers.Main.txtArt": "Textul dvs. aici", - "DE.Controllers.Main.txtBelow": "dedesubt", - "DE.Controllers.Main.txtCurrentDocument": "Documentul curent", - "DE.Controllers.Main.txtDiagramTitle": "Titlu diagramă", - "DE.Controllers.Main.txtEditingMode": "Setare modul de editare...", - "DE.Controllers.Main.txtEvenPage": "Pagină pară", - "DE.Controllers.Main.txtFirstPage": "Prima pagina", - "DE.Controllers.Main.txtFooter": "Subsol", - "DE.Controllers.Main.txtHeader": "Antet", - "DE.Controllers.Main.txtOddPage": "Pagină impară", - "DE.Controllers.Main.txtOnPage": "la pagină", - "DE.Controllers.Main.txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", - "DE.Controllers.Main.txtSameAsPrev": "La fel ca cel anteror", - "DE.Controllers.Main.txtSection": "-Secțiune", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_footnote_text": "Textul notei de subsol", - "DE.Controllers.Main.txtStyle_Heading_1": "Titlu 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Titlu 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Titlu 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Titlu 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Titlu 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Titlu 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Titlu 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Titlu 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Titlu 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Citat intens", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Listă paragraf", - "DE.Controllers.Main.txtStyle_No_Spacing": "Fără spațiere", - "DE.Controllers.Main.txtStyle_Normal": "Normal", - "DE.Controllers.Main.txtStyle_Quote": "Citat", - "DE.Controllers.Main.txtStyle_Subtitle": "Subtitrare", - "DE.Controllers.Main.txtStyle_Title": "Titlu", - "DE.Controllers.Main.txtXAxis": "Axa X", - "DE.Controllers.Main.txtYAxis": "Axa Y", - "DE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", - "DE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "DE.Controllers.Main.uploadImageSizeMessage": "Dimensiunea imaginii depășește limita permisă.", - "DE.Controllers.Main.uploadImageTextText": "Încărcarea imaginii...", - "DE.Controllers.Main.uploadImageTitleText": "Încărcarea imaginii", - "DE.Controllers.Main.waitText": "Vă rugăm să așteptați...", - "DE.Controllers.Main.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Pentru detalii, contactați administratorul dvs.", - "DE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.
    Licența urmează să fie reînnoită iar pagina reîmprospătată.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
    Nu aveți acces la funcții de editare a documentului.
    Contactați administratorul dvs. de rețeea.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
    Funcțiile de editare sunt cu acces limitat.
    Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", - "DE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", - "DE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", - "DE.Controllers.Search.textNoTextFound": "Textul nu a fost găsit", - "DE.Controllers.Search.textReplaceAll": "Înlocuire peste tot", - "DE.Controllers.Settings.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.Settings.textCustomSize": "Dimensiune particularizată", - "DE.Controllers.Settings.txtLoading": "Se incarca...", - "DE.Controllers.Settings.unknownText": "Necunoscut", - "DE.Controllers.Settings.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
    Sunteți sigur că doriți să continuați?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă.
    Sigur doriți să continuați?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați salvarea automată. Faceți clic pe Părăsește această pagina ca să renunțați la toate modificările nesalvate.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", - "DE.Controllers.Toolbar.leaveButtonText": "Părăsește această pagina", - "DE.Controllers.Toolbar.stayButtonText": "Rămâi în pagină", - "DE.Views.AddImage.textAddress": "Adresă", - "DE.Views.AddImage.textBack": "Înapoi", - "DE.Views.AddImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "DE.Views.AddImage.textFromURL": "Imaginea prin URL", - "DE.Views.AddImage.textImageURL": "URL-ul imaginii", - "DE.Views.AddImage.textInsertImage": "Inserare imagine", - "DE.Views.AddImage.textLinkSettings": "Configurarea link", - "DE.Views.AddOther.textAddComment": "Adaugă comentariu", - "DE.Views.AddOther.textAddLink": "Adăugare link", - "DE.Views.AddOther.textBack": "Înapoi", - "DE.Views.AddOther.textBreak": "Sfârșit", - "DE.Views.AddOther.textCenterBottom": "La centru jos", - "DE.Views.AddOther.textCenterTop": "La centru sus", - "DE.Views.AddOther.textColumnBreak": "Întreruperea de coloană", - "DE.Views.AddOther.textComment": "Comentariu", - "DE.Views.AddOther.textContPage": "Continuu", - "DE.Views.AddOther.textCurrentPos": "Poziția curentă", - "DE.Views.AddOther.textDisplay": "Afișare", - "DE.Views.AddOther.textDone": "Gata", - "DE.Views.AddOther.textEvenPage": "Pagină pară", - "DE.Views.AddOther.textFootnote": "Notă de subsol", - "DE.Views.AddOther.textFormat": "Format", - "DE.Views.AddOther.textInsert": "Inserare", - "DE.Views.AddOther.textInsertFootnote": "Inserarea notei de subsol", - "DE.Views.AddOther.textLeftBottom": "Stânga jos", - "DE.Views.AddOther.textLeftTop": "Stânga sus", - "DE.Views.AddOther.textLink": "Link", - "DE.Views.AddOther.textLocation": "Locația", - "DE.Views.AddOther.textNextPage": "Pagina următoare", - "DE.Views.AddOther.textOddPage": "Pagină impară", - "DE.Views.AddOther.textPageBreak": "Sfârșit pagină", - "DE.Views.AddOther.textPageNumber": "Număr de pagină", - "DE.Views.AddOther.textPosition": "Poziție", - "DE.Views.AddOther.textRightBottom": "Dreapta jos", - "DE.Views.AddOther.textRightTop": "Dreapta sus", - "DE.Views.AddOther.textSectionBreak": "Sfârșit de secțiune", - "DE.Views.AddOther.textStartFrom": "Pornire de la", - "DE.Views.AddOther.textTip": "Sfaturi ecran", - "DE.Views.EditChart.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditChart.textAlign": "Aliniere", - "DE.Views.EditChart.textBack": "Înapoi", - "DE.Views.EditChart.textBackward": "Mutare în ultimul plan", - "DE.Views.EditChart.textBehind": "În urmă", - "DE.Views.EditChart.textBorder": "Bordura", - "DE.Views.EditChart.textColor": "Culoare", - "DE.Views.EditChart.textCustomColor": "Culoare particularizată", - "DE.Views.EditChart.textDistanceText": "Distanță de la text", - "DE.Views.EditChart.textFill": "Umplere", - "DE.Views.EditChart.textForward": "Deplasare înainte", - "DE.Views.EditChart.textInFront": "În prim-plan", - "DE.Views.EditChart.textInline": "În linie", - "DE.Views.EditChart.textMoveText": "Deplasare odată cu textul", - "DE.Views.EditChart.textOverlap": "Se permite suprapunerea", - "DE.Views.EditChart.textRemoveChart": "Ștergere diagrama", - "DE.Views.EditChart.textReorder": "Reordonare", - "DE.Views.EditChart.textSize": "Dimensiune", - "DE.Views.EditChart.textSquare": "Pătrat", - "DE.Views.EditChart.textStyle": "Stil", - "DE.Views.EditChart.textThrough": "Printre", - "DE.Views.EditChart.textTight": "Strâns", - "DE.Views.EditChart.textToBackground": "Trimitere în plan secundar", - "DE.Views.EditChart.textToForeground": "Aducere în prim plan", - "DE.Views.EditChart.textTopBottom": "Sus și jos", - "DE.Views.EditChart.textType": "Tip", - "DE.Views.EditChart.textWrap": "Încadrare", - "DE.Views.EditHeader.textDiffFirst": "Prima pagina diferită", - "DE.Views.EditHeader.textDiffOdd": "Pagini pare și impare diferite", - "DE.Views.EditHeader.textFrom": "Pornire de la", - "DE.Views.EditHeader.textPageNumbering": "Numerotare pagini", - "DE.Views.EditHeader.textPrev": "Continuare din secțiunea anterioară", - "DE.Views.EditHeader.textSameAs": "Legătură la anteriorul", - "DE.Views.EditHyperlink.textDisplay": "Afișare", - "DE.Views.EditHyperlink.textEdit": "Editare link", - "DE.Views.EditHyperlink.textLink": "Link", - "DE.Views.EditHyperlink.textRemove": "Ștergere link", - "DE.Views.EditHyperlink.textTip": "Sfaturi ecran", - "DE.Views.EditImage.textAddress": "Adresă", - "DE.Views.EditImage.textAlign": "Aliniere", - "DE.Views.EditImage.textBack": "Înapoi", - "DE.Views.EditImage.textBackward": "Mutare în ultimul plan", - "DE.Views.EditImage.textBehind": "În urmă", - "DE.Views.EditImage.textDefault": "Dimensiunea reală", - "DE.Views.EditImage.textDistanceText": "Distanță de la text", - "DE.Views.EditImage.textForward": "Deplasare înainte", - "DE.Views.EditImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "DE.Views.EditImage.textFromURL": "Imaginea prin URL", - "DE.Views.EditImage.textImageURL": "URL-ul imaginii", - "DE.Views.EditImage.textInFront": "În prim-plan", - "DE.Views.EditImage.textInline": "În linie", - "DE.Views.EditImage.textLinkSettings": "Configurarea link", - "DE.Views.EditImage.textMoveText": "Deplasare odată cu textul", - "DE.Views.EditImage.textOverlap": "Se permite suprapunerea", - "DE.Views.EditImage.textRemove": "Ștergere imagine", - "DE.Views.EditImage.textReorder": "Reordonare", - "DE.Views.EditImage.textReplace": "Înlocuire", - "DE.Views.EditImage.textReplaceImg": "Înlocuire imagine", - "DE.Views.EditImage.textSquare": "Pătrat", - "DE.Views.EditImage.textThrough": "Printre", - "DE.Views.EditImage.textTight": "Strâns", - "DE.Views.EditImage.textToBackground": "Trimitere în plan secundar", - "DE.Views.EditImage.textToForeground": "Aducere în prim plan", - "DE.Views.EditImage.textTopBottom": "Sus și jos", - "DE.Views.EditImage.textWrap": "Încadrare", - "DE.Views.EditParagraph.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditParagraph.textAdvanced": "Avansat", - "DE.Views.EditParagraph.textAdvSettings": "Setări avansate", - "DE.Views.EditParagraph.textAfter": "După", - "DE.Views.EditParagraph.textAuto": "Auto", - "DE.Views.EditParagraph.textBack": "Înapoi", - "DE.Views.EditParagraph.textBackground": "Fundal", - "DE.Views.EditParagraph.textBefore": "Înainte", - "DE.Views.EditParagraph.textCustomColor": "Culoare particularizată", - "DE.Views.EditParagraph.textFirstLine": "Primul rând", - "DE.Views.EditParagraph.textFromText": "Distanță de la text", - "DE.Views.EditParagraph.textKeepLines": "Păstrare linii împreună", - "DE.Views.EditParagraph.textKeepNext": "Păstrare cu următorul", - "DE.Views.EditParagraph.textOrphan": "Control orfan", - "DE.Views.EditParagraph.textPageBreak": "Sfârsit pagină inainte", - "DE.Views.EditParagraph.textPrgStyles": "Stiluri paragraf", - "DE.Views.EditParagraph.textSpaceBetween": "Spațiere între paragrafe", - "DE.Views.EditShape.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditShape.textAlign": "Aliniere", - "DE.Views.EditShape.textBack": "Înapoi", - "DE.Views.EditShape.textBackward": "Mutare în ultimul plan", - "DE.Views.EditShape.textBehind": "În urmă", - "DE.Views.EditShape.textBorder": "Bordura", - "DE.Views.EditShape.textColor": "Culoare", - "DE.Views.EditShape.textCustomColor": "Culoare particularizată", - "DE.Views.EditShape.textEffects": "Efecte", - "DE.Views.EditShape.textFill": "Umplere", - "DE.Views.EditShape.textForward": "Deplasare înainte", - "DE.Views.EditShape.textFromText": "Distanță de la text", - "DE.Views.EditShape.textInFront": "În prim-plan", - "DE.Views.EditShape.textInline": "În linie", - "DE.Views.EditShape.textOpacity": "Transparență", - "DE.Views.EditShape.textOverlap": "Se permite suprapunerea", - "DE.Views.EditShape.textRemoveShape": "Stergere forma", - "DE.Views.EditShape.textReorder": "Reordonare", - "DE.Views.EditShape.textReplace": "Înlocuire", - "DE.Views.EditShape.textSize": "Dimensiune", - "DE.Views.EditShape.textSquare": "Pătrat", - "DE.Views.EditShape.textStyle": "Stil", - "DE.Views.EditShape.textThrough": "Printre", - "DE.Views.EditShape.textTight": "Strâns", - "DE.Views.EditShape.textToBackground": "Trimitere în plan secundar", - "DE.Views.EditShape.textToForeground": "Aducere în prim plan", - "DE.Views.EditShape.textTopAndBottom": "Sus și jos", - "DE.Views.EditShape.textWithText": "Deplasare odată cu textul", - "DE.Views.EditShape.textWrap": "Încadrare", - "DE.Views.EditTable.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditTable.textAlign": "Aliniere", - "DE.Views.EditTable.textBack": "Înapoi", - "DE.Views.EditTable.textBandedColumn": "Coloana alternantă", - "DE.Views.EditTable.textBandedRow": "Rând alternant", - "DE.Views.EditTable.textBorder": "Bordura", - "DE.Views.EditTable.textCellMargins": "Margini de celulă", - "DE.Views.EditTable.textColor": "Culoare", - "DE.Views.EditTable.textCustomColor": "Culoare particularizată", - "DE.Views.EditTable.textFill": "Umplere", - "DE.Views.EditTable.textFirstColumn": "Prima coloană", - "DE.Views.EditTable.textFlow": "Flux", - "DE.Views.EditTable.textFromText": "Distanță de la text", - "DE.Views.EditTable.textHeaderRow": "Rândul de antet", - "DE.Views.EditTable.textInline": "În linie", - "DE.Views.EditTable.textLastColumn": "Ultima coloană", - "DE.Views.EditTable.textOptions": "Opțiuni", - "DE.Views.EditTable.textRemoveTable": "Ștergere tabel", - "DE.Views.EditTable.textRepeatHeader": "Repetare rânduri antet", - "DE.Views.EditTable.textResizeFit": "Potrivire conținut", - "DE.Views.EditTable.textSize": "Dimensiune", - "DE.Views.EditTable.textStyle": "Stil", - "DE.Views.EditTable.textStyleOptions": "Opțiuni de stil", - "DE.Views.EditTable.textTableOptions": "Opțiuni tabel", - "DE.Views.EditTable.textTotalRow": "Rând total", - "DE.Views.EditTable.textWithText": "Deplasare odată cu textul", - "DE.Views.EditTable.textWrap": "Încadrare", - "DE.Views.EditText.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditText.textAdditional": "Suplimentar", - "DE.Views.EditText.textAdditionalFormat": "Formatare suplimentară", - "DE.Views.EditText.textAllCaps": "Cu majuscule", - "DE.Views.EditText.textAutomatic": "Automat", - "DE.Views.EditText.textBack": "Înapoi", - "DE.Views.EditText.textBullets": "Marcatori", - "DE.Views.EditText.textCharacterBold": "A", - "DE.Views.EditText.textCharacterItalic": "C", - "DE.Views.EditText.textCharacterStrikethrough": "T", - "DE.Views.EditText.textCharacterUnderline": "S", - "DE.Views.EditText.textCustomColor": "Culoare particularizată", - "DE.Views.EditText.textDblStrikethrough": "Tăiere cu două linii", - "DE.Views.EditText.textDblSuperscript": "Exponent", - "DE.Views.EditText.textFontColor": "Culoare font", - "DE.Views.EditText.textFontColors": "Culorile font", - "DE.Views.EditText.textFonts": "Fonturi", - "DE.Views.EditText.textHighlightColor": "Culoare de evidențiere", - "DE.Views.EditText.textHighlightColors": "Culori de evidențiere", - "DE.Views.EditText.textLetterSpacing": "Spațierea dintre caractere", - "DE.Views.EditText.textLineSpacing": "Interlinie", - "DE.Views.EditText.textNone": "Niciunul", - "DE.Views.EditText.textNumbers": "Numere", - "DE.Views.EditText.textSize": "Dimensiune", - "DE.Views.EditText.textSmallCaps": "Majuscule reduse", - "DE.Views.EditText.textStrikethrough": "Tăiere cu o linie", - "DE.Views.EditText.textSubscript": "Indice", - "DE.Views.Search.textCase": "Sensibil la litere mari și mici", - "DE.Views.Search.textDone": "Gata", - "DE.Views.Search.textFind": "Găsire", - "DE.Views.Search.textFindAndReplace": "Găsire și înlocuire", - "DE.Views.Search.textHighlight": "Evidențierea rezultatelor", - "DE.Views.Search.textReplace": "Înlocuire", - "DE.Views.Search.textSearch": "Căutare", - "DE.Views.Settings.textAbout": "Informații", - "DE.Views.Settings.textAddress": "adresă", - "DE.Views.Settings.textAdvancedSettings": "Setări Aplicație", - "DE.Views.Settings.textApplication": "Aplicația", - "DE.Views.Settings.textAuthor": "Autor", - "DE.Views.Settings.textBack": "Înapoi", - "DE.Views.Settings.textBottom": "Jos", - "DE.Views.Settings.textCentimeter": "Centimetru", - "DE.Views.Settings.textCollaboration": "Colaborare", - "DE.Views.Settings.textColorSchemes": "Schema de culori", - "DE.Views.Settings.textComment": "Comentariu", - "DE.Views.Settings.textCommentingDisplay": "Afișare comentarii", - "DE.Views.Settings.textCreated": "A fost creat", - "DE.Views.Settings.textCreateDate": "Creat la", - "DE.Views.Settings.textCustom": "Particularizat", - "DE.Views.Settings.textCustomSize": "Dimensiune particularizată", - "DE.Views.Settings.textDisableAll": "Dezactivare toate", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", - "DE.Views.Settings.textDisplayComments": "Comentarii", - "DE.Views.Settings.textDisplayResolvedComments": "Comentarii rezolvate", - "DE.Views.Settings.textDocInfo": "Informații document", - "DE.Views.Settings.textDocTitle": "Titlul documentului", - "DE.Views.Settings.textDocumentFormats": "Formate de document", - "DE.Views.Settings.textDocumentSettings": "Setări document", - "DE.Views.Settings.textDone": "Gata", - "DE.Views.Settings.textDownload": "Descărcare", - "DE.Views.Settings.textDownloadAs": "Descărcare ca...", - "DE.Views.Settings.textEditDoc": "Editare document", - "DE.Views.Settings.textEmail": "e-mail", - "DE.Views.Settings.textEnableAll": "Se activează toate", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", - "DE.Views.Settings.textFind": "Găsire", - "DE.Views.Settings.textFindAndReplace": "Găsire și înlocuire", - "DE.Views.Settings.textFormat": "Format", - "DE.Views.Settings.textHelp": "Asistența", - "DE.Views.Settings.textHiddenTableBorders": "Borduri de tabel ascunse", - "DE.Views.Settings.textInch": "Inch", - "DE.Views.Settings.textLandscape": "Vedere", - "DE.Views.Settings.textLastModified": "Data ultimei modificări", - "DE.Views.Settings.textLastModifiedBy": "Modificat ultima dată de către", - "DE.Views.Settings.textLeft": "Stânga", - "DE.Views.Settings.textLoading": "Se incarca...", - "DE.Views.Settings.textLocation": "Locația", - "DE.Views.Settings.textMacrosSettings": "Setări macrocomandă", - "DE.Views.Settings.textMargins": "Margini", - "DE.Views.Settings.textNoCharacters": "Caractere neimprimate", - "DE.Views.Settings.textOrientation": "Orientare", - "DE.Views.Settings.textOwner": "Posesor", - "DE.Views.Settings.textPages": "Pagini", - "DE.Views.Settings.textParagraphs": "Paragrafe", - "DE.Views.Settings.textPoint": "Punct", - "DE.Views.Settings.textPortrait": "Portret", - "DE.Views.Settings.textPoweredBy": "Dezvoltat de", - "DE.Views.Settings.textPrint": "Imprimare", - "DE.Views.Settings.textReader": "Mod citire", - "DE.Views.Settings.textReview": "Urmărirea modificărilor", - "DE.Views.Settings.textRight": "Dreapta", - "DE.Views.Settings.textSettings": "Setări", - "DE.Views.Settings.textShowNotification": "Afișare notificări", - "DE.Views.Settings.textSpaces": "Spații", - "DE.Views.Settings.textSpellcheck": "Verificarea ortografică", - "DE.Views.Settings.textStatistic": "Statistic", - "DE.Views.Settings.textSubject": "Subiect", - "DE.Views.Settings.textSymbols": "Simboluri", - "DE.Views.Settings.textTel": "tel", - "DE.Views.Settings.textTitle": "Titlu", - "DE.Views.Settings.textTop": "Sus", - "DE.Views.Settings.textUnitOfMeasurement": "Unitate de măsură ", - "DE.Views.Settings.textUploaded": "S-a încărcat", - "DE.Views.Settings.textVersion": "Versiune", - "DE.Views.Settings.textWords": "Cuvinte", - "DE.Views.Settings.unknownText": "Necunoscut", - "DE.Views.Toolbar.textBack": "Înapoi" + "About": { + "textAbout": "Despre", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textEmail": "Email", + "textPoweredBy": "Dezvoltat de", + "textTel": "Tel", + "textVersion": "Versiune" + }, + "Add": { + "notcriticalErrorTitle": "Avertisment", + "textAddLink": "Adăugare link", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textBelowText": "Dedesubt textul", + "textBottomOfPage": "Josul paginii", + "textBreak": "Sfârșit", + "textCancel": "Revocare", + "textCenterBottom": "La centru jos", + "textCenterTop": "La centru sus", + "textColumnBreak": "Întreruperea de coloană", + "textColumns": "Coloane", + "textComment": "Comentariu", + "textContinuousPage": "Continuu", + "textCurrentPosition": "Poziția curentă", + "textDisplay": "Afișare", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textEvenPage": "Pagină pară", + "textFootnote": "Notă de subsol", + "textFormat": "Format", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInsert": "Inserare", + "textInsertFootnote": "Inserarea notei de subsol", + "textInsertImage": "Inserare imagine", + "textLeftBottom": "Stânga jos", + "textLeftTop": "Stânga sus", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLocation": "Locația", + "textNextPage": "Pagina următoare", + "textOddPage": "Pagină impară", + "textOther": "Altele", + "textPageBreak": "Sfârșit pagină", + "textPageNumber": "Număr de pagină", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPosition": "Poziție", + "textRightBottom": "Dreapta jos", + "textRightTop": "Dreapta sus", + "textRows": "Rânduri", + "textScreenTip": "Sfaturi ecran", + "textSectionBreak": "Sfârșit de secțiune", + "textShape": "Forma", + "textStartAt": "Pornire de la", + "textTable": "Tabel", + "textTableSize": "Dimensiune tabel", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Avertisment", + "textAccept": "Acceptă", + "textAcceptAllChanges": "Acceptați toate modificările", + "textAddComment": "Adaugă comentariu", + "textAddReply": "Adăugare răspuns", + "textAllChangesAcceptedPreview": "Toate modificările sunt acceptate (Previzualizare)", + "textAllChangesEditing": "Toate modificările (Editare)", + "textAllChangesRejectedPreview": "Toate modificările sunt respinse (Previzualizare)", + "textAtLeast": "cel puțin", + "textAuto": "auto", + "textBack": "Înapoi", + "textBaseline": "Referință", + "textBold": "Aldin", + "textBreakBefore": "Sfârsit pagină inainte", + "textCancel": "Revocare", + "textCaps": "Cu majuscule", + "textCenter": "Aliniere la centru", + "textChart": "Diagramă", + "textCollaboration": "Colaborare", + "textColor": "Culoare font", + "textComments": "Comentarii", + "textContextual": "Nu se adaugă spații între paragrafele cu același stil ", + "textDelete": "Șterge", + "textDeleteComment": "Ștergere comentariu", + "textDeleted": "Eliminat:", + "textDeleteReply": "Ștergere răspuns", + "textDisplayMode": "Modul de afișare", + "textDone": "Gata", + "textDStrikeout": "Tăiere cu două linii", + "textEdit": "Editare", + "textEditComment": "Editare comentariu", + "textEditReply": "Editare răspuns", + "textEditUser": "Fișierul este editat de către:", + "textEquation": "Ecuație", + "textExact": "exact", + "textFinal": "Final", + "textFirstLine": "Primul rând", + "textFormatted": "Formatat", + "textHighlight": "Culoare de evidențiere", + "textImage": "Imagine", + "textIndentLeft": "Indentare stânga", + "textIndentRight": "Indentare dreapta", + "textInserted": "Inserat:", + "textItalic": "Cursiv", + "textJustify": "Alinierea stânga-dreapta", + "textKeepLines": "Păstrare linii împreună", + "textKeepNext": "Păstrare cu următorul", + "textLeft": "Aliniere la stânga", + "textLineSpacing": "Interlinie:", + "textMarkup": "Marcaj", + "textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", + "textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", + "textMultiple": "multiplu", + "textNoBreakBefore": "Niciun sfârșit de pagină înainte", + "textNoChanges": "Modificările nu s-au produs.", + "textNoComments": "Documentul nu cuprinde comentarii", + "textNoContextual": "Se adaugă spațiu între paragrafele cu același stil ", + "textNoKeepLines": "Nu se păstrează liniile împreună", + "textNoKeepNext": "Nu se păstrează cu următorul", + "textNot": "Nu", + "textNoWidow": "Fără control văduvă", + "textNum": "Modificarea numerotării", + "textOriginal": "Inițial", + "textParaDeleted": "Paragraful a fost șters", + "textParaFormatted": "Paragraful a fost formatat", + "textParaInserted": "Paragraful a fost adăugat", + "textParaMoveFromDown": "Este mutat în jos:", + "textParaMoveFromUp": "Este mutat în sus:", + "textParaMoveTo": "S-a mutat:", + "textPosition": "Poziție", + "textReject": "Respingere", + "textRejectAllChanges": "Se resping toate modificările", + "textReopen": "Redeschidere", + "textResolve": "Rezolvare", + "textReview": "Revizuire", + "textReviewChange": "Revizuire modificări", + "textRight": "Aliniere la dreapta", + "textShape": "Forma", + "textShd": "Culoare de fundal", + "textSmallCaps": "Majuscule reduse", + "textSpacing": "Spațiere", + "textSpacingAfter": "Spațiere după", + "textSpacingBefore": "Spațiere înainte", + "textStrikeout": "Tăiere cu o linie", + "textSubScript": "Indice", + "textSuperScript": "Exponent", + "textTableChanged": "Setările de tabel au fost modificate", + "textTableRowsAdd": "Au fost adăugate rânduri de tabel", + "textTableRowsDel": "Au fost șterse rânduri de tabel", + "textTabs": "Modificare file", + "textTrackChanges": "Urmărirea modificărilor", + "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "textUnderline": "Subliniat", + "textUsers": "Utilizatori", + "textWidow": "Control văduvă" + }, + "ThemeColorPalette": { + "textCustomColors": "Culori particularizate", + "textStandartColors": "Culori standard", + "textThemeColors": "Culori temă" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", + "menuAddComment": "Adaugă comentariu", + "menuAddLink": "Adăugare link", + "menuCancel": "Revocare", + "menuDelete": "Șterge", + "menuDeleteTable": "Ștergere tabel", + "menuEdit": "Editare", + "menuMerge": "Îmbinare", + "menuMore": "Mai multe", + "menuOpenLink": "Deschidere link", + "menuReview": "Revizuire", + "menuReviewChange": "Revizuire modificări", + "menuSplit": "Scindare", + "menuViewComment": "Vizualizarea comentariilor", + "textColumns": "Coloane", + "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", + "textDoNotShowAgain": "Nu mai afișa", + "textRows": "Rânduri" + }, + "Edit": { + "notcriticalErrorTitle": "Avertisment", + "textActualSize": "Dimensiunea reală", + "textAddCustomColor": "Adăugarea unei culori particularizate", + "textAdditional": "Suplimentar", + "textAdditionalFormatting": "Formatare suplimentară", + "textAddress": "Adresă", + "textAdvanced": "Avansat", + "textAdvancedSettings": "Setări avansate", + "textAfter": "După", + "textAlign": "Aliniere", + "textAllCaps": "Cu majuscule", + "textAllowOverlap": "Se permite suprapunerea", + "textAuto": "Auto", + "textAutomatic": "Automat", + "textBack": "Înapoi", + "textBackground": "Fundal", + "textBandedColumn": "Coloana alternantă", + "textBandedRow": "Rând alternant", + "textBefore": "Înainte", + "textBehind": "În urmă", + "textBorder": "Bordura", + "textBringToForeground": "Aducere în prim plan", + "textBullets": "Marcatori", + "textBulletsAndNumbers": "Marcatori și numerotare", + "textCellMargins": "Margini de celulă", + "textChart": "Diagramă", + "textClose": "Închide", + "textColor": "Culoare", + "textContinueFromPreviousSection": "Continuare din secțiunea anterioară", + "textCustomColor": "Culoare particularizată", + "textDifferentFirstPage": "Prima pagina diferită", + "textDifferentOddAndEvenPages": "Pagini pare și impare diferite", + "textDisplay": "Afișare", + "textDistanceFromText": "Distanță de la text", + "textDoubleStrikethrough": "Tăiere cu două linii", + "textEditLink": "Editare link", + "textEffects": "Efecte", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textFill": "Umplere", + "textFirstColumn": "Prima coloană", + "textFirstLine": "Primul rând", + "textFlow": "Flux", + "textFontColor": "Culoare font", + "textFontColors": "Culorile font", + "textFonts": "Fonturi", + "textFooter": "Subsol", + "textHeader": "Antet", + "textHeaderRow": "Rândul de antet", + "textHighlightColor": "Culoare de evidențiere", + "textHyperlink": "Hyperlink", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInFront": "În prim-plan", + "textInline": "În linie", + "textKeepLinesTogether": "Păstrare linii împreună", + "textKeepWithNext": "Păstrare cu următorul", + "textLastColumn": "Ultima coloană", + "textLetterSpacing": "Spațierea dintre caractere", + "textLineSpacing": "Interlinie", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkToPrevious": "Legătură la anteriorul", + "textMoveBackward": "Mutare în ultimul plan", + "textMoveForward": "Mutare înainte", + "textMoveWithText": "Mutare odată cu textul", + "textNone": "Niciunul", + "textNoStyles": "Niciun stil pentru acest tip de diagramă.", + "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNumbers": "Numere", + "textOpacity": "Transparență", + "textOptions": "Opțiuni", + "textOrphanControl": "Control orfan", + "textPageBreakBefore": "Sfârsit pagină inainte", + "textPageNumbering": "Numerotare pagini", + "textParagraph": "Paragraf", + "textParagraphStyles": "Stiluri paragraf", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPt": "pt", + "textRemoveChart": "Ștergere diagramă", + "textRemoveImage": "Ștergere imagine", + "textRemoveLink": "Ștergere link", + "textRemoveShape": "Stergere forma", + "textRemoveTable": "Ștergere tabel", + "textReorder": "Reordonare", + "textRepeatAsHeaderRow": "Repetare rânduri antet", + "textReplace": "Înlocuire", + "textReplaceImage": "Înlocuire imagine", + "textResizeToFitContent": "Potrivire conținut", + "textScreenTip": "Sfaturi ecran", + "textSelectObjectToEdit": "Selectați obiectul pentru editare", + "textSendToBackground": "Trimitere în plan secundar", + "textSettings": "Setări", + "textShape": "Forma", + "textSize": "Dimensiune", + "textSmallCaps": "Majuscule reduse", + "textSpaceBetweenParagraphs": "Spațiere între paragrafe", + "textSquare": "Pătrat", + "textStartAt": "Pornire de la", + "textStrikethrough": "Tăiere cu o linie", + "textStyle": "Stil", + "textStyleOptions": "Opțiuni de stil", + "textSubscript": "Indice", + "textSuperscript": "Exponent", + "textTable": "Tabel", + "textTableOptions": "Opțiuni tabel", + "textText": "Text", + "textThrough": "Printre", + "textTight": "Strâns", + "textTopAndBottom": "Sus și jos", + "textTotalRow": "Rând total", + "textType": "Tip", + "textWrap": "Încadrare" + }, + "Error": { + "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", + "criticalErrorExtText": "Faceți clic pe OK pentru a reveni la lista de documente.", + "criticalErrorTitle": "Eroare", + "downloadErrorText": "Descărcare eșuată.", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorConnectToServer": "Nu se poate salva documentul. Verificați setările de conexiune sau contactați administratorul
    După ce faceți clic pe butonul OK vi se va solicita să descărcați documentul.", + "errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", + "errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", + "errorDataRange": "Zonă de date incorectă.", + "errorDefaultMessage": "Codul de eroare: %1", + "errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Încărcați documentul pentru copierea de rezervă locală. ", + "errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", + "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dvs.", + "errorKeyEncrypt": "Descriptor cheie nerecunoscut", + "errorKeyExpire": "Descriptor cheie a expirat", + "errorMailMergeLoadFile": "Încărcarea eșuată", + "errorMailMergeSaveFile": "Îmbinarea eșuată.", + "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", + "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", + "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", + "errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", + "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", + "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
    dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", + "notcriticalErrorTitle": "Avertisment", + "openErrorText": "Eroare la deschiderea fișierului", + "saveErrorText": "Eroare la salvarea fișierului", + "scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", + "splitMaxColsErrorText": "Numărul maxim de coloane este de %1", + "splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", + "unknownErrorText": "Eroare necunoscută.", + "uploadImageExtMessage": "Format de imagine nerecunoscut.", + "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Încărcarea datelor...", + "applyChangesTitleText": "Încărcare date", + "downloadMergeText": "Progres descărcare...", + "downloadMergeTitle": "Progres descărcare", + "downloadTextText": "Descărcarea documentului...", + "downloadTitleText": "Descărcarea fișierului", + "loadFontsTextText": "Încărcarea datelor...", + "loadFontsTitleText": "Încărcare date", + "loadFontTextText": "Încărcarea datelor...", + "loadFontTitleText": "Încărcare date", + "loadImagesTextText": "Încărcarea imaginilor...", + "loadImagesTitleText": "Încărcare imagini", + "loadImageTextText": "Încărcarea imaginii...", + "loadImageTitleText": "Încărcare imagine", + "loadingDocumentTextText": "Încărcarea documentului...", + "loadingDocumentTitleText": "Încărcare document", + "mailMergeLoadFileText": "Încărcarea sursei de date...", + "mailMergeLoadFileTitle": "Încărcare sursa de date", + "openTextText": "Deschiderea fișierului...", + "openTitleText": "Deschidere fișier", + "printTextText": "Imprimarea documentului...", + "printTitleText": "Imprimarea documentului", + "savePreparingText": "Pregătire pentru salvare", + "savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", + "saveTextText": "Salvarea documentului...", + "saveTitleText": "Salvare document", + "sendMergeText": "Trimitere îmbinare a corespondenței...", + "sendMergeTitle": "Trimitere îmbinare a corespondenței ", + "textLoadingDocument": "Încărcare document", + "txtEditingMode": "Setare modul de editare...", + "uploadImageTextText": "Încărcarea imaginii...", + "uploadImageTitleText": "Încărcarea imaginii", + "waitText": "Vă rugăm să așteptați..." + }, + "Main": { + "criticalErrorTitle": "Eroare", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorOpensource": "În versiunea Community documentul este disponibil numai pentru vizualizare. Aveți nevoie de o licență comercială pentru accesarea editorului mobil web.", + "errorProcessSaveResult": "Salvarea nu a reușit.", + "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", + "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", + "leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "notcriticalErrorTitle": "Avertisment", + "SDK": { + " -Section ": "- Secțiune", + "above": "deasupra", + "below": "dedesubt", + "Caption": "Legenda", + "Choose an item": "Selectați un element", + "Click to load image": "Faceți clic pentru a încărca imaginea", + "Current Document": "Documentul curent", + "Diagram Title": "Titlu diagramă", + "endnote text": "Textul notelei de final ", + "Enter a date": "Introducere data", + "Error! Bookmark not defined": "Eroare! Marcaj nedefinit.", + "Error! Main Document Only": "Eroare! Numai document principal.", + "Error! No text of specified style in document": "Eroare! Textul formatat cu stilul specificat nu este găsit în document.", + "Error! Not a valid bookmark self-reference": "Eroare! Auto-referință la marcaj în document incorectă.", + "Even Page ": "Pagină pară", + "First Page ": "Prima pagina", + "Footer": "Subsol", + "footnote text": "Textul notei de subsol", + "Header": "Antet", + "Heading 1": "Titlu 1", + "Heading 2": "Titlu 2", + "Heading 3": "Titlu 3", + "Heading 4": "Titlu 4", + "Heading 5": "Titlu 5", + "Heading 6": "Titlu 6", + "Heading 7": "Titlu 7", + "Heading 8": "Titlu 8", + "Heading 9": "Titlu 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index prea mare", + "Intense Quote": "Citat intens", + "Is Not In Table": "Nu există în tabelul", + "List Paragraph": "Listă paragraf", + "Missing Argument": "Argumentul lipsește", + "Missing Operator": "Operatorul lipsește", + "No Spacing": "Fără spațiere", + "No table of contents entries found": "Documentul nu are anteturi. Aplicați un stil de titlu pentru textul care va fi inclus în cuprins.", + "No table of figures entries found": "Nu s-a găsit nici o rubrică din tabel de figuri", + "None": "Niciunul", + "Normal": "Normal", + "Number Too Large To Format": "Număr prea mare pentru formatare", + "Odd Page ": "Pagină impară", + "Quote": "Citat", + "Same as Previous": "La fel ca cel anteror", + "Series": "Serie", + "Subtitle": "Subtitrare", + "Syntax Error": "Eroare de sintaxă", + "Table Index Cannot be Zero": "Valoarea index de tabel nu poate fi zero", + "Table of Contents": "Cuprins", + "table of figures": "Tabel de figuri", + "The Formula Not In Table": "Formula nu este din tabel", + "Title": "Titlu", + "TOC Heading": "Titlu Cuprins", + "Type equation here": "Introduceți ecuația aici", + "Undefined Bookmark": "Marcaj neidentificat", + "Unexpected End of Formula": "Sfârsit neașteptat de formulă", + "X Axis": "Axă X (XAS)", + "Y Axis": "Axa Y", + "Your text here": "Textul dvs. aici", + "Zero Divide": "Împărțirea cu zero" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Vizitarea site-ul Web", + "textClose": "Închide", + "textContactUs": "Contactați Departamentul de Vânzări", + "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textGuest": "Invitat", + "textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", + "textNo": "Nu", + "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textPaidFeature": "Funcția contra plată", + "textRemember": "Reține opțiunea mea", + "textYes": "Da", + "titleLicenseExp": "Licența a expirat", + "titleServerVersion": "Editorul a fost actualizat", + "titleUpdateVersion": "Versiunea s-a modificat", + "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", + "warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.", + "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", + "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.", + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." + }, + "Settings": { + "advDRMOptions": "Fișierul protejat", + "advDRMPassword": "Parola", + "advTxtOptions": "Selectează opțiunile TXT", + "closeButtonText": "Închide fișierul", + "notcriticalErrorTitle": "Avertisment", + "textAbout": "Despre", + "textApplication": "Aplicația", + "textApplicationSettings": "Setări Aplicație", + "textAuthor": "Autor", + "textBack": "Înapoi", + "textBottom": "Jos", + "textCancel": "Revocare", + "textCaseSensitive": "Sensibil la litere mari și mici", + "textCentimeter": "Centimetru", + "textCollaboration": "Colaborare", + "textColorSchemes": "Scheme de culori", + "textComment": "Comentariu", + "textComments": "Comentarii", + "textCommentsDisplay": "Afișare comentarii", + "textCreated": "A fost creat la", + "textCustomSize": "Dimensiunea particularizată", + "textDisableAll": "Se dezactivează toate", + "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzileâ cu notificare", + "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile fără notificare", + "textDocumentInfo": "Informații document", + "textDocumentSettings": "Setări document", + "textDocumentTitle": "Titlul documentului", + "textDone": "Gata", + "textDownload": "Descărcare", + "textDownloadAs": "Descărcare ca", + "textDownloadRtf": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă. Sigur doriți să continuați?", + "textDownloadTxt": "Dacă salvați în acest format de fișier, toate caracteristici vor fi pierdute, cu excepția textului. Sunteți sigur că doriți să continuați?", + "textEnableAll": "Se activează toate", + "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile cu notificare ", + "textEncoding": "Codificare", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFindAndReplaceAll": "Găsire și înlocuire totală", + "textFormat": "Format", + "textHelp": "Ajutor", + "textHiddenTableBorders": "Borduri de tabel ascunse", + "textHighlightResults": "Evidențierea rezultatelor", + "textInch": "Inch", + "textLandscape": "Vedere", + "textLastModified": "Data ultimei modificări", + "textLastModifiedBy": "Modificat ultima dată de către", + "textLeft": "Stânga", + "textLoading": "Se încarcă...", + "textLocation": "Locația", + "textMacrosSettings": "Setări macrocomandă", + "textMargins": "Margini", + "textMarginsH": "Marginile sus și jos sunt prea ridicate pentru această pagină", + "textMarginsW": "Marginile stânga și dreapta sunt prea late pentru această pagină", + "textNoCharacters": "Caractere neimprimate", + "textNoTextFound": "Textul nu a fost găsit", + "textOpenFile": "Introduceți parola pentru deschidere fișier", + "textOrientation": "Orientare", + "textOwner": "Proprietar", + "textPoint": "Punct", + "textPortrait": "Portret", + "textPrint": "Imprimare", + "textReaderMode": "Mod citire", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textResolvedComments": "Comentarii rezolvate", + "textRight": "Dreapta", + "textSearch": "Căutare", + "textSettings": "Setări", + "textShowNotification": "Afișare notificări", + "textSpellcheck": "Verificarea ortografică", + "textStatistic": "Statistic", + "textSubject": "Subiect", + "textTitle": "Titlu", + "textTop": "Sus", + "textUnitOfMeasurement": "Unitate de măsură ", + "textUploaded": "S-a încărcat", + "txtIncorrectPwd": "Parolă incorectă", + "txtProtected": "Parola curentă la fișierul va fi resetată, de îndată ce este introdusă și fișierul este deschis", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metrou", + "txtScheme12": "Modul", + "txtScheme13": "Opulent", + "txtScheme14": "Foișor", + "txtScheme15": "Origine", + "txtScheme16": "Hârtie", + "txtScheme17": "Solstițiu", + "txtScheme18": "Tehnic", + "txtScheme19": "Turist", + "txtScheme2": "Tonuri de gri", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concurență", + "txtScheme7": "Echilibru", + "txtScheme8": "Flux", + "txtScheme9": "Forjă" + }, + "Toolbar": { + "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", + "leaveButtonText": "Părăsește această pagina", + "stayButtonText": "Rămâi în pagină" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index a16cab60e4..d1dd721d24 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -205,6 +205,7 @@ "textBehind": "За текстом", "textBorder": "Граница", "textBringToForeground": "Перенести на передний план", + "textBullets": "Маркеры", "textBulletsAndNumbers": "Маркеры и нумерация", "textCellMargins": "Поля ячейки", "textChart": "Диаграмма", @@ -250,6 +251,7 @@ "textNone": "Нет", "textNoStyles": "Для этого типа диаграмм нет стилей.", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "textNumbers": "Нумерация", "textOpacity": "Прозрачность", "textOptions": "Параметры", "textOrphanControl": "Запрет висячих строк", @@ -379,7 +381,22 @@ "leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", "notcriticalErrorTitle": "Внимание", "SDK": { + " -Section ": "-Раздел", + "above": "выше", + "below": "ниже", + "Caption": "Название", + "Choose an item": "Выберите элемент", + "Click to load image": "Нажмите для загрузки изображения", + "Current Document": "Текущий документ", "Diagram Title": "Заголовок диаграммы", + "endnote text": "Текст концевой сноски", + "Enter a date": "Введите дату", + "Error! Bookmark not defined": "Ошибка! Закладка не определена.", + "Error! Main Document Only": "Ошибка! Только основной документ.", + "Error! No text of specified style in document": "Ошибка! В документе отсутствует текст указанного стиля.", + "Error! Not a valid bookmark self-reference": "Ошибка! Неверная ссылка закладки.", + "Even Page ": "Четная страница", + "First Page ": "Первая страница", "Footer": "Нижний колонтитул", "footnote text": "Текст сноски", "Header": "Верхний колонтитул", @@ -392,17 +409,38 @@ "Heading 7": "Заголовок 7", "Heading 8": "Заголовок 8", "Heading 9": "Заголовок 9", + "Hyperlink": "Ссылка", + "Index Too Large": "Индекс слишком большой", "Intense Quote": "Выделенная цитата", + "Is Not In Table": "Не в таблице", "List Paragraph": "Абзац списка", + "Missing Argument": "Отсутствует аргумент", + "Missing Operator": "Отсутствует оператор", "No Spacing": "Без интервала", + "No table of contents entries found": "В документе нет заголовков. Примените стиль заголовка к тексту, чтобы он появился в оглавлении.", + "No table of figures entries found": "Элементы списка иллюстраций не найдены.", + "None": "Нет", "Normal": "Обычный", + "Number Too Large To Format": "Число слишком большое для форматирования", + "Odd Page ": "Нечетная страница", "Quote": "Цитата", + "Same as Previous": "Как в предыдущем", "Series": "Ряд", "Subtitle": "Подзаголовок", + "Syntax Error": "Синтаксическая ошибка", + "Table Index Cannot be Zero": "Индекс таблицы не может быть нулевым", + "Table of Contents": "Оглавление", + "table of figures": "Список иллюстраций", + "The Formula Not In Table": "Формула не в таблице", "Title": "Название", + "TOC Heading": "Заголовок оглавления", + "Type equation here": "Введите здесь уравнение", + "Undefined Bookmark": "Закладка не определена", + "Unexpected End of Formula": "Непредвиденное завершение формулы", "X Axis": "Ось X (XAS)", "Y Axis": "Ось Y", - "Your text here": "Введите ваш текст" + "Your text here": "Введите ваш текст", + "Zero Divide": "Деление на ноль" }, "textAnonymous": "Анонимный пользователь", "textBuyNow": "Перейти на сайт", @@ -481,7 +519,7 @@ "textMacrosSettings": "Настройки макросов", "textMargins": "Поля", "textMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы", - "textMarginsW": "Левое и правое поля слишком высокие для заданной высоты страницы", + "textMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы", "textNoCharacters": "Непечатаемые символы", "textNoTextFound": "Текст не найден", "textOpenFile": "Введите пароль для открытия файла", @@ -506,7 +544,27 @@ "textUnitOfMeasurement": "Единица измерения", "textUploaded": "Загружен", "txtIncorrectPwd": "Неверный пароль", - "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен" + "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен", + "txtScheme1": "Стандартная", + "txtScheme10": "Обычная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Изящная", + "txtScheme14": "Эркер", + "txtScheme15": "Начальная", + "txtScheme16": "Бумажная", + "txtScheme17": "Солнцестояние", + "txtScheme18": "Техническая", + "txtScheme19": "Трек", + "txtScheme2": "Оттенки серого", + "txtScheme22": "Новая офисная", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Официальная", + "txtScheme6": "Открытая", + "txtScheme7": "Справедливость", + "txtScheme8": "Поток", + "txtScheme9": "Литейная" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 155dd88107..e3b25363be 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -1,36 +1,99 @@ { "About": { "textAbout": "Hakkında", - "textAddress": "adres" + "textAddress": "adres", + "textBack": "Geri" }, "Add": { - "textAddLink": "Bağlantı Ekle" + "textAddLink": "Bağlantı Ekle", + "textAddress": "adres", + "textBack": "Geri", + "textBelowText": "Alt Metin", + "textBottomOfPage": "Sayfanın alt kısmı", + "textBreak": "Yeni Sayfa", + "textCancel": "İptal Et", + "textCenterBottom": "Orta Alt", + "textColumnBreak": "Sütun Sonu" }, "Common": { "Collaboration": { "textAccept": "Onayla", "textAcceptAllChanges": "Tüm Değişikliği Onayla", "textAddReply": "Cevap ekle", + "textAllChangesAcceptedPreview": "Tüm değişiklikler onaylandı (Önizleme)", + "textAllChangesEditing": "Tüm değişiklikler (Düzenleme)", + "textAtLeast": "En az", + "textAuto": "Otomatik", + "textBack": "Geri", + "textBaseline": "Kenar çizgisi", + "textBold": "Kalın", + "textCancel": "İptal Et", + "textCaps": "Tümü büyük harf", "textCenter": "Ortaya Hizala", + "textChart": "Grafik", + "textCollaboration": "Ortak çalışma", "textJustify": "İki yana hizala", "textLeft": "Sola Hizala", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", - "textRight": "Sağa Hizala" + "textRight": "Sağa Hizala", + "textShd": "Arka plan rengi" } }, "ContextMenu": { - "menuAddLink": "Bağlantı Ekle" + "menuAddLink": "Bağlantı Ekle", + "menuCancel": "İptal Et" }, "Edit": { "textActualSize": "Gerçek Boyut", "textAddCustomColor": "Özel Renk Ekle", "textAdditional": "Ek", + "textAdditionalFormatting": "Ek biçimlendirme", + "textAddress": "adres", "textAdvanced": "Gelişmiş", "textAdvancedSettings": "Gelişmiş Ayarlar", "textAfter": "sonra", - "textAlign": "Hizala" + "textAlign": "Hizala", + "textAllCaps": "Tümü büyük harf", + "textAuto": "Otomatik", + "textAutomatic": "Otomatik", + "textBack": "Geri", + "textBackground": "Arka Plan", + "textBandedColumn": "Çizgili Sütun", + "textBandedRow": "Çizgili Satır", + "textBefore": "Önce", + "textBehind": "Arkada", + "textBorder": "Sınır", + "textBringToForeground": "Önplana Getir", + "textBulletsAndNumbers": "madde imleri ve numaralandırma", + "textCellMargins": "Hücre Kenar Boşluğu", + "textChart": "Grafik", + "textClose": "Kapat", + "textColor": "Renk" + }, + "Error": { + "openErrorText": "Dosya açılırken bir hata oluştu.", + "saveErrorText": "Dosya kaydedilirken bir hata oluştu" + }, + "Main": { + "SDK": { + "Diagram Title": "Grafik başlığı" + }, + "textAnonymous": "Anonim", + "textClose": "Kapat" }, "Settings": { - "textAbout": "Hakkında" + "advTxtOptions": "TXT Seçeneklerini Belirle", + "closeButtonText": "Dosyayı Kapat", + "textAbout": "Hakkında", + "textApplication": "Uygulama", + "textApplicationSettings": "Uygulama Ayarları", + "textAuthor": "Sahibi", + "textBack": "Geri", + "textBottom": "Alt", + "textCancel": "İptal Et", + "textCaseSensitive": "Büyük küçük harfe duyarlı", + "textCentimeter": "Santimetre", + "textCollaboration": "Ortak çalışma", + "textColorSchemes": "Renk Şeması" } } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index e085173116..cb844e4e5a 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment", "PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "PE.ApplicationController.textAnonymous": "Anònim", + "PE.ApplicationController.textGuest": "Convidat", "PE.ApplicationController.textLoadingDocument": "Carregant presentació", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Tancar", diff --git a/apps/presentationeditor/embed/locale/de.json b/apps/presentationeditor/embed/locale/de.json index b9d8923fcc..bb6a7f753f 100644 --- a/apps/presentationeditor/embed/locale/de.json +++ b/apps/presentationeditor/embed/locale/de.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", "PE.ApplicationController.notcriticalErrorTitle": "Warnung", "PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", + "PE.ApplicationController.textAnonymous": "Anonym", + "PE.ApplicationController.textGuest": "Gast", "PE.ApplicationController.textLoadingDocument": "Präsentation wird geladen", "PE.ApplicationController.textOf": "von", "PE.ApplicationController.txtClose": "Schließen", diff --git a/apps/presentationeditor/embed/locale/el.json b/apps/presentationeditor/embed/locale/el.json index b75235358c..51974b6525 100644 --- a/apps/presentationeditor/embed/locale/el.json +++ b/apps/presentationeditor/embed/locale/el.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "PE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "PE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", + "PE.ApplicationController.textAnonymous": "Ανώνυμος", + "PE.ApplicationController.textGuest": "Επισκέπτης", "PE.ApplicationController.textLoadingDocument": "Γίνεται φόρτωση παρουσίασης", "PE.ApplicationController.textOf": "του", "PE.ApplicationController.txtClose": "Κλείσιμο", diff --git a/apps/presentationeditor/embed/locale/es.json b/apps/presentationeditor/embed/locale/es.json index f32a35560d..98c392ab35 100644 --- a/apps/presentationeditor/embed/locale/es.json +++ b/apps/presentationeditor/embed/locale/es.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "PE.ApplicationController.textAnonymous": "Anónimo", + "PE.ApplicationController.textGuest": "Invitado", "PE.ApplicationController.textLoadingDocument": "Cargando presentación", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Cerrar", diff --git a/apps/presentationeditor/embed/locale/fr.json b/apps/presentationeditor/embed/locale/fr.json index fc61fb9d2e..9f0063f17d 100644 --- a/apps/presentationeditor/embed/locale/fr.json +++ b/apps/presentationeditor/embed/locale/fr.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "PE.ApplicationController.notcriticalErrorTitle": "Avertissement", "PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "PE.ApplicationController.textAnonymous": "Anonyme", + "PE.ApplicationController.textGuest": "Invité", "PE.ApplicationController.textLoadingDocument": "Chargement de la présentation", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Fermer", diff --git a/apps/presentationeditor/embed/locale/nl.json b/apps/presentationeditor/embed/locale/nl.json index 6290e968be..39c3e1f8d5 100644 --- a/apps/presentationeditor/embed/locale/nl.json +++ b/apps/presentationeditor/embed/locale/nl.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "PE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "PE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", + "PE.ApplicationController.textAnonymous": "Anoniem", + "PE.ApplicationController.textGuest": "Gast", "PE.ApplicationController.textLoadingDocument": "Presentatie wordt geladen", "PE.ApplicationController.textOf": "van", "PE.ApplicationController.txtClose": "Afsluiten", @@ -25,6 +27,7 @@ "PE.ApplicationController.waitText": "Een moment geduld", "PE.ApplicationView.txtDownload": "Downloaden", "PE.ApplicationView.txtEmbed": "Invoegen", + "PE.ApplicationView.txtFileLocation": "Open bestandslocatie", "PE.ApplicationView.txtFullScreen": "Volledig scherm", "PE.ApplicationView.txtPrint": "Afdrukken", "PE.ApplicationView.txtShare": "Delen" diff --git a/apps/presentationeditor/embed/locale/pt.json b/apps/presentationeditor/embed/locale/pt.json index 40f3e353a4..782bc2a95b 100644 --- a/apps/presentationeditor/embed/locale/pt.json +++ b/apps/presentationeditor/embed/locale/pt.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", "PE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns componentes não foram carregados. Por favor, recarregue a página.", + "PE.ApplicationController.textAnonymous": "Anônimo", + "PE.ApplicationController.textGuest": "Convidado(a)", "PE.ApplicationController.textLoadingDocument": "Carregando apresentação", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Fechar", diff --git a/apps/presentationeditor/embed/locale/ro.json b/apps/presentationeditor/embed/locale/ro.json index d53edef049..33ef83a3f7 100644 --- a/apps/presentationeditor/embed/locale/ro.json +++ b/apps/presentationeditor/embed/locale/ro.json @@ -17,10 +17,12 @@ "PE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "PE.ApplicationController.notcriticalErrorTitle": "Avertisment", "PE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "PE.ApplicationController.textAnonymous": "Anonim", + "PE.ApplicationController.textGuest": "Invitat", "PE.ApplicationController.textLoadingDocument": "Încărcare prezentare", "PE.ApplicationController.textOf": "din", "PE.ApplicationController.txtClose": "Închidere", - "PE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", + "PE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "PE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "PE.ApplicationController.waitText": "Vă rugăm să așteptați...", "PE.ApplicationView.txtDownload": "Descărcare", diff --git a/apps/presentationeditor/embed/locale/zh.json b/apps/presentationeditor/embed/locale/zh.json index fbb4fa02e9..6597c40acb 100644 --- a/apps/presentationeditor/embed/locale/zh.json +++ b/apps/presentationeditor/embed/locale/zh.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "PE.ApplicationController.notcriticalErrorTitle": "警告", "PE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", + "PE.ApplicationController.textAnonymous": "匿名", + "PE.ApplicationController.textGuest": "访客", "PE.ApplicationController.textLoadingDocument": "载入演示", "PE.ApplicationController.textOf": "的", "PE.ApplicationController.txtClose": "关闭", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index bb8c8f59a3..2334d4e996 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -1988,6 +1988,7 @@ "PE.Views.Toolbar.txtScheme2": "Escala de Gris", "PE.Views.Toolbar.txtScheme20": "Urbà", "PE.Views.Toolbar.txtScheme21": "Empenta", + "PE.Views.Toolbar.txtScheme22": "Nova Oficina", "PE.Views.Toolbar.txtScheme3": "Àpex", "PE.Views.Toolbar.txtScheme4": "Aspecte", "PE.Views.Toolbar.txtScheme5": "Cívic", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index ecb8cd9db3..f9a62a1cb5 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -1988,6 +1988,7 @@ "PE.Views.Toolbar.txtScheme2": "Graustufe", "PE.Views.Toolbar.txtScheme20": "Rhea", "PE.Views.Toolbar.txtScheme21": "Telesto", + "PE.Views.Toolbar.txtScheme22": "Neues Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspekt ", "PE.Views.Toolbar.txtScheme5": "Cronus", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index c5fe20844f..87a9582af5 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -715,7 +715,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "PE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "PE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "PE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το όριο μέγιστου μεγέθους εικόνας.", + "PE.Controllers.Main.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "PE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...", "PE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας", "PE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", @@ -1988,6 +1988,7 @@ "PE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι", "PE.Views.Toolbar.txtScheme20": "Αστικό", "PE.Views.Toolbar.txtScheme21": "Οίστρος", + "PE.Views.Toolbar.txtScheme22": "Νέο Γραφείο", "PE.Views.Toolbar.txtScheme3": "Άκρο", "PE.Views.Toolbar.txtScheme4": "Άποψη", "PE.Views.Toolbar.txtScheme5": "Κυβικό", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 1cd10a051d..fbb90dc0f3 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -1988,6 +1988,7 @@ "PE.Views.Toolbar.txtScheme2": "Escala de grises", "PE.Views.Toolbar.txtScheme20": "Urbano", "PE.Views.Toolbar.txtScheme21": "Brío", + "PE.Views.Toolbar.txtScheme22": "Nueva oficina", "PE.Views.Toolbar.txtScheme3": "Vértice", "PE.Views.Toolbar.txtScheme4": "Aspecto", "PE.Views.Toolbar.txtScheme5": "Civil", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 0e10003f85..224c75cbac 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -94,7 +94,7 @@ "Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtMail": "émail: ", - "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtPoweredBy": "Réalisation", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents", "Common.Views.Header.txtAccessRights": "Modifier les droits d'accès", "Common.Views.Header.txtRename": "Renommer", + "Common.Views.History.textCloseHistory": "Fermer l'historique", + "Common.Views.History.textHide": "Réduire", + "Common.Views.History.textHideAll": "Masquer les modifications détaillées", + "Common.Views.History.textRestore": "Restaurer", + "Common.Views.History.textShow": "Développer", + "Common.Views.History.textShowAll": "Afficher les modifications détaillées", + "Common.Views.History.textVer": "ver. ", "Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Champ obligatoire", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"", @@ -447,7 +454,7 @@ "PE.Controllers.Main.textLoadingDocument": "Chargement de présentation", "PE.Controllers.Main.textLongName": "Entrez un nom qui a moins de 128 caractères.", "PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", - "PE.Controllers.Main.textPaidFeature": "Fonction payée", + "PE.Controllers.Main.textPaidFeature": "Fonction payante", "PE.Controllers.Main.textRemember": "Se souvenir de mon choix", "PE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "PE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -468,7 +475,7 @@ "PE.Controllers.Main.txtDateTime": "Date et heure", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "PE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", + "PE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "PE.Controllers.Main.txtErrorLoadHistory": "Chargement de l'historique a échoué", "PE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "PE.Controllers.Main.txtFooter": "Pied de page", @@ -703,7 +710,7 @@ "PE.Controllers.Main.txtTheme_green": "Vert", "PE.Controllers.Main.txtTheme_green_leaf": "Feuille verte", "PE.Controllers.Main.txtTheme_lines": "Lignes", - "PE.Controllers.Main.txtTheme_office": "Bureau", + "PE.Controllers.Main.txtTheme_office": "Office", "PE.Controllers.Main.txtTheme_office_theme": "Thème Office", "PE.Controllers.Main.txtTheme_official": "officielle", "PE.Controllers.Main.txtTheme_pixel": "Pixélisée", @@ -715,7 +722,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "PE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "PE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", - "PE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", + "PE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "PE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "PE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "PE.Controllers.Main.waitText": "Veuillez patienter...", @@ -733,7 +740,7 @@ "PE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.
    Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'elle est disponible.
    Voulez-vous continuer?", "PE.Controllers.Toolbar.textAccent": "Types d'accentuation", "PE.Controllers.Toolbar.textBracket": "Crochets", - "PE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image.", + "PE.Controllers.Toolbar.textEmptyImgUrl": "Spécifiez l'URL de l'image", "PE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.
    Entrez une valeur numérique entre 1 et 300", "PE.Controllers.Toolbar.textFraction": "Fractions", "PE.Controllers.Toolbar.textFunction": "Fonctions", @@ -1118,7 +1125,7 @@ "PE.Views.DocumentHolder.insertRowText": "Insérer une ligne", "PE.Views.DocumentHolder.insertText": "Insérer", "PE.Views.DocumentHolder.langText": "Sélectionner la langue", - "PE.Views.DocumentHolder.leftText": "A gauche", + "PE.Views.DocumentHolder.leftText": "À gauche", "PE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "PE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "PE.Views.DocumentHolder.mniCustomTable": "Inserer un tableau personnalisé", @@ -1273,7 +1280,7 @@ "PE.Views.DocumentPreview.txtPlay": "Démarrer la présentation", "PE.Views.DocumentPreview.txtPrev": "Diapositive précédente", "PE.Views.DocumentPreview.txtReset": "Remettre à zéro", - "PE.Views.FileMenu.btnAboutCaption": "A propos", + "PE.Views.FileMenu.btnAboutCaption": "À propos", "PE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier", "PE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "PE.Views.FileMenu.btnCreateNewCaption": "Nouvelle présentation", @@ -1448,7 +1455,7 @@ "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalement", "PE.Views.ImageSettingsAdvanced.textWidth": "Largeur", - "PE.Views.LeftMenu.tipAbout": "A propos", + "PE.Views.LeftMenu.tipAbout": "À propos", "PE.Views.LeftMenu.tipChat": "Chat", "PE.Views.LeftMenu.tipComments": "Commentaires", "PE.Views.LeftMenu.tipPlugins": "Plug-ins", @@ -1467,14 +1474,14 @@ "PE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "PE.Views.ParagraphSettings.textAt": "A", "PE.Views.ParagraphSettings.textAtLeast": "Au moins", - "PE.Views.ParagraphSettings.textAuto": "Plusieurs", + "PE.Views.ParagraphSettings.textAuto": "Multiple ", "PE.Views.ParagraphSettings.textExact": "Exactement", "PE.Views.ParagraphSettings.txtAutoText": "Auto", "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules", - "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double", "PE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", - "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche", "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après", @@ -1489,7 +1496,7 @@ "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", - "PE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets", @@ -1502,7 +1509,7 @@ "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout", "PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre", - "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", + "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", @@ -1593,7 +1600,7 @@ "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes", - "PE.Views.ShapeSettingsAdvanced.textLeft": "A gauche", + "PE.Views.ShapeSettingsAdvanced.textLeft": "À gauche", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne", "PE.Views.ShapeSettingsAdvanced.textMiter": "Onglet", "PE.Views.ShapeSettingsAdvanced.textNofit": "Ne pas ajuster automatiquement", @@ -1657,9 +1664,9 @@ "PE.Views.SlideSettings.textGradient": "Dégradé", "PE.Views.SlideSettings.textGradientFill": "Remplissage en dégradé", "PE.Views.SlideSettings.textHorizontalIn": "Horizontal intérieur", - "PE.Views.SlideSettings.textHorizontalOut": "Horizontal intérieur", + "PE.Views.SlideSettings.textHorizontalOut": "Horizontal extérieur", "PE.Views.SlideSettings.textImageTexture": "Image ou Texture", - "PE.Views.SlideSettings.textLeft": "A gauche", + "PE.Views.SlideSettings.textLeft": "À gauche", "PE.Views.SlideSettings.textLinear": "Linéaire", "PE.Views.SlideSettings.textNoFill": "Pas de remplissage", "PE.Views.SlideSettings.textNone": "Rien", @@ -1683,8 +1690,8 @@ "PE.Views.SlideSettings.textTopLeft": "En haut à gauche", "PE.Views.SlideSettings.textTopRight": "En haut à droite", "PE.Views.SlideSettings.textUnCover": "Découvrir", - "PE.Views.SlideSettings.textVerticalIn": "Vertical extérieur", - "PE.Views.SlideSettings.textVerticalOut": "Vertical intérieur ", + "PE.Views.SlideSettings.textVerticalIn": "Vertical intérieur", + "PE.Views.SlideSettings.textVerticalOut": "Vertical extérieur ", "PE.Views.SlideSettings.textWedge": "Coin", "PE.Views.SlideSettings.textWipe": "Effacement", "PE.Views.SlideSettings.textZoom": "Zoom", @@ -1799,7 +1806,7 @@ "PE.Views.TableSettingsAdvanced.textBottom": "En bas", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Utiliser marges par défaut", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges par défaut", - "PE.Views.TableSettingsAdvanced.textLeft": "A gauche", + "PE.Views.TableSettingsAdvanced.textLeft": "À gauche", "PE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule", "PE.Views.TableSettingsAdvanced.textRight": "A droite", "PE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés", @@ -1974,7 +1981,7 @@ "PE.Views.Toolbar.txtDistribVert": "Distribuer verticalement", "PE.Views.Toolbar.txtGroup": "Grouper", "PE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", - "PE.Views.Toolbar.txtScheme1": "Bureau", + "PE.Views.Toolbar.txtScheme1": "Office", "PE.Views.Toolbar.txtScheme10": "Médian", "PE.Views.Toolbar.txtScheme11": "Métro", "PE.Views.Toolbar.txtScheme12": "Module", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Niveaux de gris", "PE.Views.Toolbar.txtScheme20": "Urbain", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "New Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Proportions", "PE.Views.Toolbar.txtScheme5": "Civique", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index 5543ae087e..f5522ff0e3 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", "Common.Views.Header.txtRename": "Hernoemen", + "Common.Views.History.textCloseHistory": "Sluit geschiedenis", + "Common.Views.History.textHide": "Samenvouwen", + "Common.Views.History.textHideAll": "Details van wijzigingen verbergen", + "Common.Views.History.textRestore": "Herstellen", + "Common.Views.History.textShow": "Uitvouwen", + "Common.Views.History.textShowAll": "Details van wijzigingen weergeven", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", @@ -201,7 +208,7 @@ "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", - "Common.Views.OpenDialog.txtEncoding": "Versleuteling", + "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", @@ -715,7 +722,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "PE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "PE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "PE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", + "PE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", "PE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "PE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "PE.Controllers.Main.waitText": "Een moment...", @@ -1867,7 +1874,7 @@ "PE.Views.Toolbar.capInsertText": "Tekstvak", "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "Bestand", - "PE.Views.Toolbar.capTabHome": "Home", + "PE.Views.Toolbar.capTabHome": "Start", "PE.Views.Toolbar.capTabInsert": "Invoegen", "PE.Views.Toolbar.mniCapitalizeWords": "Geef elk woord een hoofdletter ", "PE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen", @@ -1916,7 +1923,7 @@ "PE.Views.Toolbar.textSuperscript": "Superscript", "PE.Views.Toolbar.textTabCollaboration": "Samenwerking", "PE.Views.Toolbar.textTabFile": "Bestand", - "PE.Views.Toolbar.textTabHome": "Home", + "PE.Views.Toolbar.textTabHome": "Start", "PE.Views.Toolbar.textTabInsert": "Invoegen", "PE.Views.Toolbar.textTabProtect": "Beveiliging", "PE.Views.Toolbar.textTitleError": "Fout", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Grijswaarden", "PE.Views.Toolbar.txtScheme20": "Stedelijk", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "Nieuw bureau", "PE.Views.Toolbar.txtScheme3": "Toppunt", "PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme5": "Civiel", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 1c79069086..c1d338f03a 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Ver usuários e gerenciar direitos de acesso ao documento", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", "Common.Views.Header.txtRename": "Renomear", + "Common.Views.History.textCloseHistory": "Fechar histórico", + "Common.Views.History.textHide": "Minimizar", + "Common.Views.History.textHideAll": "Ocultar alterações detalhadas ", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Expandir", + "Common.Views.History.textShowAll": "Mostrar alterações detalhadas", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Escala de cinza", "PE.Views.Toolbar.txtScheme20": "Urbano", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "Novo Office", "PE.Views.Toolbar.txtScheme3": "Ápice", "PE.Views.Toolbar.txtScheme4": "Aspecto", "PE.Views.Toolbar.txtScheme5": "Cívico", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index a242ecec78..24e2bfa1d0 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -711,7 +711,7 @@ "PE.Controllers.Main.txtTheme_turtle": "Turtle", "PE.Controllers.Main.txtXAxis": "Axa X", "PE.Controllers.Main.txtYAxis": "Axa Y", - "PE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", + "PE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "PE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", "PE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", @@ -1670,7 +1670,7 @@ "PE.Views.SlideSettings.textRadial": "Radială", "PE.Views.SlideSettings.textReset": "Renunțare la modificări", "PE.Views.SlideSettings.textRight": "Dreapta", - "PE.Views.SlideSettings.textSec": "T", + "PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectImage": "Selectați imaginea", "PE.Views.SlideSettings.textSelectTexture": "Selectare", "PE.Views.SlideSettings.textSmoothly": "Lin", @@ -1988,6 +1988,7 @@ "PE.Views.Toolbar.txtScheme2": "Tonuri de gri", "PE.Views.Toolbar.txtScheme20": "Urban", "PE.Views.Toolbar.txtScheme21": "Vervă", + "PE.Views.Toolbar.txtScheme22": "New Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme5": "Civic", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 4f9c735920..c36e9242a1 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу", "Common.Views.Header.txtAccessRights": "Изменить права доступа", "Common.Views.Header.txtRename": "Переименовать", + "Common.Views.History.textCloseHistory": "Закрыть историю", + "Common.Views.History.textHide": "Свернуть", + "Common.Views.History.textHideAll": "Скрыть подробные изменения", + "Common.Views.History.textRestore": "Восстановить", + "Common.Views.History.textShow": "Развернуть", + "Common.Views.History.textShowAll": "Показать подробные изменения", + "Common.Views.History.textVer": "вер.", "Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 24629fd578..ecfdf96cd6 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Advertiment", "SDK": { "Chart": "Gràfic", + "Click to add first slide": "Feu clic per afegir la primera diapositiva", + "Click to add notes": "Feu clic per afegir notes", "ClipArt": "Imatges Predissenyades", "Date and time": "Data i hora", "Diagram": "Diagrama", @@ -78,7 +80,9 @@ "Footer": "Peu de pàgina", "Header": "Capçalera", "Image": "Imatge", + "Loading": "Carregant", "Media": "Mitjans", + "None": "Cap", "Picture": "Imatge", "Series": "Sèrie", "Slide number": "Número de Diapositiva", @@ -258,6 +262,7 @@ "textBottomLeft": "Inferior-Esquerra", "textBottomRight": "Inferior-Dreta", "textBringToForeground": "Portar a Primer pla", + "textBullets": "Vinyetes", "textBulletsAndNumbers": "Vinyetes i números", "textCaseSensitive": "Sensible a Majúscules i Minúscules", "textCellMargins": "Marges de Cel·la", @@ -321,6 +326,7 @@ "textNoStyles": "No hi ha estils per a aquest tipus de diagrama.", "textNoTextFound": "No s'ha trobat el text", "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textNumbers": "Nombres", "textOpacity": "Opacitat", "textOptions": "Opcions", "textPictureFromLibrary": "Imatge de la Biblioteca", @@ -431,7 +437,27 @@ "textTitle": "Nom", "textUnitOfMeasurement": "Unitat de Mesura", "textUploaded": "Carregat", - "textVersion": "Versió" + "textVersion": "Versió", + "txtScheme1": "Oficina", + "txtScheme10": "Mitjana", + "txtScheme11": "Metro", + "txtScheme12": "Mòdul", + "txtScheme13": "Opulent", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Paper", + "txtScheme17": "Solstici", + "txtScheme18": "Tècnic", + "txtScheme19": "Excursió", + "txtScheme2": "Escala de grisos", + "txtScheme22": "Nova Oficina", + "txtScheme3": "Vèrtex", + "txtScheme4": "Aspecte", + "txtScheme5": "Cívic", + "txtScheme6": "Concurs", + "txtScheme7": "Patrimoni net", + "txtScheme8": "Flux", + "txtScheme9": "Fosa" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 35ce763a78..808c78ad29 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Warnung", "SDK": { "Chart": "Diagramm", + "Click to add first slide": "Klicken Sie, um die erste Folie hinzuzufügen", + "Click to add notes": "Klicken Sie, um Notizen hinzuzufügen", "ClipArt": "ClipArt", "Date and time": "Datum und Uhrzeit", "Diagram": "Schema", @@ -78,7 +80,9 @@ "Footer": "Fußzeile", "Header": "Kopfzeile", "Image": "Bild", + "Loading": "Ladevorgang", "Media": "Multimedia", + "None": "Kein(e)", "Picture": "Bild", "Series": "Reihen", "Slide number": "Foliennummer", @@ -258,6 +262,7 @@ "textBottomLeft": "Unten links", "textBottomRight": "Unten rechts", "textBringToForeground": "In den Vordergrund bringen", + "textBullets": "Aufzählung", "textBulletsAndNumbers": "Aufzählungszeichen und Nummern", "textCaseSensitive": "Groß-/Kleinschreibung beachten", "textCellMargins": "Zellenränder", @@ -321,6 +326,7 @@ "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNoTextFound": "Der Text wurde nicht gefunden", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "textNumbers": "Nummern", "textOpacity": "Undurchsichtigkeit", "textOptions": "Optionen", "textPictureFromLibrary": "Bild aus dem Verzeichnis", @@ -431,7 +437,27 @@ "textTitle": "Titel", "textUnitOfMeasurement": "Maßeinheit", "textUploaded": "Hochgeladen", - "textVersion": "Version" + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Reichhaltig", + "txtScheme14": "Erker", + "txtScheme15": "Herkunft", + "txtScheme16": "Papier", + "txtScheme17": "Sonnenwende", + "txtScheme18": "Technik", + "txtScheme19": "Wanderung", + "txtScheme2": "Grauskala", + "txtScheme22": "Neues Office", + "txtScheme3": "Apex", + "txtScheme4": "Bildseitenverhältnis", + "txtScheme5": "bürgerlich", + "txtScheme6": "Konzertsaal", + "txtScheme7": "Eigenkapital", + "txtScheme8": "Fluss", + "txtScheme9": "Gießerei" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 1ccd7832b6..d751433718 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -1,40 +1,242 @@ { "About": { - "textAbout": "À propos de", + "textAbout": "À propos", "textAddress": "Adresse", - "textBack": "Retour" + "textBack": "Retour", + "textEmail": "E-mail", + "textPoweredBy": "Réalisation", + "textTel": "Tél.", + "textVersion": "Version" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Avertissement", "textAddComment": "Ajouter un commentaire", "textAddReply": "Ajouter une réponse", "textBack": "Retour", - "textCancel": "Annuler" + "textCancel": "Annuler", + "textCollaboration": "Collaboration", + "textComments": "Commentaires", + "textDeleteComment": "Supprimer commentaire", + "textDeleteReply": "Supprimer réponse", + "textDone": "Terminé", + "textEdit": "Modifier", + "textEditComment": "Modifier le commentaire", + "textEditReply": "Modifier la réponse", + "textEditUser": "Le document est en cours de modification par les utilisateurs suivants:", + "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", + "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", + "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textReopen": "Rouvrir", + "textResolve": "Résoudre", + "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", + "textUsers": "Utilisateurs" + }, + "ThemeColorPalette": { + "textCustomColors": "Couleurs personnalisées", + "textStandartColors": "Couleurs standard", + "textThemeColors": "Couleurs de thème" } }, "ContextMenu": { + "errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", "menuAddComment": "Ajouter un commentaire", "menuAddLink": "Ajouter un lien", - "menuCancel": "Annuler" + "menuCancel": "Annuler", + "menuDelete": "Supprimer", + "menuDeleteTable": "Supprimer le tableau", + "menuEdit": "Modifier", + "menuMerge": "Fusionner", + "menuMore": "Plus", + "menuOpenLink": "Ouvrir le lien", + "menuSplit": "Fractionner", + "menuViewComment": "Voir le commentaire", + "textColumns": "Colonnes", + "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "textDoNotShowAgain": "Ne plus afficher", + "textRows": "Lignes" }, "Controller": { "Main": { - "textAnonymous": "Anonyme" + "advDRMOptions": "Fichier protégé", + "advDRMPassword": " Mot de passe", + "closeButtonText": "Fermer le fichier", + "criticalErrorTitle": "Erreur", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web vous avez besoin d'une licence payante.", + "errorProcessSaveResult": "Échec de l'enregistrement", + "errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", + "errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", + "leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "notcriticalErrorTitle": "Avertissement", + "SDK": { + "Chart": "Graphique", + "Click to add first slide": "Cliquez pour ajouter la premère diapositive", + "Click to add notes": "Cliquez pour ajouter des notes", + "ClipArt": "Clip Art", + "Date and time": "Date et heure", + "Diagram": "Diagramme", + "Diagram Title": "Titre du graphique", + "Footer": "Pied de page", + "Header": "En-tête", + "Image": "Image", + "Loading": "Chargement", + "Media": "Média", + "None": "Aucun", + "Picture": "Image", + "Series": "Série", + "Slide number": "Numéro de diapositive", + "Slide subtitle": "Sous-titre de diapositive", + "Slide text": "Texte de la diapositive", + "Slide title": "Titre de la diapositive", + "Table": "Tableau", + "X Axis": "Axe X (XAS)", + "Y Axis": "Axe Y", + "Your text here": "Votre texte ici" + }, + "textAnonymous": "Anonyme", + "textBuyNow": "Visiter le site web", + "textClose": "Fermer", + "textContactUs": "Contacter l'équipe de ventes", + "textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.", + "textGuest": "Invité", + "textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros?", + "textNo": "Non", + "textNoLicenseTitle": "La limite de la licence est atteinte", + "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", + "textPaidFeature": "Fonction payante", + "textRemember": "Se souvenir de mon choix", + "textYes": "Oui", + "titleLicenseExp": "Licence expirée", + "titleServerVersion": "L'éditeur est mis à jour", + "titleUpdateVersion": "La version a été modifiée", + "txtIncorrectPwd": "Mot de passe incorrect", + "txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", + "warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.", + "warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualisez la page.", + "warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.", + "warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.
    Veuillez contacter votre administrateur pour obtenir un accès complet", + "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", + "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." } }, "Error": { + "convertationTimeoutText": "Délai de conversion expiré.", + "criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents", + "criticalErrorTitle": "Erreur", + "downloadErrorText": "Échec du téléchargement. ", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", + "errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Contactez le support.", + "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", + "errorDataRange": "Plage de données incorrecte.", + "errorDefaultMessage": "Code d'erreur: %1", "errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale", + "errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", + "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur.", + "errorKeyEncrypt": "Descripteur de clé inconnu", + "errorKeyExpire": "Descripteur de clés expiré", + "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", + "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", + "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.", + "errorUserDrop": "Impossible d'accéder au fichier.", + "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", + "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", + "notcriticalErrorTitle": "Avertissement", "openErrorText": "Une erreur s’est produite lors de l'ouverture du fichier", - "saveErrorText": "Une erreur s'est produite lors du chargement du fichier" + "saveErrorText": "Une erreur s'est produite lors du chargement du fichier", + "scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1", + "splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1", + "splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1", + "unknownErrorText": "Erreur inconnue.", + "uploadImageExtMessage": "Format d'image inconnu.", + "uploadImageFileCountMessage": "Aucune image chargée.", + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + }, + "LongActions": { + "applyChangesTextText": "Chargement des données en cours...", + "applyChangesTitleText": "Chargement des données", + "downloadTextText": "Téléchargement du document...", + "downloadTitleText": "Téléchargement du document", + "loadFontsTextText": "Chargement des données en cours...", + "loadFontsTitleText": "Chargement des données", + "loadFontTextText": "Chargement des données en cours...", + "loadFontTitleText": "Chargement des données", + "loadImagesTextText": "Chargement des images en cours...", + "loadImagesTitleText": "Chargement des images", + "loadImageTextText": "Chargement d'une image en cours...", + "loadImageTitleText": "Chargement d'une image", + "loadingDocumentTextText": "Chargement du document...", + "loadingDocumentTitleText": "Chargement du document", + "loadThemeTextText": "Chargement du thème en cours...", + "loadThemeTitleText": "Chargement du thème", + "openTextText": "Ouverture du document...", + "openTitleText": "Ouverture du document", + "printTextText": "Impression du document en cours...", + "printTitleText": "Impression du document", + "savePreparingText": "Préparation à l'enregistrement ", + "savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "saveTextText": "Enregistrement document en cours...", + "saveTitleText": "Enregistrement du document", + "textLoadingDocument": "Chargement du document", + "txtEditingMode": "Réglage mode d'édition...", + "uploadImageTextText": "Chargement d'une image en cours...", + "uploadImageTitleText": "Chargement d'une image", + "waitText": "Veuillez patienter..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "dlgLeaveTitleText": "Vous quittez l'application", + "leaveButtonText": "Quitter cette page", + "stayButtonText": "Rester sur cette page" }, "View": { "Add": { + "notcriticalErrorTitle": "Avertissement", "textAddLink": "Ajouter un lien", "textAddress": "Adresse", "textBack": "Retour", - "textCancel": "Annuler" + "textCancel": "Annuler", + "textColumns": "Colonnes", + "textComment": "Commentaire", + "textDefault": "Texte sélectionné", + "textDisplay": "Afficher", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textExternalLink": "Lien externe", + "textFirstSlide": "Première diapositive", + "textImage": "Image", + "textImageURL": "URL d'une image", + "textInsert": "Insertion", + "textInsertImage": "Insérer une image", + "textLastSlide": "Dernière diapositive", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkTo": "Lien vers", + "textLinkType": "Type de lien", + "textNextSlide": "Diapositive suivante", + "textOther": "Autre", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPreviousSlide": "Diapositive précédente", + "textRows": "Lignes", + "textScreenTip": "Info-bulle", + "textShape": "Forme", + "textSlide": "Diapositive", + "textSlideInThisPresentation": "Emplacement dans cette présentation", + "textSlideNumber": "Numéro de diapositive", + "textTable": "Tableau", + "textTableSize": "Taille du tableau", + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"" }, "Edit": { + "notcriticalErrorTitle": "Avertissement", + "textActualSize": "Taille réelle", "textAddCustomColor": "Ajouter une couleur personnalisée", "textAdditional": "Additionnel", "textAdditionalFormatting": "Mise en forme supplémentaire", @@ -54,19 +256,208 @@ "textBandedColumn": "Colonne à couleur alternée", "textBandedRow": "Ligne à couleur alternée", "textBefore": "Avant", + "textBlack": "A travers le noir", "textBorder": "Bordure", "textBottom": "Bas", "textBottomLeft": "En bas à gauche", "textBottomRight": "En bas à droite", - "textBringToForeground": "Mettre au premier plan" + "textBringToForeground": "Mettre au premier plan", + "textBullets": "Puces", + "textBulletsAndNumbers": "Puces et numérotation", + "textCaseSensitive": "Sensible à la casse", + "textCellMargins": "Marges de la cellule", + "textChart": "Graphique", + "textClock": "Horloge", + "textClockwise": "Dans le sens des aiguilles d'une montre", + "textColor": "Couleur", + "textCounterclockwise": "Dans le sens inverse des aiguilles d'une montre", + "textCover": "Couvrir", + "textCustomColor": "Couleur personnalisée", + "textDefault": "Texte sélectionné", + "textDelay": "Retard", + "textDeleteSlide": "Supprimer la diapositive", + "textDisplay": "Afficher", + "textDistanceFromText": "Distance du texte", + "textDistributeHorizontally": "Distribuer horizontalement", + "textDistributeVertically": "Distribuer verticalement", + "textDone": "Terminé", + "textDoubleStrikethrough": "Barré double", + "textDuplicateSlide": "Dupliquer la diapositive", + "textDuration": "Durée", + "textEditLink": "Modifier le lien", + "textEffect": "Effet", + "textEffects": "Effets", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textExternalLink": "Lien externe", + "textFade": "Fondu", + "textFill": "Remplissage", + "textFinalMessage": "La fin de l'aperçu de la diapositive. Cliquez pour quitter.", + "textFind": "Recherche", + "textFindAndReplace": "Rechercher et remplacer", + "textFirstColumn": "Première colonne", + "textFirstSlide": "Première diapositive", + "textFontColor": "Couleur de police", + "textFontColors": "Couleurs de police", + "textFonts": "Polices", + "textFromLibrary": "Image depuis la bibliothèque", + "textFromURL": "Image depuis URL", + "textHeaderRow": "Ligne d'en-tête", + "textHighlight": "Surligner les résultats", + "textHighlightColor": "Couleur de surlignage", + "textHorizontalIn": "Horizontal intérieur", + "textHorizontalOut": "Horizontal extérieur", + "textHyperlink": "Lien hypertexte", + "textImage": "Image", + "textImageURL": "URL d'image", + "textLastColumn": "Dernière colonne", + "textLastSlide": "Dernière diapositive", + "textLayout": "Mise en page", + "textLeft": "À gauche", + "textLetterSpacing": "Espacement entre les lettres", + "textLineSpacing": "Interligne", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkTo": "Lien vers", + "textLinkType": "Type de lien", + "textMoveBackward": "Déplacer vers l'arrière", + "textMoveForward": "Avancer", + "textNextSlide": "Diapositive suivante", + "textNone": "Aucun", + "textNoStyles": "Aucun style pour ce type de graphique.", + "textNoTextFound": "Le texte est introuvable", + "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "textNumbers": "Numérotation", + "textOpacity": "Opacité", + "textOptions": "Options", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPreviousSlide": "Diapositive précédente", + "textPt": "pt", + "textPush": "Expulsion", + "textRemoveChart": "Supprimer le graphique", + "textRemoveImage": "Supprimer l'image", + "textRemoveLink": "Supprimer le lien", + "textRemoveShape": "Supprimer la forme", + "textRemoveTable": "Supprimer le tableau", + "textReorder": "Réorganiser", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textReplaceImage": "Remplacer l’image", + "textRight": "À droite", + "textScreenTip": "Info-bulle", + "textSearch": "Recherche", + "textSec": "sec", + "textSelectObjectToEdit": "Sélectionnez l'objet à modifier", + "textSendToBackground": "Mettre en arrière-plan", + "textShape": "Forme", + "textSize": "Taille", + "textSlide": "Diapositive", + "textSlideInThisPresentation": "Emplacement dans cette présentation", + "textSlideNumber": "Numéro de diapositive", + "textSmallCaps": "Petites majuscules", + "textSmoothly": "Transition douce", + "textSplit": "Fractionner", + "textStartOnClick": "Démarrer en cliquant", + "textStrikethrough": "Barré", + "textStyle": "Style", + "textStyleOptions": "Options de style", + "textSubscript": "Indice", + "textSuperscript": "Exposant", + "textTable": "Tableau", + "textText": "Texte", + "textTheme": "Thème", + "textTop": "En haut", + "textTopLeft": "Haut à gauche", + "textTopRight": "Haut à droite", + "textTotalRow": "Ligne de total", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "Découvrir", + "textVerticalIn": "Vertical intérieur", + "textVerticalOut": "Vertical extérieur ", + "textWedge": "Coin", + "textWipe": "Effacement", + "textZoom": "Zoom", + "textZoomIn": "Zoom avant", + "textZoomOut": "Zoom arrière", + "textZoomRotate": "Zoom et rotation" }, "Settings": { - "textAbout": "À propos de", + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Écran large (16:9)", + "textAbout": "À propos", "textAddress": "Adresse :", "textApplication": "Application", "textApplicationSettings": "Paramètres de l'application", "textAuthor": "Auteur", - "textBack": "Retour" + "textBack": "Retour", + "textCaseSensitive": "Sensible à la casse", + "textCentimeter": "Centimètre", + "textCollaboration": "Collaboration", + "textColorSchemes": "Jeux de couleurs", + "textComment": "Commentaire", + "textCreated": "Créé", + "textDisableAll": "Désactiver tout", + "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", + "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", + "textDone": "Terminé", + "textDownload": "Télécharger", + "textDownloadAs": "Télécharger comme...", + "textEmail": "émail: ", + "textEnableAll": "Activer tout", + "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textFind": "Recherche", + "textFindAndReplace": "Rechercher et remplacer", + "textFindAndReplaceAll": "Rechercher et remplacer tout", + "textHelp": "Aide", + "textHighlight": "Surligner les résultats", + "textInch": "Pouce", + "textLastModified": "Dernière modification", + "textLastModifiedBy": "Dernière modification par", + "textLoading": "Chargement en cours...", + "textLocation": "Emplacement", + "textMacrosSettings": "Réglages macros", + "textNoTextFound": "Le texte est introuvable", + "textOwner": "Propriétaire", + "textPoint": "Point", + "textPoweredBy": "Réalisation", + "textPresentationInfo": "Infos sur présentation", + "textPresentationSettings": "Options présentation", + "textPresentationTitle": "Titre présentation", + "textPrint": "Imprimer", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textSearch": "Recherche", + "textSettings": "Paramètres", + "textShowNotification": "Montrer la notification", + "textSlideSize": "Taille de la diapositive", + "textSpellcheck": "Vérification de l'orthographe", + "textSubject": "Sujet", + "textTel": "tél:", + "textTitle": "Titre", + "textUnitOfMeasurement": "Unité de mesure", + "textUploaded": "Chargé", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Médian", + "txtScheme11": "Métro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origine", + "txtScheme16": "Papier", + "txtScheme17": "Solstice", + "txtScheme18": "Technique", + "txtScheme19": "Promenade", + "txtScheme2": "Nuances de gris", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civique", + "txtScheme6": "Rotonde", + "txtScheme7": "Capitaux", + "txtScheme8": "Flux", + "txtScheme9": "Fonderie" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 0e0dcd235c..73378aa15b 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -1,3 +1,463 @@ { - + "About": { + "textAbout": "Over", + "textAddress": "Adres", + "textBack": "Terug", + "textEmail": "E-mail", + "textPoweredBy": "Aangedreven door", + "textTel": "Tel.", + "textVersion": "Versie" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddComment": "Opmerking toevoegen", + "textAddReply": "Reactie toevoegen", + "textBack": "Terug", + "textCancel": "Annuleren", + "textCollaboration": "Samenwerking", + "textComments": "Opmerkingen", + "textDeleteComment": "Verwijder opmerking", + "textDeleteReply": "Reactie verwijderen", + "textDone": "Klaar", + "textEdit": "Bewerken", + "textEditComment": "Opmerking bewerken", + "textEditReply": "Reactie bewerken", + "textEditUser": "Gebruikers die het bestand bewerken:", + "textMessageDeleteComment": "Wil je deze opmerking verwijderen?", + "textMessageDeleteReply": "Wil je dit antwoord verwijderen?", + "textNoComments": "Dit document bevat geen opmerkingen", + "textReopen": "Heropenen", + "textResolve": "Oplossen", + "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", + "textUsers": "Gebruikers" + }, + "ThemeColorPalette": { + "textCustomColors": "Aangepaste kleuren", + "textStandartColors": "Standaardkleuren", + "textThemeColors": "Themakleuren" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken met behulp van het contextmenu worden alleen in het huidige bestand uitgevoerd.", + "menuAddComment": "Opmerking toevoegen", + "menuAddLink": "Koppeling toevoegen", + "menuCancel": "Annuleren", + "menuDelete": "Verwijderen", + "menuDeleteTable": "Tabel verwijderen", + "menuEdit": "Bewerken", + "menuMerge": "Samenvoegen", + "menuMore": "Meer", + "menuOpenLink": "Koppeling openen", + "menuSplit": "Splitsen", + "menuViewComment": "Opmerking bekijken", + "textColumns": "Kolommen", + "textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", + "textDoNotShowAgain": "Niet meer laten zien.", + "textRows": "Rijen" + }, + "Controller": { + "Main": { + "advDRMOptions": "Beveiligd bestand", + "advDRMPassword": "Wachtwoord", + "closeButtonText": "Bestand sluiten", + "criticalErrorTitle": "Fout", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorOpensource": "Met de gratis Community versie kunt u documenten openen om ze alleen te bekijken. Voor toegang tot mobiele webdocumentbewerkers is een commerciële licentie vereist.", + "errorProcessSaveResult": "Opslaan mislukt.", + "errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "leavePageText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "notcriticalErrorTitle": "Waarschuwing", + "SDK": { + "Chart": "Grafiek", + "Click to add first slide": "Klik om de eerste dia toe te voegen", + "Click to add notes": "Klik om notities toe te voegen", + "ClipArt": "Illustraties", + "Date and time": "Datum en tijd", + "Diagram": "Diagram", + "Diagram Title": "Grafiektitel", + "Footer": "Voettekst", + "Header": "Koptekst", + "Image": "Afbeelding", + "Loading": "Laden", + "Media": "Media", + "None": "Geen", + "Picture": "Afbeelding", + "Series": "Serie", + "Slide number": "Dianummer", + "Slide subtitle": "Subtitel dia", + "Slide text": "Tekst van dia", + "Slide title": "Diatitel", + "Table": "Tabel", + "X Axis": "X-as XAS", + "Y Axis": "Y-as", + "Your text here": "Hier tekst invoeren" + }, + "textAnonymous": "Anoniem", + "textBuyNow": "Website bezoeken", + "textClose": "Sluiten", + "textContactUs": "Contact opnemen met de verkoopafdeling", + "textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een prijsopgave.", + "textGuest": "Gast", + "textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", + "textNo": "Nee", + "textNoLicenseTitle": "Licentielimiet bereikt", + "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", + "textPaidFeature": "Betaalde functie", + "textRemember": "Bewaar mijn keuze", + "textYes": "Ja", + "titleLicenseExp": "Licentie verlopen", + "titleServerVersion": "Editor bijgewerkt", + "titleUpdateVersion": "Versie gewijzigd", + "txtIncorrectPwd": "Wachtwoord is onjuist", + "txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", + "warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie.", + "warnLicenseExp": "Uw licentie is verlopen. Gelieve deze bij te werken en de pagina te vernieuwen.", + "warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.", + "warnLicenseLimitedRenewed": "De licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.
    Neem contact op met uw administrator om volledige toegang te krijgen", + "warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.", + "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", + "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", + "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken." + } + }, + "Error": { + "convertationTimeoutText": "Time-out voor conversie overschreden.", + "criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.", + "criticalErrorTitle": "Fout", + "downloadErrorText": "Download mislukt.", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorBadImageUrl": "Afbeelding's URL is onjuist", + "errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met uw beheerder.
    Wanneer u op de 'OK' knop klikt, wordt u gevraagd om het document te downloaden.", + "errorDatabaseConnection": "Externe fout.
    Database verbindingsfout. Neem contact op met support.", + "errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", + "errorDataRange": "Onjuist gegevensbereik.", + "errorDefaultMessage": "Foutcode: %1", + "errorEditingDownloadas": "Er is een fout opgetreden tijdens het werken met het document.
    Gebruik de 'Download' optie om de reservekopie lokaal op te slaan.", + "errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Onbekende sleutelbeschrijver", + "errorKeyExpire": "Sleutelbeschrijver vervallen", + "errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.", + "errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.", + "errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "errorUpdateVersionOnDisconnect": "De internet verbinding is hersteld, en de versie van het bestand is gewijzigd.
    Voordat u verder kunt werken, download het bestand of kopieer de inhoud om er zeker van te zijn dat er niets verloren gaat, en herlaad vervolgens deze pagina.", + "errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", + "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", + "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
    maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", + "notcriticalErrorTitle": "Waarschuwing", + "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", + "saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.", + "splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1", + "splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1", + "splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1", + "unknownErrorText": "Onbekende fout.", + "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", + "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + }, + "LongActions": { + "applyChangesTextText": "Gegevens worden geladen...", + "applyChangesTitleText": "Gegevens worden geladen", + "downloadTextText": "Document wordt gedownload...", + "downloadTitleText": "Document wordt gedownload", + "loadFontsTextText": "Gegevens worden geladen...", + "loadFontsTitleText": "Gegevens worden geladen", + "loadFontTextText": "Gegevens worden geladen...", + "loadFontTitleText": "Gegevens worden geladen", + "loadImagesTextText": "Afbeeldingen worden geladen...", + "loadImagesTitleText": "Afbeeldingen worden geladen", + "loadImageTextText": "Afbeelding wordt geladen...", + "loadImageTitleText": "Afbeelding wordt geladen", + "loadingDocumentTextText": "Document wordt geladen...", + "loadingDocumentTitleText": "Document wordt geladen", + "loadThemeTextText": "Thema wordt geladen...", + "loadThemeTitleText": "Thema wordt geladen", + "openTextText": "Document wordt geopend...", + "openTitleText": "Document wordt geopend", + "printTextText": "Document wordt afgedrukt...", + "printTitleText": "Document wordt afgedrukt", + "savePreparingText": "Klaarmaken om op te slaan", + "savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...", + "saveTextText": "Document wordt opgeslagen...", + "saveTitleText": "Document wordt opgeslagen", + "textLoadingDocument": "Document wordt geladen", + "txtEditingMode": "Bewerkmodus instellen...", + "uploadImageTextText": "Afbeelding wordt geüpload...", + "uploadImageTitleText": "Afbeelding wordt geüpload", + "waitText": "Een moment geduld..." + }, + "Toolbar": { + "dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "dlgLeaveTitleText": "U verlaat de applicatie", + "leaveButtonText": "Pagina verlaten", + "stayButtonText": "Op deze pagina blijven" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddLink": "Koppeling toevoegen", + "textAddress": "Adres", + "textBack": "Terug", + "textCancel": "Annuleren", + "textColumns": "Kolommen", + "textComment": "Opmerking", + "textDefault": "Geselecteerde tekst", + "textDisplay": "Weergeven", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textExternalLink": "Externe koppeling", + "textFirstSlide": "Eerste dia", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInsert": "Invoegen", + "textInsertImage": "Afbeelding invoegen", + "textLastSlide": "Laatste dia", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkTo": "Koppelen aan", + "textLinkType": "Type koppeling", + "textNextSlide": "Volgende dia", + "textOther": "Overige", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPreviousSlide": "Vorige dia", + "textRows": "Rijen", + "textScreenTip": "Schermtip", + "textShape": "Vorm", + "textSlide": "Dia", + "textSlideInThisPresentation": "Dia in deze presentatie", + "textSlideNumber": "Dianummer", + "textTable": "Tabel", + "textTableSize": "Tabelgrootte", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"" + }, + "Edit": { + "notcriticalErrorTitle": "Waarschuwing", + "textActualSize": "Ware grootte", + "textAddCustomColor": "Aangepaste kleur toevoegen", + "textAdditional": "Extra", + "textAdditionalFormatting": "Aanvullende opmaak", + "textAddress": "Adres", + "textAfter": "Na", + "textAlign": "Uitlijnen", + "textAlignBottom": "Onder uitlijnen", + "textAlignCenter": "Centreren", + "textAlignLeft": "Links uitlijnen", + "textAlignMiddle": "Centreren", + "textAlignRight": "Rechts uitlijnen", + "textAlignTop": "Boven uitlijnen", + "textAllCaps": "Allemaal hoofdletters", + "textApplyAll": "Toepassen op alle dia's", + "textAuto": "Automatisch", + "textBack": "Terug", + "textBandedColumn": "Gestreepte kolom", + "textBandedRow": "Gestreepte rij", + "textBefore": "Voor", + "textBlack": "Door zwart", + "textBorder": "Rand", + "textBottom": "Onder", + "textBottomLeft": "Linksonder", + "textBottomRight": "Rechtsonder", + "textBringToForeground": "Naar voorgrond brengen", + "textBullets": "Opsommingstekens", + "textBulletsAndNumbers": "Opsommingstekens en nummers", + "textCaseSensitive": "Hoofdlettergevoelig", + "textCellMargins": "Celmarges", + "textChart": "Grafiek", + "textClock": "Klok", + "textClockwise": "Rechtsom", + "textColor": "Kleur", + "textCounterclockwise": "Linksom", + "textCover": "Bedekken", + "textCustomColor": "Aangepaste kleur", + "textDefault": "Geselecteerde tekst", + "textDelay": "Vertragen", + "textDeleteSlide": "Dia verwijderen", + "textDisplay": "Weergeven", + "textDistanceFromText": "Afstand van tekst", + "textDistributeHorizontally": "Horizontaal verdelen", + "textDistributeVertically": "Verticaal verdelen", + "textDone": "Klaar", + "textDoubleStrikethrough": "Dubbel doorhalen", + "textDuplicateSlide": "Dia dupliceren", + "textDuration": "Duur", + "textEditLink": "Koppeling bewerken", + "textEffect": "Effect", + "textEffects": "Effecten", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textExternalLink": "Externe koppeling", + "textFade": "Vervagen", + "textFill": "Vullen", + "textFinalMessage": "Einde van diavoorbeeld. Klik om af te sluiten.", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFirstColumn": "Eerste kolom", + "textFirstSlide": "Eerste dia", + "textFontColor": "Kleur lettertype", + "textFontColors": "Lettertype kleuren", + "textFonts": "Lettertypen", + "textFromLibrary": "Afbeelding uit bibliotheek", + "textFromURL": "Afbeelding van URL", + "textHeaderRow": "Koprij", + "textHighlight": "Resultaten markeren", + "textHighlightColor": "Markeringskleur", + "textHorizontalIn": "Horizontaal naar binnen", + "textHorizontalOut": "Horizontaal naar buiten", + "textHyperlink": "Hyperlink", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textLastColumn": "Laatste kolom", + "textLastSlide": "Laatste dia", + "textLayout": "Pagina-indeling", + "textLeft": "Links", + "textLetterSpacing": "Letterafstand", + "textLineSpacing": "Regelafstand", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkTo": "Koppelen aan", + "textLinkType": "Type koppeling", + "textMoveBackward": "Naar achter verplaatsen", + "textMoveForward": "Naar voren verplaatsen", + "textNextSlide": "Volgende dia", + "textNone": "Geen", + "textNoStyles": "Geen stijlen voor dit type grafiek.", + "textNoTextFound": "Tekst niet gevonden", + "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textNumbers": "Nummers", + "textOpacity": "Ondoorzichtigheid", + "textOptions": "Opties", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPreviousSlide": "Vorige dia", + "textPt": "pt", + "textPush": "Duwen", + "textRemoveChart": "Grafiek verwijderen", + "textRemoveImage": "Afbeelding verwijderen", + "textRemoveLink": "Koppeling verwijderen", + "textRemoveShape": "Vorm verwijderen", + "textRemoveTable": "Tabel verwijderen", + "textReorder": "Opnieuw ordenen", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textReplaceImage": "Afbeelding vervangen", + "textRight": "Rechts", + "textScreenTip": "Schermtip", + "textSearch": "Zoeken", + "textSec": "s", + "textSelectObjectToEdit": "Selecteer object om te bewerken", + "textSendToBackground": "Naar achtergrond sturen", + "textShape": "Vorm", + "textSize": "Grootte", + "textSlide": "Dia", + "textSlideInThisPresentation": "Dia in deze presentatie", + "textSlideNumber": "Dianummer", + "textSmallCaps": "Kleine hoofdletters", + "textSmoothly": "Vloeiend", + "textSplit": "Splitsen", + "textStartOnClick": "Bij klik starten", + "textStrikethrough": "Doorhalen", + "textStyle": "Stijl", + "textStyleOptions": "Stijlopties", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Tabel", + "textText": "Tekst", + "textTheme": "Thema", + "textTop": "Boven", + "textTopLeft": "Linksboven", + "textTopRight": "Rechtsboven", + "textTotalRow": "Totaalrij", + "textTransition": "Overgang", + "textType": "Type", + "textUnCover": "Onthullen", + "textVerticalIn": "Verticaal naar binnen", + "textVerticalOut": "Verticaal naar buiten", + "textWedge": "Wig", + "textWipe": "Wissen", + "textZoom": "Zoomen", + "textZoomIn": "Inzoomen", + "textZoomOut": "Uitzoomen", + "textZoomRotate": "Zoomen en draaien" + }, + "Settings": { + "mniSlideStandard": "Standaard (4:3)", + "mniSlideWide": "Breedbeeld (16:9)", + "textAbout": "Over", + "textAddress": "Adres:", + "textApplication": "Applicatie", + "textApplicationSettings": "Applicatie-instellingen", + "textAuthor": "Auteur", + "textBack": "Terug", + "textCaseSensitive": "Hoofdlettergevoelig", + "textCentimeter": "Centimeter", + "textCollaboration": "Samenwerking", + "textColorSchemes": "Kleurschema's", + "textComment": "Opmerking", + "textCreated": "Aangemaakt", + "textDisableAll": "Alles uitschakelen", + "textDisableAllMacrosWithNotification": "Alle macro's met notificaties uitschakelen", + "textDisableAllMacrosWithoutNotification": "Alle macro's met notificatie uitschakelen", + "textDone": "Klaar", + "textDownload": "Downloaden", + "textDownloadAs": "Downloaden als...", + "textEmail": "E-mail:", + "textEnableAll": "Alles inschakelen", + "textEnableAllMacrosWithoutNotification": "Alle macro's inschakelen zonder notificatie", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFindAndReplaceAll": "Zoek en vervang alles", + "textHelp": "Help", + "textHighlight": "Resultaten markeren", + "textInch": "Inch", + "textLastModified": "Laatst aangepast", + "textLastModifiedBy": "Laatst aangepast door", + "textLoading": "Bezig met laden...", + "textLocation": "Locatie", + "textMacrosSettings": "Macro instellingen", + "textNoTextFound": "Tekst niet gevonden", + "textOwner": "Eigenaar", + "textPoint": "Punt", + "textPoweredBy": "Aangedreven door", + "textPresentationInfo": "Informatie over presentatie", + "textPresentationSettings": "Presentatie-instellingen", + "textPresentationTitle": "Presentatietitel", + "textPrint": "Afdrukken", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textSearch": "Zoeken", + "textSettings": "Instellingen", + "textShowNotification": "Notificatie weergeven", + "textSlideSize": "Diagrootte", + "textSpellcheck": "Spellingscontrole", + "textSubject": "Onderwerp", + "textTel": "tel:", + "textTitle": "Titel", + "textUnitOfMeasurement": "Maateenheid", + "textUploaded": "Geüpload", + "textVersion": "Versie", + "txtScheme1": "Kantoor", + "txtScheme10": "Mediaan", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Overvloedig", + "txtScheme14": "Erker", + "txtScheme15": "Oorsprong", + "txtScheme16": "Papier", + "txtScheme17": "Zonnewende", + "txtScheme18": "Technisch", + "txtScheme19": "Tocht", + "txtScheme2": "Grijstinten", + "txtScheme22": "Nieuw kantoor", + "txtScheme3": "Top", + "txtScheme4": "Aspect", + "txtScheme5": "Civiel", + "txtScheme6": "Concours", + "txtScheme7": "Vermogen", + "txtScheme8": "Stroom", + "txtScheme9": "Gieterij" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 0e0dcd235c..00881e3f8b 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -1,3 +1,128 @@ { - + "About": { + "textAbout": "Sobre", + "textAddress": "Endereço", + "textBack": "Voltar" + }, + "Common": { + "Collaboration": { + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textCollaboration": "Colaboração", + "textComments": "Comentários", + "textDeleteComment": "Excluir comentários", + "textDeleteReply": "Excluir resposta" + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar Link", + "menuCancel": "Cancelar", + "menuDelete": "Excluir", + "menuDeleteTable": "Excluir tabela", + "textColumns": "Colunas", + "textCopyCutPasteActions": "Copiar, Cortar e Colar" + }, + "Controller": { + "Main": { + "closeButtonText": "Fechar Arquivo", + "SDK": { + "Chart": "Gráfico", + "Click to add first slide": "Clique para adicionar o primeiro slide", + "Click to add notes": "Clique para adicionar notas", + "ClipArt": "Clip Art", + "Date and time": "Data e Hora", + "Diagram Title": "Título do Gráfico" + }, + "textAnonymous": "Anônimo", + "textClose": "Fechar", + "textContactUs": "Entre em contato com o departamento de vendas" + } + }, + "Error": { + "convertationTimeoutText": "Tempo limite de conversão excedido.", + "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
    Ao clicar no botão 'OK', você será solicitado a baixar o documento.", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Use a opção 'Download' para salvar a cópia de backup do arquivo localmente.", + "errorViewerDisconnect": "A conexão foi perdida. Você ainda pode ver o documento,
    mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.", + "openErrorText": "Ocorreu um erro ao abrir o arquivo", + "saveErrorText": "Ocorreu um erro ao gravar o arquivo" + }, + "View": { + "Add": { + "textAddLink": "Adicionar Link", + "textAddress": "Endereço", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textColumns": "Colunas", + "textComment": "Comente" + }, + "Edit": { + "textActualSize": "Tamanho atual", + "textAddCustomColor": "Adicionar Cor Personalizada", + "textAdditional": "Adicional", + "textAdditionalFormatting": "Formatação adicional", + "textAddress": "Endereço", + "textAfter": "Depois", + "textAlign": "Alinhar", + "textAlignBottom": "Alinhar à parte inferior", + "textAlignCenter": "Alinhar ao centro", + "textAlignLeft": "Alinhar à esquerda", + "textAlignMiddle": "Alinhar ao centro", + "textAlignRight": "Alinhar à direita", + "textAlignTop": "Alinhar em cima", + "textAllCaps": "Todas maiúsculas", + "textApplyAll": "Aplicar a todos os slides", + "textAuto": "Automático", + "textBack": "Voltar", + "textBandedColumn": "Coluna em faixa", + "textBandedRow": "Linha de Faixa", + "textBefore": "Antes", + "textBorder": "Borda", + "textBottom": "Inferior", + "textBottomLeft": "Inferior esquerdo", + "textBottomRight": "Inferior direito", + "textBringToForeground": "Trazer para primeiro plano", + "textBullets": "Marcadores", + "textBulletsAndNumbers": "Marcadores e Numerações", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCellMargins": "Margens da célula", + "textChart": "Gráfico", + "textClock": "Relógio", + "textClockwise": "Sentido horário", + "textColor": "Cor", + "textCounterclockwise": "Sentido anti-horário", + "textCover": "Folha de rosto", + "textCustomColor": "Personalizar cor", + "textDelay": "Atraso", + "textDeleteSlide": "Excluir slide", + "textZoom": "Zoom", + "textZoomIn": "Ampliar", + "textZoomOut": "Reduzir", + "textZoomRotate": "Zoom e Rotação" + }, + "Settings": { + "textAbout": "Sobre", + "textAddress": "Endereço:", + "textApplication": "Aplicativo", + "textApplicationSettings": "Configurações de Aplicativo", + "textAuthor": "Autor", + "textBack": "Voltar", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comente", + "textCreated": "Criado", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 1e68a359e6..2b50efd6b3 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -1,574 +1,463 @@ { - "Common.Controllers.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Controllers.Collaboration.textCancel": "Revocare", - "Common.Controllers.Collaboration.textDeleteComment": "Ștergere comentariu", - "Common.Controllers.Collaboration.textDeleteReply": "Ștergere răspuns", - "Common.Controllers.Collaboration.textDone": "Gata", - "Common.Controllers.Collaboration.textEdit": "Editare", - "Common.Controllers.Collaboration.textEditUser": "Fișierul este editat de către:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", - "Common.Controllers.Collaboration.textReopen": "Redeschidere", - "Common.Controllers.Collaboration.textResolve": "Rezolvare", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Culori particularizate", - "Common.UI.ThemeColorPalette.textStandartColors": "Culori standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Culori temă", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Views.Collaboration.textBack": "Înapoi", - "Common.Views.Collaboration.textCancel": "Revocare", - "Common.Views.Collaboration.textCollaboration": "Colaborare", - "Common.Views.Collaboration.textDone": "Gata", - "Common.Views.Collaboration.textEditReply": "Editare răspuns", - "Common.Views.Collaboration.textEditUsers": "Utilizatori", - "Common.Views.Collaboration.textEditСomment": "Editare comentariu", - "Common.Views.Collaboration.textNoComments": "Prezentarea nu conține comentarii", - "Common.Views.Collaboration.textСomments": "Comentarii", - "PE.Controllers.AddContainer.textImage": "Imagine", - "PE.Controllers.AddContainer.textLink": "Link", - "PE.Controllers.AddContainer.textOther": "Altele", - "PE.Controllers.AddContainer.textShape": "Forma", - "PE.Controllers.AddContainer.textSlide": "Diapozitiv", - "PE.Controllers.AddContainer.textTable": "Tabel", - "PE.Controllers.AddImage.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.AddImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "PE.Controllers.AddImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.AddLink.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.AddLink.textDefault": "Textul selectat", - "PE.Controllers.AddLink.textExternalLink": "Link extern", - "PE.Controllers.AddLink.textFirst": "Primul diapozitiv", - "PE.Controllers.AddLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Controllers.AddLink.textLast": "Ultimul diapozitiv", - "PE.Controllers.AddLink.textNext": "Diapozitivul următor", - "PE.Controllers.AddLink.textPrev": "Diapozitivul anterior", - "PE.Controllers.AddLink.textSlide": "Diapozitiv", - "PE.Controllers.AddLink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.AddOther.textCancel": "Revocare", - "PE.Controllers.AddOther.textContinue": "Continuare", - "PE.Controllers.AddOther.textDelete": "Ștergere", - "PE.Controllers.AddOther.textDeleteDraft": "Sunteți sigur că doriți să stergeți schiță?", - "PE.Controllers.AddTable.textCancel": "Revocare", - "PE.Controllers.AddTable.textColumns": "Coloane", - "PE.Controllers.AddTable.textRows": "Rânduri", - "PE.Controllers.AddTable.textTableSize": "Dimensiune tabel", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", - "PE.Controllers.DocumentHolder.menuAddComment": "Adaugă comentariu", - "PE.Controllers.DocumentHolder.menuAddLink": "Adăugare link", - "PE.Controllers.DocumentHolder.menuCopy": "Copiere", - "PE.Controllers.DocumentHolder.menuCut": "Decupare", - "PE.Controllers.DocumentHolder.menuDelete": "Ștergere", - "PE.Controllers.DocumentHolder.menuEdit": "Editare", - "PE.Controllers.DocumentHolder.menuMore": "Mai multe", - "PE.Controllers.DocumentHolder.menuOpenLink": "Deschidere link", - "PE.Controllers.DocumentHolder.menuPaste": "Lipire", - "PE.Controllers.DocumentHolder.menuViewComment": "Vizualizarea comentariilor", - "PE.Controllers.DocumentHolder.sheetCancel": "Revocare", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Nu se mai afișează ", - "PE.Controllers.DocumentPreview.txtFinalMessage": "Previzualizarea s-a terminat. Atingeți pentru ieșiere.", - "PE.Controllers.EditContainer.textChart": "Diagramă", - "PE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "PE.Controllers.EditContainer.textImage": "Imagine", - "PE.Controllers.EditContainer.textSettings": "Setări", - "PE.Controllers.EditContainer.textShape": "Forma", - "PE.Controllers.EditContainer.textSlide": "Diapozitiv", - "PE.Controllers.EditContainer.textTable": "Tabel", - "PE.Controllers.EditContainer.textText": "Text", - "PE.Controllers.EditImage.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.EditImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "PE.Controllers.EditImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.EditLink.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.EditLink.textDefault": "Textul selectat", - "PE.Controllers.EditLink.textExternalLink": "Link extern", - "PE.Controllers.EditLink.textFirst": "Primul diapozitiv", - "PE.Controllers.EditLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Controllers.EditLink.textLast": "Ultimul diapozitiv", - "PE.Controllers.EditLink.textNext": "Diapozitivul următor", - "PE.Controllers.EditLink.textPrev": "Diapozitivul anterior", - "PE.Controllers.EditLink.textSlide": "Diapozitiv", - "PE.Controllers.EditLink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.EditSlide.textSec": "t", - "PE.Controllers.EditText.textAuto": "Auto", - "PE.Controllers.EditText.textFonts": "Fonturi", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "Introduceți parola:", - "PE.Controllers.Main.advDRMOptions": "Fișierul protejat", - "PE.Controllers.Main.advDRMPassword": "Parola", - "PE.Controllers.Main.applyChangesTextText": "Încărcarea datelor...", - "PE.Controllers.Main.applyChangesTitleText": "Încărcare date", - "PE.Controllers.Main.closeButtonText": "Închide fișierul", - "PE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", - "PE.Controllers.Main.criticalErrorExtText": "Faceți click pe butonul'OK' pentru a vă întoarce la lista documente. ", - "PE.Controllers.Main.criticalErrorTitle": "Eroare", - "PE.Controllers.Main.downloadErrorText": "Descărcare eșuată.", - "PE.Controllers.Main.downloadTextText": "Descărcarea prezentării...", - "PE.Controllers.Main.downloadTitleText": "Descărcarea prezentării", - "PE.Controllers.Main.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", - "PE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Imposibil de editat mai departe.", - "PE.Controllers.Main.errorConnectToServer": "Salvarea documentului nu poate fi finalizată. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", - "PE.Controllers.Main.errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", - "PE.Controllers.Main.errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", - "PE.Controllers.Main.errorDataRange": "Zonă de date incorectă.", - "PE.Controllers.Main.errorDefaultMessage": "Codul de eroare: %1", - "PE.Controllers.Main.errorEditingDownloadas": "S-a produs o eroare în timpul procesării documentului.
    Folosiți funcția de descărcare pentru a salva copia de rezervă a fișierului pe PC.", - "PE.Controllers.Main.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", - "PE.Controllers.Main.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", - "PE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", - "PE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", - "PE.Controllers.Main.errorOpensource": "Versiunea gratuită a ediției Community include numai vizualizarea fișierilor. Licența comercială permite utilizarea editoarelor pentru dispozitivele mobile.", - "PE.Controllers.Main.errorProcessSaveResult": "Salvarea a eșuat.", - "PE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", - "PE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", - "PE.Controllers.Main.errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", - "PE.Controllers.Main.errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", - "PE.Controllers.Main.errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", - "PE.Controllers.Main.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", - "PE.Controllers.Main.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", - "PE.Controllers.Main.errorUsersExceed": "Limita de utilizatori a fost atinsă", - "PE.Controllers.Main.errorViewerDisconnect": "Conexiunea a fost pierdută. Puteți vizualiza documentul,
    dar nu puteți să-l descărcați până când se restabilește conexiunea și se reîmprospătează pagină.", - "PE.Controllers.Main.leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe 'Rămâi în pagină' și așteptați salvarea automată. Faceți clic pe 'Părăsește aceasta pagina' ca să renunțați la toate modificările nesalvate.", - "PE.Controllers.Main.loadFontsTextText": "Încărcarea datelor...", - "PE.Controllers.Main.loadFontsTitleText": "Încărcare date", - "PE.Controllers.Main.loadFontTextText": "Încărcarea datelor...", - "PE.Controllers.Main.loadFontTitleText": "Încărcare date", - "PE.Controllers.Main.loadImagesTextText": "Încărcarea imaginilor...", - "PE.Controllers.Main.loadImagesTitleText": "Încărcare imagini", - "PE.Controllers.Main.loadImageTextText": "Încărcarea imaginii...", - "PE.Controllers.Main.loadImageTitleText": "Încărcare imagine", - "PE.Controllers.Main.loadingDocumentTextText": "Încărcarea prezentării...", - "PE.Controllers.Main.loadingDocumentTitleText": "Încărcare prezentare", - "PE.Controllers.Main.loadThemeTextText": "Încărcarea temei...", - "PE.Controllers.Main.loadThemeTitleText": "Încărcare temă", - "PE.Controllers.Main.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.Main.openErrorText": "Eroare la deschiderea fișierului.", - "PE.Controllers.Main.openTextText": "Deschiderea fișierului...", - "PE.Controllers.Main.openTitleText": "Deschidere fișier", - "PE.Controllers.Main.printTextText": "Imprimarea documentului...", - "PE.Controllers.Main.printTitleText": "Imprimarea documentului", - "PE.Controllers.Main.reloadButtonText": "Reîmprospătare pagina", - "PE.Controllers.Main.requestEditFailedMessageText": "La moment, alcineva lucrează la documentul. Vă rugăm să încercați mai târziu.", - "PE.Controllers.Main.requestEditFailedTitleText": "Acces refuzat", - "PE.Controllers.Main.saveErrorText": "S-a produs o eroare în timpul încercării de salvare a fișierului.", - "PE.Controllers.Main.savePreparingText": "Pregătire pentru salvare", - "PE.Controllers.Main.savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", - "PE.Controllers.Main.saveTextText": "Salvarea documentului...", - "PE.Controllers.Main.saveTitleText": "Salvare document", - "PE.Controllers.Main.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", - "PE.Controllers.Main.splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", - "PE.Controllers.Main.splitMaxColsErrorText": "Numărul maxim de coloane este de %1", - "PE.Controllers.Main.splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", - "PE.Controllers.Main.textAnonymous": "Anonim", - "PE.Controllers.Main.textBack": "Înapoi", - "PE.Controllers.Main.textBuyNow": "Vizitarea site-ul Web", - "PE.Controllers.Main.textCancel": "Revocare", - "PE.Controllers.Main.textClose": "Închidere", - "PE.Controllers.Main.textCloseTip": "Atingeți pentru a închide sfat.", - "PE.Controllers.Main.textContactUs": "Contactați Departamentul de Vânzări", - "PE.Controllers.Main.textCustomLoader": "Vă rugăm să rețineți că conform termenilor de licență nu aveți dreptul să modificați programul de încărcare.
    Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", - "PE.Controllers.Main.textDone": "Gata", - "PE.Controllers.Main.textGuest": "Invitat", - "PE.Controllers.Main.textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", - "PE.Controllers.Main.textLoadingDocument": "Încărcare prezentare", - "PE.Controllers.Main.textNo": "Nu", - "PE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", - "PE.Controllers.Main.textOK": "OK", - "PE.Controllers.Main.textPaidFeature": "Funcția contra plată", - "PE.Controllers.Main.textPassword": "Parola", - "PE.Controllers.Main.textPreloader": "Se incarca...", - "PE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", - "PE.Controllers.Main.textShape": "Forma", - "PE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", - "PE.Controllers.Main.textUsername": "Nume de utilizator", - "PE.Controllers.Main.textYes": "Da", - "PE.Controllers.Main.titleLicenseExp": "Licența a expirat", - "PE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", - "PE.Controllers.Main.txtAddFirstSlide": "Faceți clic pentru a adăuga primul diapozitiv", - "PE.Controllers.Main.txtArt": "Textul dvs. aici", - "PE.Controllers.Main.txtBasicShapes": "Forme de bază", - "PE.Controllers.Main.txtButtons": "Butoane", - "PE.Controllers.Main.txtCallouts": "Explicații", - "PE.Controllers.Main.txtCharts": "Diagrame", - "PE.Controllers.Main.txtClipArt": "Miniatura", - "PE.Controllers.Main.txtDateTime": "Dată și oră", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Titlu diagramă", - "PE.Controllers.Main.txtEditingMode": "Setare modul de editare...", - "PE.Controllers.Main.txtFiguredArrows": "Săgeți în forme diferite", - "PE.Controllers.Main.txtFooter": "Subsol", - "PE.Controllers.Main.txtHeader": "Antet", - "PE.Controllers.Main.txtImage": "Imagine", - "PE.Controllers.Main.txtLines": "Linii", - "PE.Controllers.Main.txtMath": "Matematica", - "PE.Controllers.Main.txtMedia": "Media", - "PE.Controllers.Main.txtNeedSynchronize": "Aveți actualizări disponibile", - "PE.Controllers.Main.txtPicture": "Imagine", - "PE.Controllers.Main.txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", - "PE.Controllers.Main.txtRectangles": "Dreptunghiuri", - "PE.Controllers.Main.txtSeries": "Serie", - "PE.Controllers.Main.txtSldLtTBlank": "Necompletat", - "PE.Controllers.Main.txtSldLtTChart": "Diagramă", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagrama și text", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Miniatura și text", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Miniatura și text vertical", - "PE.Controllers.Main.txtSldLtTCust": "Particularizat", - "PE.Controllers.Main.txtSldLtTDgm": "Diagrama", - "PE.Controllers.Main.txtSldLtTFourObj": "Patru obiecte", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media și text", - "PE.Controllers.Main.txtSldLtTObj": "Titlu și obiect", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Obiect și două obiecte ", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Obiect și text", - "PE.Controllers.Main.txtSldLtTObjOnly": "Obiect", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Obiectul deasupra textului", - "PE.Controllers.Main.txtSldLtTObjTx": "Tutlu, obiect și legenda", - "PE.Controllers.Main.txtSldLtTPicTx": "Imagine și legenda", - "PE.Controllers.Main.txtSldLtTSecHead": "Antet secțiune", - "PE.Controllers.Main.txtSldLtTTbl": "Tabel", - "PE.Controllers.Main.txtSldLtTTitle": "Titlu", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Numai titlu", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Text în două coloane", - "PE.Controllers.Main.txtSldLtTTwoObj": "Două obiecte", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Două obiecte și obiect", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Două obiecte și text", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Două obiecte deasupra textului", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Două texte și două obiecte", - "PE.Controllers.Main.txtSldLtTTx": "Text", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Text și diagrama", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text și miniaturi", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Text și Media", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Text și obiect", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text și două obiecte", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Textul deasupra obiectului", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titlu vertical și text", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titlu vertical și text deasupra diagramei", - "PE.Controllers.Main.txtSldLtTVertTx": "Text vertical", - "PE.Controllers.Main.txtSlideNumber": "Număr diapozitiv", - "PE.Controllers.Main.txtSlideSubtitle": "Subtitrare diapozitiv", - "PE.Controllers.Main.txtSlideText": "Text diapozitiv", - "PE.Controllers.Main.txtSlideTitle": "Titlu diapozitiv", - "PE.Controllers.Main.txtStarsRibbons": "Stele și forme ondulate", - "PE.Controllers.Main.txtXAxis": "Axa X", - "PE.Controllers.Main.txtYAxis": "Axa Y", - "PE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", - "PE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "PE.Controllers.Main.uploadImageSizeMessage": "Dimensiunea imaginii depășește limita permisă.", - "PE.Controllers.Main.uploadImageTextText": "Încărcarea imaginii...", - "PE.Controllers.Main.uploadImageTitleText": "Încărcare imagine", - "PE.Controllers.Main.waitText": "Vă rugăm să așteptați...", - "PE.Controllers.Main.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Pentru detalii, contactați administratorul dvs.", - "PE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.
    Licența urmează să fie reînnoită iar pagina reîmprospătată.", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
    Nu aveți acces la funcții de editare a documentului.
    Contactați administratorul dvs. de rețeea.", - "PE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
    Funcțiile de editare sunt cu acces limitat.
    Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", - "PE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", - "PE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "PE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", - "PE.Controllers.Search.textNoTextFound": "Textul nu a fost găsit", - "PE.Controllers.Search.textReplaceAll": "Înlocuire peste tot", - "PE.Controllers.Settings.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.Settings.txtLoading": "Se incarca...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe 'Rămâi în pagină' și așteptați salvarea automată. Faceți clic pe 'Părăsește aceasta pagina' ca să renunțați la toate modificările nesalvate.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", - "PE.Controllers.Toolbar.leaveButtonText": "Părăsește această pagina", - "PE.Controllers.Toolbar.stayButtonText": "Rămâi în pagină", - "PE.Views.AddImage.textAddress": "Adresă", - "PE.Views.AddImage.textBack": "Înapoi", - "PE.Views.AddImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "PE.Views.AddImage.textFromURL": "Imaginea prin URL", - "PE.Views.AddImage.textImageURL": "URL-ul imaginii", - "PE.Views.AddImage.textInsertImage": "Inserare imagine", - "PE.Views.AddImage.textLinkSettings": "Configurarea link", - "PE.Views.AddLink.textBack": "Înapoi", - "PE.Views.AddLink.textDisplay": "Afișare", - "PE.Views.AddLink.textExternalLink": "Link extern", - "PE.Views.AddLink.textFirst": "Primul diapozitiv", - "PE.Views.AddLink.textInsert": "Inserare", - "PE.Views.AddLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Views.AddLink.textLast": "Ultimul diapozitiv", - "PE.Views.AddLink.textLink": "Link", - "PE.Views.AddLink.textLinkSlide": "Legătură la", - "PE.Views.AddLink.textLinkType": "Tip link", - "PE.Views.AddLink.textNext": "Diapozitivul următor", - "PE.Views.AddLink.textNumber": "Număr diapozitiv", - "PE.Views.AddLink.textPrev": "Diapozitivul anterior", - "PE.Views.AddLink.textTip": "Sfaturi ecran", - "PE.Views.AddOther.textAddComment": "Adaugă comentariu", - "PE.Views.AddOther.textBack": "Înapoi", - "PE.Views.AddOther.textComment": "Comentariu", - "PE.Views.AddOther.textDisplay": "Afișare", - "PE.Views.AddOther.textDone": "Gata", - "PE.Views.AddOther.textExternalLink": "Link extern", - "PE.Views.AddOther.textFirst": "Primul diapozitiv", - "PE.Views.AddOther.textInsert": "Inserare", - "PE.Views.AddOther.textInternalLink": "Diapozitivul din această prezentare", - "PE.Views.AddOther.textLast": "Ultimul diapozitiv", - "PE.Views.AddOther.textLink": "Link", - "PE.Views.AddOther.textLinkSlide": "Legătură la", - "PE.Views.AddOther.textLinkType": "Tip link", - "PE.Views.AddOther.textNext": "Diapozitivul următor", - "PE.Views.AddOther.textNumber": "Număr diapozitiv", - "PE.Views.AddOther.textPrev": "Diapozitivul anterior", - "PE.Views.AddOther.textTable": "Tabel", - "PE.Views.AddOther.textTip": "Sfaturi ecran", - "PE.Views.EditChart.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditChart.textAlign": "Aliniere", - "PE.Views.EditChart.textAlignBottom": "Aliniere jos", - "PE.Views.EditChart.textAlignCenter": "Aliniere la centru", - "PE.Views.EditChart.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditChart.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditChart.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditChart.textAlignTop": "Aliniere sus", - "PE.Views.EditChart.textBack": "Înapoi", - "PE.Views.EditChart.textBackward": "Mutare în ultimul plan", - "PE.Views.EditChart.textBorder": "Bordură", - "PE.Views.EditChart.textColor": "Culoare", - "PE.Views.EditChart.textCustomColor": "Culoare particularizată", - "PE.Views.EditChart.textFill": "Umplere", - "PE.Views.EditChart.textForward": "Deplasare înainte", - "PE.Views.EditChart.textRemoveChart": "Ștergere diagrama", - "PE.Views.EditChart.textReorder": "Reordonare", - "PE.Views.EditChart.textSize": "Dimensiune", - "PE.Views.EditChart.textStyle": "Stil", - "PE.Views.EditChart.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditChart.textToForeground": "Aducere în prim plan", - "PE.Views.EditChart.textType": "Tip", - "PE.Views.EditChart.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditChart.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditImage.textAddress": "Adresă", - "PE.Views.EditImage.textAlign": "Aliniere", - "PE.Views.EditImage.textAlignBottom": "Aliniere jos", - "PE.Views.EditImage.textAlignCenter": "Aliniere la centru", - "PE.Views.EditImage.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditImage.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditImage.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditImage.textAlignTop": "Aliniere sus", - "PE.Views.EditImage.textBack": "Înapoi", - "PE.Views.EditImage.textBackward": "Mutare în ultimul plan", - "PE.Views.EditImage.textDefault": "Dimensiunea reală", - "PE.Views.EditImage.textForward": "Deplasare înainte", - "PE.Views.EditImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "PE.Views.EditImage.textFromURL": "Imaginea prin URL", - "PE.Views.EditImage.textImageURL": "URL-ul imaginii", - "PE.Views.EditImage.textLinkSettings": "Configurarea link", - "PE.Views.EditImage.textRemove": "Ștergere imagine", - "PE.Views.EditImage.textReorder": "Reordonare", - "PE.Views.EditImage.textReplace": "Înlocuire", - "PE.Views.EditImage.textReplaceImg": "Înlocuire imagine", - "PE.Views.EditImage.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditImage.textToForeground": "Aducere în prim plan", - "PE.Views.EditImage.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditImage.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditLink.textBack": "Înapoi", - "PE.Views.EditLink.textDisplay": "Afișare", - "PE.Views.EditLink.textEdit": "Editare link", - "PE.Views.EditLink.textExternalLink": "Link extern", - "PE.Views.EditLink.textFirst": "Primul diapozitiv", - "PE.Views.EditLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Views.EditLink.textLast": "Ultimul diapozitiv", - "PE.Views.EditLink.textLink": "Link", - "PE.Views.EditLink.textLinkSlide": "Legătură la", - "PE.Views.EditLink.textLinkType": "Tip link", - "PE.Views.EditLink.textNext": "Diapozitivul următor", - "PE.Views.EditLink.textNumber": "Număr diapozitiv", - "PE.Views.EditLink.textPrev": "Diapozitivul anterior", - "PE.Views.EditLink.textRemove": "Ștergere link", - "PE.Views.EditLink.textTip": "Sfaturi ecran", - "PE.Views.EditShape.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditShape.textAlign": "Aliniere", - "PE.Views.EditShape.textAlignBottom": "Aliniere jos", - "PE.Views.EditShape.textAlignCenter": "Aliniere la centru", - "PE.Views.EditShape.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditShape.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditShape.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditShape.textAlignTop": "Aliniere sus", - "PE.Views.EditShape.textBack": "Înapoi", - "PE.Views.EditShape.textBackward": "Mutare în ultimul plan", - "PE.Views.EditShape.textBorder": "Bordură", - "PE.Views.EditShape.textColor": "Culoare", - "PE.Views.EditShape.textCustomColor": "Culoare particularizată", - "PE.Views.EditShape.textEffects": "Efecte", - "PE.Views.EditShape.textFill": "Umplere", - "PE.Views.EditShape.textForward": "Deplasare înainte", - "PE.Views.EditShape.textOpacity": "Transparență", - "PE.Views.EditShape.textRemoveShape": "Stergere forma", - "PE.Views.EditShape.textReorder": "Reordonare", - "PE.Views.EditShape.textReplace": "Înlocuire", - "PE.Views.EditShape.textSize": "Dimensiune", - "PE.Views.EditShape.textStyle": "Stil", - "PE.Views.EditShape.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditShape.textToForeground": "Aducere în prim plan", - "PE.Views.EditShape.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditShape.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditSlide.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditSlide.textApplyAll": "Aplicarea la toate diapozitivele ", - "PE.Views.EditSlide.textBack": "Înapoi", - "PE.Views.EditSlide.textBlack": "Prin negru", - "PE.Views.EditSlide.textBottom": "Jos", - "PE.Views.EditSlide.textBottomLeft": "La stânga jos", - "PE.Views.EditSlide.textBottomRight": "La dreapta jos", - "PE.Views.EditSlide.textClock": "Ceas", - "PE.Views.EditSlide.textClockwise": "În sensul acelor de ceasornic", - "PE.Views.EditSlide.textColor": "Culoare", - "PE.Views.EditSlide.textCounterclockwise": "In sens opus acelor de ceasornic", - "PE.Views.EditSlide.textCover": "Acoperire", - "PE.Views.EditSlide.textCustomColor": "Culoare particularizată", - "PE.Views.EditSlide.textDelay": "Amânare", - "PE.Views.EditSlide.textDuplicateSlide": "Dublare diapozitiv", - "PE.Views.EditSlide.textDuration": "Durată", - "PE.Views.EditSlide.textEffect": "Efect", - "PE.Views.EditSlide.textFade": "Estompare", - "PE.Views.EditSlide.textFill": "Umplere", - "PE.Views.EditSlide.textHorizontalIn": "Orizontal în interior", - "PE.Views.EditSlide.textHorizontalOut": "Orizontal în exterior", - "PE.Views.EditSlide.textLayout": "Aspect", - "PE.Views.EditSlide.textLeft": "Stânga", - "PE.Views.EditSlide.textNone": "Niciunul", - "PE.Views.EditSlide.textOpacity": "Transparență", - "PE.Views.EditSlide.textPush": "Împingere", - "PE.Views.EditSlide.textRemoveSlide": "Ștergere diapozitiv", - "PE.Views.EditSlide.textRight": "Dreapta", - "PE.Views.EditSlide.textSmoothly": "Lin", - "PE.Views.EditSlide.textSplit": "Scindare", - "PE.Views.EditSlide.textStartOnClick": "Pornire la clic", - "PE.Views.EditSlide.textStyle": "Stil", - "PE.Views.EditSlide.textTheme": "Temă", - "PE.Views.EditSlide.textTop": "Sus", - "PE.Views.EditSlide.textTopLeft": "Stânga sus", - "PE.Views.EditSlide.textTopRight": "Dreapta sus", - "PE.Views.EditSlide.textTransition": "Tranziții", - "PE.Views.EditSlide.textType": "Tip", - "PE.Views.EditSlide.textUnCover": "Descoperire", - "PE.Views.EditSlide.textVerticalIn": "Vertical în interior", - "PE.Views.EditSlide.textVerticalOut": "Vertical în exterior", - "PE.Views.EditSlide.textWedge": "Pană", - "PE.Views.EditSlide.textWipe": "Ștergere", - "PE.Views.EditSlide.textZoom": "Zoom", - "PE.Views.EditSlide.textZoomIn": "Mărire", - "PE.Views.EditSlide.textZoomOut": "Micșorare", - "PE.Views.EditSlide.textZoomRotate": "Zoom și rotire", - "PE.Views.EditTable.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditTable.textAlign": "Aliniere", - "PE.Views.EditTable.textAlignBottom": "Aliniere jos", - "PE.Views.EditTable.textAlignCenter": "Aliniere la centru", - "PE.Views.EditTable.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditTable.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditTable.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditTable.textAlignTop": "Aliniere sus", - "PE.Views.EditTable.textBack": "Înapoi", - "PE.Views.EditTable.textBackward": "Mutare în ultimul plan", - "PE.Views.EditTable.textBandedColumn": "Coloana alternantă", - "PE.Views.EditTable.textBandedRow": "Rând alternant", - "PE.Views.EditTable.textBorder": "Bordură", - "PE.Views.EditTable.textCellMargins": "Margini de celulă", - "PE.Views.EditTable.textColor": "Culoare", - "PE.Views.EditTable.textCustomColor": "Culoare particularizată", - "PE.Views.EditTable.textFill": "Umplere", - "PE.Views.EditTable.textFirstColumn": "Prima coloană", - "PE.Views.EditTable.textForward": "Deplasare înainte", - "PE.Views.EditTable.textHeaderRow": "Rândul de antet", - "PE.Views.EditTable.textLastColumn": "Ultima coloană", - "PE.Views.EditTable.textOptions": "Opțiuni", - "PE.Views.EditTable.textRemoveTable": "Ștergere tabel", - "PE.Views.EditTable.textReorder": "Reordonare", - "PE.Views.EditTable.textSize": "Dimensiune", - "PE.Views.EditTable.textStyle": "Stil", - "PE.Views.EditTable.textStyleOptions": "Opțiuni de stil", - "PE.Views.EditTable.textTableOptions": "Opțiuni tabel", - "PE.Views.EditTable.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditTable.textToForeground": "Aducere în prim plan", - "PE.Views.EditTable.textTotalRow": "Rând total", - "PE.Views.EditTable.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditTable.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditText.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditText.textAdditional": "Suplimentar", - "PE.Views.EditText.textAdditionalFormat": "Formatare suplimentară", - "PE.Views.EditText.textAfter": "după", - "PE.Views.EditText.textAllCaps": "Cu majuscule", - "PE.Views.EditText.textAutomatic": "Automat", - "PE.Views.EditText.textBack": "Înapoi", - "PE.Views.EditText.textBefore": "Înainte", - "PE.Views.EditText.textBullets": "Marcatori", - "PE.Views.EditText.textCharacterBold": "A", - "PE.Views.EditText.textCharacterItalic": "C", - "PE.Views.EditText.textCharacterStrikethrough": "T", - "PE.Views.EditText.textCharacterUnderline": "S", - "PE.Views.EditText.textCustomColor": "Culoare particularizată", - "PE.Views.EditText.textDblStrikethrough": "Tăiere cu două linii", - "PE.Views.EditText.textDblSuperscript": "Exponent", - "PE.Views.EditText.textFontColor": "Culoare font", - "PE.Views.EditText.textFontColors": "Culorile font", - "PE.Views.EditText.textFonts": "Fonturi", - "PE.Views.EditText.textFromText": "Distanță de la text", - "PE.Views.EditText.textLetterSpacing": "Spațierea dintre caractere", - "PE.Views.EditText.textLineSpacing": "Interlinie", - "PE.Views.EditText.textNone": "Niciunul", - "PE.Views.EditText.textNumbers": "Numere", - "PE.Views.EditText.textSize": "Dimensiune", - "PE.Views.EditText.textSmallCaps": "Majuscule reduse", - "PE.Views.EditText.textStrikethrough": "Tăiere cu o linie", - "PE.Views.EditText.textSubscript": "Indice", - "PE.Views.Search.textCase": "Sensibil la litere mari și mici", - "PE.Views.Search.textDone": "Gata", - "PE.Views.Search.textFind": "Găsire", - "PE.Views.Search.textFindAndReplace": "Găsire și înlocuire", - "PE.Views.Search.textReplace": "Înlocuire", - "PE.Views.Search.textSearch": "Căutare", - "PE.Views.Settings. textComment": "Comentariu", - "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", - "PE.Views.Settings.mniSlideWide": "Ecran lat (16:9)", - "PE.Views.Settings.textAbout": "Informații", - "PE.Views.Settings.textAddress": "adresă", - "PE.Views.Settings.textApplication": "Aplicația", - "PE.Views.Settings.textApplicationSettings": "Setări Aplicație", - "PE.Views.Settings.textAuthor": "Autor", - "PE.Views.Settings.textBack": "Înapoi", - "PE.Views.Settings.textCentimeter": "Centimetru", - "PE.Views.Settings.textCollaboration": "Colaborare", - "PE.Views.Settings.textColorSchemes": "Schema de culori", - "PE.Views.Settings.textCreated": "A fost creat", - "PE.Views.Settings.textCreateDate": "Creat la", - "PE.Views.Settings.textDisableAll": "Se dezactivează toate", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", - "PE.Views.Settings.textDone": "Gata", - "PE.Views.Settings.textDownload": "Descărcare", - "PE.Views.Settings.textDownloadAs": "Descărcare ca...", - "PE.Views.Settings.textEditPresent": "Editarea prezentării", - "PE.Views.Settings.textEmail": "e-mail", - "PE.Views.Settings.textEnableAll": "Se activează toate", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", - "PE.Views.Settings.textFind": "Găsire", - "PE.Views.Settings.textFindAndReplace": "Găsire și înlocuire", - "PE.Views.Settings.textHelp": "Asistență", - "PE.Views.Settings.textInch": "Inch", - "PE.Views.Settings.textLastModified": "Data ultimei modificări", - "PE.Views.Settings.textLastModifiedBy": "Modificat ultima dată de către", - "PE.Views.Settings.textLoading": "Se incarca...", - "PE.Views.Settings.textLocation": "Locația", - "PE.Views.Settings.textMacrosSettings": "Setări macrocomandă", - "PE.Views.Settings.textOwner": "Posesor", - "PE.Views.Settings.textPoint": "Punct", - "PE.Views.Settings.textPoweredBy": "Dezvoltat de", - "PE.Views.Settings.textPresentInfo": "Informații despre prezentarea", - "PE.Views.Settings.textPresentSettings": "Setări prezentare", - "PE.Views.Settings.textPresentSetup": "Configurare prezentare", - "PE.Views.Settings.textPresentTitle": "Titlu prezentare", - "PE.Views.Settings.textPrint": "Imprimare", - "PE.Views.Settings.textSettings": "Setări", - "PE.Views.Settings.textShowNotification": "Afișare notificări", - "PE.Views.Settings.textSlideSize": "Dimensiune diapozitiv", - "PE.Views.Settings.textSpellcheck": "Verificarea ortografică", - "PE.Views.Settings.textSubject": "Subiect", - "PE.Views.Settings.textTel": "tel", - "PE.Views.Settings.textTitle": "Titlu", - "PE.Views.Settings.textUnitOfMeasurement": "Unitate de măsură ", - "PE.Views.Settings.textUploaded": "S-a încărcat", - "PE.Views.Settings.textVersion": "Versiune", - "PE.Views.Settings.unknownText": "Necunoscut", - "PE.Views.Toolbar.textBack": "Înapoi" + "About": { + "textAbout": "Despre", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textEmail": "Email", + "textPoweredBy": "Dezvoltat de", + "textTel": "Tel", + "textVersion": "Versiune" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Avertisment", + "textAddComment": "Adaugă comentariu", + "textAddReply": "Adăugare răspuns", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textCollaboration": "Colaborare", + "textComments": "Comentarii", + "textDeleteComment": "Ștergere comentariu", + "textDeleteReply": "Ștergere răspuns", + "textDone": "Gata", + "textEdit": "Editare", + "textEditComment": "Editare comentariu", + "textEditReply": "Editare răspuns", + "textEditUser": "Fișierul este editat de către:", + "textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", + "textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", + "textNoComments": "Documentul nu cuprinde comentarii", + "textReopen": "Redeschide", + "textResolve": "Rezolvare", + "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "textUsers": "Utilizatori" + }, + "ThemeColorPalette": { + "textCustomColors": "Culori particularizate", + "textStandartColors": "Culori standard", + "textThemeColors": "Culori temă" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", + "menuAddComment": "Adaugă comentariu", + "menuAddLink": "Adăugare link", + "menuCancel": "Anulează", + "menuDelete": "Ștergere", + "menuDeleteTable": "Ștergere tabel", + "menuEdit": "Editare", + "menuMerge": "Îmbinare", + "menuMore": "Mai multe", + "menuOpenLink": "Deschidere link", + "menuSplit": "Scindare", + "menuViewComment": "Vizualizarea comentariilor", + "textColumns": "Coloane", + "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", + "textDoNotShowAgain": "Nu mai afișa", + "textRows": "Rânduri" + }, + "Controller": { + "Main": { + "advDRMOptions": "Fișierul protejat", + "advDRMPassword": "Parola", + "closeButtonText": "Închide fișierul", + "criticalErrorTitle": "Eroare", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorOpensource": "În versiunea Community documentul este disponibil numai pentru vizualizare. Aveți nevoie de o licență comercială pentru accesarea editorului mobil web.", + "errorProcessSaveResult": "Salvarea nu a reușit.", + "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", + "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", + "leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "notcriticalErrorTitle": "Avertisment", + "SDK": { + "Chart": "Diagramă", + "Click to add first slide": "Faceți clic pentru a adăuga primul diapozitiv", + "Click to add notes": "Faceți clic pentru a adăuga note", + "ClipArt": "Miniatura", + "Date and time": "Dată și oră", + "Diagram": "Diagrama", + "Diagram Title": "Titlu diagramă", + "Footer": "Subsol", + "Header": "Antet", + "Image": "Imagine", + "Loading": "Încărcare", + "Media": "Media", + "None": "Niciunul", + "Picture": "Imagine", + "Series": "Serie", + "Slide number": "Număr diapozitiv", + "Slide subtitle": "Subtitrare diapozitiv", + "Slide text": "Text diapozitiv", + "Slide title": "Titlu diapozitiv", + "Table": "Tabel", + "X Axis": "Axă X (XAS)", + "Y Axis": "Axa Y", + "Your text here": "Textul dvs. aici" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Vizitarea site-ul Web", + "textClose": "Închide", + "textContactUs": "Contactați Departamentul de Vânzări", + "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textGuest": "Invitat", + "textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", + "textNo": "Nu", + "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textOpenFile": "Introduceți parola pentru deschidere fișier", + "textPaidFeature": "Funcția contra plată", + "textRemember": "Reține opțiunea mea", + "textYes": "Da", + "titleLicenseExp": "Licența a expirat", + "titleServerVersion": "Editorul a fost actualizat", + "titleUpdateVersion": "Versiunea s-a modificat", + "txtIncorrectPwd": "Parolă incorectă", + "txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", + "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", + "warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.", + "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", + "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." + } + }, + "Error": { + "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", + "criticalErrorExtText": "Faceți clic pe OK pentru a reveni la lista de documente.", + "criticalErrorTitle": "Eroare", + "downloadErrorText": "Descărcare eșuată.", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorConnectToServer": "Salvarea documentului nu este posibilă. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", + "errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", + "errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", + "errorDataRange": "Zonă de date incorectă.", + "errorDefaultMessage": "Codul de eroare: %1", + "errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Pentru copierea de rezervă locală utilizați opțiunea de Descărcare.", + "errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", + "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Contactați administratorul dvs.", + "errorKeyEncrypt": "Descriptor cheie nerecunoscut", + "errorKeyExpire": "Descriptor cheie a expirat", + "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", + "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", + "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", + "errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", + "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", + "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
    dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", + "notcriticalErrorTitle": "Avertisment", + "openErrorText": "Eroare la deschiderea fișierului", + "saveErrorText": "Eroare la salvarea fișierului", + "scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", + "splitMaxColsErrorText": "Numărul maxim de coloane este de %1", + "splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", + "unknownErrorText": "Eroare necunoscută.", + "uploadImageExtMessage": "Format de imagine nerecunoscut.", + "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Încărcarea datelor...", + "applyChangesTitleText": "Încărcare date", + "downloadTextText": "Descărcarea documentului...", + "downloadTitleText": "Descărcarea fișierului", + "loadFontsTextText": "Încărcarea datelor...", + "loadFontsTitleText": "Încărcare date", + "loadFontTextText": "Încărcarea datelor...", + "loadFontTitleText": "Încărcare date", + "loadImagesTextText": "Încărcarea imaginilor...", + "loadImagesTitleText": "Încărcare imagini", + "loadImageTextText": "Încărcarea imaginii...", + "loadImageTitleText": "Încărcare imagine", + "loadingDocumentTextText": "Încărcarea documentului...", + "loadingDocumentTitleText": "Încărcare document", + "loadThemeTextText": "Încărcarea temei...", + "loadThemeTitleText": "Încărcare temă", + "openTextText": "Deschiderea fișierului...", + "openTitleText": "Deschidere fișier", + "printTextText": "Imprimarea documentului...", + "printTitleText": "Imprimarea documentului", + "savePreparingText": "Pregătire pentru salvare", + "savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", + "saveTextText": "Salvarea documentului...", + "saveTitleText": "Salvare document", + "textLoadingDocument": "Încărcare document", + "txtEditingMode": "Setare modul de editare...", + "uploadImageTextText": "Încărcarea imaginii...", + "uploadImageTitleText": "Încărcare imagine", + "waitText": "Vă rugăm să așteptați..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", + "leaveButtonText": "Părăsește această pagina", + "stayButtonText": "Rămâi în pagină" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Avertisment", + "textAddLink": "Adăugare link", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textColumns": "Coloane", + "textComment": "Comentariu", + "textDefault": "Textul selectat", + "textDisplay": "Afișare", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textExternalLink": "Link extern", + "textFirstSlide": "Primul diapozitiv", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInsert": "Inserare", + "textInsertImage": "Inserare imagine", + "textLastSlide": "Ultimul diapozitiv", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkTo": "Legătură la", + "textLinkType": "Tip link", + "textNextSlide": "Diapozitivul următor", + "textOther": "Altele", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPreviousSlide": "Diapozitivul anterior", + "textRows": "Rânduri", + "textScreenTip": "Sfaturi ecran", + "textShape": "Forma", + "textSlide": "Diapozitiv", + "textSlideInThisPresentation": "Diapozitivul din această prezentare", + "textSlideNumber": "Număr diapozitiv", + "textTable": "Tabel", + "textTableSize": "Dimensiune tabel", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Avertisment", + "textActualSize": "Dimensiunea reală", + "textAddCustomColor": "Adăugarea unei culori particularizate", + "textAdditional": "Suplimentar", + "textAdditionalFormatting": "Formatare suplimentară", + "textAddress": "Adresă", + "textAfter": "după", + "textAlign": "Aliniere", + "textAlignBottom": "Aliniere jos", + "textAlignCenter": "Aliniere la centru", + "textAlignLeft": "Aliniere la stânga", + "textAlignMiddle": "Aliniere la mijloc", + "textAlignRight": "Aliniere la dreapta", + "textAlignTop": "Aliniere sus", + "textAllCaps": "Cu majuscule", + "textApplyAll": "Aplicarea la toate diapozitivele ", + "textAuto": "Auto", + "textBack": "Înapoi", + "textBandedColumn": "Coloana alternantă", + "textBandedRow": "Rând alternant", + "textBefore": "Înainte", + "textBlack": "Prin negru", + "textBorder": "Bordura", + "textBottom": "Jos", + "textBottomLeft": "La stânga jos", + "textBottomRight": "La dreapta jos", + "textBringToForeground": "Aducere în prim plan", + "textBullets": "Marcatori", + "textBulletsAndNumbers": "Marcatori și numerotare", + "textCaseSensitive": "Sensibil la litere mari și mici", + "textCellMargins": "Margini de celulă", + "textChart": "Diagramă", + "textClock": "Ceas", + "textClockwise": "În sensul acelor de ceasornic", + "textColor": "Culoare", + "textCounterclockwise": "In sens opus acelor de ceasornic", + "textCover": "Acoperire", + "textCustomColor": "Culoare particularizată", + "textDefault": "Textul selectat", + "textDelay": "Amânare", + "textDeleteSlide": "Ștergere diapozitiv", + "textDisplay": "Afișare", + "textDistanceFromText": "Distanță de la text", + "textDistributeHorizontally": "Distribuire pe orizontală", + "textDistributeVertically": "Distribuire pe verticală", + "textDone": "Gata", + "textDoubleStrikethrough": "Tăiere cu două linii", + "textDuplicateSlide": "Dublare diapozitiv", + "textDuration": "Durată", + "textEditLink": "Editare link", + "textEffect": "Efect", + "textEffects": "Efecte", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textExternalLink": "Link extern", + "textFade": "Estompare", + "textFill": "Umplere", + "textFinalMessage": "Previzualizarea s-a terminat. Atingeți pentru ieșiere.", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFirstColumn": "Prima coloană", + "textFirstSlide": "Primul diapozitiv", + "textFontColor": "Culoare font", + "textFontColors": "Culorile font", + "textFonts": "Fonturi", + "textFromLibrary": "Imagine dintr-o bibliotecă ", + "textFromURL": "Imaginea prin URL", + "textHeaderRow": "Rândul de antet", + "textHighlight": "Evidențierea rezultatelor", + "textHighlightColor": "Culoare de evidențiere", + "textHorizontalIn": "Orizontal în interior", + "textHorizontalOut": "Orizontal în exterior", + "textHyperlink": "Hyperlink", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textLastColumn": "Ultima coloană", + "textLastSlide": "Ultimul diapozitiv", + "textLayout": "Aspect", + "textLeft": "Stânga", + "textLetterSpacing": "Spațierea dintre caractere", + "textLineSpacing": "Interlinie", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkTo": "Legătură la", + "textLinkType": "Tip link", + "textMoveBackward": "Mutare în ultimul plan", + "textMoveForward": "Mutare înainte", + "textNextSlide": "Diapozitivul următor", + "textNone": "Niciunul", + "textNoStyles": "Niciun stil pentru acest tip de diagramă.", + "textNoTextFound": "Textul nu a fost găsit", + "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNumbers": "Numere", + "textOpacity": "Transparență", + "textOptions": "Opțiuni", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPreviousSlide": "Diapozitivul anterior", + "textPt": "pt", + "textPush": "Împingere", + "textRemoveChart": "Ștergere diagrama", + "textRemoveImage": "Ștergere imagine", + "textRemoveLink": "Ștergere link", + "textRemoveShape": "Stergere forma", + "textRemoveTable": "Ștergere tabel", + "textReorder": "Reordonare", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textReplaceImage": "Înlocuire imagine", + "textRight": "Dreapta", + "textScreenTip": "Sfaturi ecran", + "textSearch": "Căutare", + "textSec": "s", + "textSelectObjectToEdit": "Selectați obiectul pentru editare", + "textSendToBackground": "Trimitere în plan secundar", + "textShape": "Forma", + "textSize": "Dimensiune", + "textSlide": "Diapozitiv", + "textSlideInThisPresentation": "Diapozitivul din această prezentare", + "textSlideNumber": "Număr diapozitiv", + "textSmallCaps": "Majuscule reduse", + "textSmoothly": "Lin", + "textSplit": "Scindare", + "textStartOnClick": "Pornire la clic", + "textStrikethrough": "Tăiere cu o linie", + "textStyle": "Stil", + "textStyleOptions": "Opțiuni de stil", + "textSubscript": "Indice", + "textSuperscript": "Exponent", + "textTable": "Tabel", + "textText": "Text", + "textTheme": "Temă", + "textTop": "Sus", + "textTopLeft": "Stânga sus", + "textTopRight": "Dreapta sus", + "textTotalRow": "Rând total", + "textTransition": "Tranziții", + "textType": "Tip", + "textUnCover": "Descoperire", + "textVerticalIn": "Vertical în interior", + "textVerticalOut": "Vertical în exterior", + "textWedge": "Pană", + "textWipe": "Ștergere", + "textZoom": "Zoom", + "textZoomIn": "Mărire", + "textZoomOut": "Micșorare", + "textZoomRotate": "Zoom și rotire" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Ecran lat (16:9)", + "textAbout": "Despre", + "textAddress": "adresă:", + "textApplication": "Aplicația", + "textApplicationSettings": "Setări Aplicație", + "textAuthor": "Autor", + "textBack": "Înapoi", + "textCaseSensitive": "Sensibil la litere mari și mici", + "textCentimeter": "Centimetru", + "textCollaboration": "Colaborare", + "textColorSchemes": "Scheme de culori", + "textComment": "Comentariu", + "textCreated": "A fost creat la", + "textDisableAll": "Se dezactivează toate", + "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzileâ cu notificare", + "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile fără notificare", + "textDone": "Gata", + "textDownload": "Descărcare", + "textDownloadAs": "Descărcare ca...", + "textEmail": "e-mail:", + "textEnableAll": "Se activează toate", + "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile cu notificare ", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFindAndReplaceAll": "Găsire și înlocuire totală", + "textHelp": "Ajutor", + "textHighlight": "Evidențierea rezultatelor", + "textInch": "Inch", + "textLastModified": "Data ultimei modificări", + "textLastModifiedBy": "Modificat ultima dată de către", + "textLoading": "Se încarcă...", + "textLocation": "Locația", + "textMacrosSettings": "Setări macrocomandă", + "textNoTextFound": "Textul nu a fost găsit", + "textOwner": "Proprietar", + "textPoint": "Punct", + "textPoweredBy": "Dezvoltat de", + "textPresentationInfo": "Informații despre prezentarea", + "textPresentationSettings": "Setări prezentare", + "textPresentationTitle": "Titlu prezentare", + "textPrint": "Imprimare", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textSearch": "Căutare", + "textSettings": "Setări", + "textShowNotification": "Afișare notificări", + "textSlideSize": "Dimensiune diapozitiv", + "textSpellcheck": "Verificarea ortografică", + "textSubject": "Subiect", + "textTel": "tel:", + "textTitle": "Titlu", + "textUnitOfMeasurement": "Unitate de măsură ", + "textUploaded": "S-a încărcat", + "textVersion": "Versiune", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metrou", + "txtScheme12": "Modul", + "txtScheme13": "Opulent", + "txtScheme14": "Foișor", + "txtScheme15": "Origine", + "txtScheme16": "Hârtie", + "txtScheme17": "Solstițiu", + "txtScheme18": "Tehnic", + "txtScheme19": "Turist", + "txtScheme2": "Tonuri de gri", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concurență", + "txtScheme7": "Echilibru", + "txtScheme8": "Flux", + "txtScheme9": "Forjă" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 58a3e37325..d66b3b6df5 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Внимание", "SDK": { "Chart": "Диаграмма", + "Click to add first slide": "Нажмите, чтобы добавить первый слайд", + "Click to add notes": "Нажмите, чтобы добавить заметки", "ClipArt": "Картинка", "Date and time": "Дата и время", "Diagram": "SmartArt", @@ -78,7 +80,9 @@ "Footer": "Нижний колонтитул", "Header": "Верхний колонтитул", "Image": "Рисунок", + "Loading": "Загрузка", "Media": "Клип мультимедиа", + "None": "Нет", "Picture": "Рисунок", "Series": "Ряд", "Slide number": "Номер слайда", @@ -258,6 +262,7 @@ "textBottomLeft": "Снизу слева", "textBottomRight": "Снизу справа", "textBringToForeground": "Перенести на передний план", + "textBullets": "Маркеры", "textBulletsAndNumbers": "Маркеры и нумерация", "textCaseSensitive": "С учетом регистра", "textCellMargins": "Поля ячейки", @@ -321,6 +326,7 @@ "textNoStyles": "Для этого типа диаграммы нет стилей.", "textNoTextFound": "Текст не найден", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "textNumbers": "Нумерация", "textOpacity": "Прозрачность", "textOptions": "Параметры", "textPictureFromLibrary": "Рисунок из библиотеки", @@ -431,7 +437,27 @@ "textTitle": "Название", "textUnitOfMeasurement": "Единица измерения", "textUploaded": "Загружена", - "textVersion": "Версия" + "textVersion": "Версия", + "txtScheme1": "Стандартная", + "txtScheme10": "Обычная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Изящная", + "txtScheme14": "Эркер", + "txtScheme15": "Начальная", + "txtScheme16": "Бумажная", + "txtScheme17": "Солнцестояние", + "txtScheme18": "Техническая", + "txtScheme19": "Трек", + "txtScheme2": "Оттенки серого", + "txtScheme22": "Новая офисная", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Официальная", + "txtScheme6": "Открытая", + "txtScheme7": "Справедливость", + "txtScheme8": "Поток", + "txtScheme9": "Литейная" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index c32ab28f83..9f684b35dc 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "SSE.ApplicationController.notcriticalErrorTitle": "Advertiment", "SSE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "SSE.ApplicationController.textAnonymous": "Anònim", + "SSE.ApplicationController.textGuest": "Convidat", "SSE.ApplicationController.textLoadingDocument": "Carregant full de càlcul", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Tancar", diff --git a/apps/spreadsheeteditor/embed/locale/de.json b/apps/spreadsheeteditor/embed/locale/de.json index c40f7d37e9..30fc78019e 100644 --- a/apps/spreadsheeteditor/embed/locale/de.json +++ b/apps/spreadsheeteditor/embed/locale/de.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei möglich.", "SSE.ApplicationController.notcriticalErrorTitle": "Warnung", "SSE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", + "SSE.ApplicationController.textAnonymous": "Anonym", + "SSE.ApplicationController.textGuest": "Gast", "SSE.ApplicationController.textLoadingDocument": "Tabelle wird geladen", "SSE.ApplicationController.textOf": "von", "SSE.ApplicationController.txtClose": "Schließen", diff --git a/apps/spreadsheeteditor/embed/locale/el.json b/apps/spreadsheeteditor/embed/locale/el.json index dbbbef656e..b096c0c70e 100644 --- a/apps/spreadsheeteditor/embed/locale/el.json +++ b/apps/spreadsheeteditor/embed/locale/el.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "SSE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "SSE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", + "SSE.ApplicationController.textAnonymous": "Ανώνυμος", + "SSE.ApplicationController.textGuest": "Επισκέπτης", "SSE.ApplicationController.textLoadingDocument": "Γίνεται φόρτωση λογιστικού φύλλου", "SSE.ApplicationController.textOf": "του", "SSE.ApplicationController.txtClose": "Κλείσιμο", diff --git a/apps/spreadsheeteditor/embed/locale/es.json b/apps/spreadsheeteditor/embed/locale/es.json index 9864c4a188..e89e0fc28a 100644 --- a/apps/spreadsheeteditor/embed/locale/es.json +++ b/apps/spreadsheeteditor/embed/locale/es.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", "SSE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "SSE.ApplicationController.textAnonymous": "Anónimo", + "SSE.ApplicationController.textGuest": "Invitado", "SSE.ApplicationController.textLoadingDocument": "Cargando hoja de cálculo", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Cerrar", diff --git a/apps/spreadsheeteditor/embed/locale/fr.json b/apps/spreadsheeteditor/embed/locale/fr.json index 2cfe950c99..503c671a87 100644 --- a/apps/spreadsheeteditor/embed/locale/fr.json +++ b/apps/spreadsheeteditor/embed/locale/fr.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertissement", "SSE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "SSE.ApplicationController.textAnonymous": "Anonyme", + "SSE.ApplicationController.textGuest": "Invité", "SSE.ApplicationController.textLoadingDocument": "Chargement d'une feuille de calcul", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Fermer", diff --git a/apps/spreadsheeteditor/embed/locale/nl.json b/apps/spreadsheeteditor/embed/locale/nl.json index 857bc36243..b7385f0f4c 100644 --- a/apps/spreadsheeteditor/embed/locale/nl.json +++ b/apps/spreadsheeteditor/embed/locale/nl.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "SSE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "SSE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", + "SSE.ApplicationController.textAnonymous": "Anoniem", + "SSE.ApplicationController.textGuest": "Gast", "SSE.ApplicationController.textLoadingDocument": "Spreadsheet wordt geladen", "SSE.ApplicationController.textOf": "van", "SSE.ApplicationController.txtClose": "Sluiten", @@ -25,6 +27,7 @@ "SSE.ApplicationController.waitText": "Een moment geduld", "SSE.ApplicationView.txtDownload": "Downloaden", "SSE.ApplicationView.txtEmbed": "Invoegen", + "SSE.ApplicationView.txtFileLocation": "Open bestandslocatie", "SSE.ApplicationView.txtFullScreen": "Volledig scherm", "SSE.ApplicationView.txtPrint": "Afdrukken", "SSE.ApplicationView.txtShare": "Delen" diff --git a/apps/spreadsheeteditor/embed/locale/pt.json b/apps/spreadsheeteditor/embed/locale/pt.json index 27d9a8128c..a0e2ffb62c 100644 --- a/apps/spreadsheeteditor/embed/locale/pt.json +++ b/apps/spreadsheeteditor/embed/locale/pt.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", "SSE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", + "SSE.ApplicationController.textAnonymous": "Anônimo", + "SSE.ApplicationController.textGuest": "Convidado(a)", "SSE.ApplicationController.textLoadingDocument": "Carregando planilha", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Fechar", diff --git a/apps/spreadsheeteditor/embed/locale/ro.json b/apps/spreadsheeteditor/embed/locale/ro.json index 91753d4c01..0b75aa2dfa 100644 --- a/apps/spreadsheeteditor/embed/locale/ro.json +++ b/apps/spreadsheeteditor/embed/locale/ro.json @@ -17,10 +17,12 @@ "SSE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertisment", "SSE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "SSE.ApplicationController.textAnonymous": "Anonim", + "SSE.ApplicationController.textGuest": "Invitat", "SSE.ApplicationController.textLoadingDocument": "Încărcare foaie de calcul", "SSE.ApplicationController.textOf": "din", "SSE.ApplicationController.txtClose": "Închidere", - "SSE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", + "SSE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "SSE.ApplicationController.waitText": "Vă rugăm să așteptați...", "SSE.ApplicationView.txtDownload": "Descărcare", diff --git a/apps/spreadsheeteditor/embed/locale/zh.json b/apps/spreadsheeteditor/embed/locale/zh.json index 667a0a52bf..62c409d831 100644 --- a/apps/spreadsheeteditor/embed/locale/zh.json +++ b/apps/spreadsheeteditor/embed/locale/zh.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "SSE.ApplicationController.notcriticalErrorTitle": "警告", "SSE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", + "SSE.ApplicationController.textAnonymous": "访客", + "SSE.ApplicationController.textGuest": "访客", "SSE.ApplicationController.textLoadingDocument": "正在加载电子表格…", "SSE.ApplicationController.textOf": "的", "SSE.ApplicationController.txtClose": "关闭", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 38c46300e2..88eaeb7592 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -417,6 +417,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminar els Duplicats", "SSE.Controllers.DataTab.txtRemoveDataValidation": "La selecció conté més d'un tipus de validació.
    Esborrar la configuració actual i continua?", "SSE.Controllers.DataTab.txtRemSelected": "Eliminar les opcions seleccionades", + "SSE.Controllers.DataTab.txtUrlTitle": "Enganxeu una URL de dades", "SSE.Controllers.DocumentHolder.alignmentText": "Alineació", "SSE.Controllers.DocumentHolder.centerText": "Centre", "SSE.Controllers.DocumentHolder.deleteColumnText": "Suprimeix la Columna", @@ -599,6 +600,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les funcions, excepte el text.
    Esteu segur que voleu continuar?", "SSE.Controllers.Main.confirmMoveCellRange": "El rang de cel·les de destinació pot contenir dades. Continuar l'operació?", "SSE.Controllers.Main.confirmPutMergeRange": "Les dades de l’origen contenien cel·les fusionades.
    No s’havien fusionat abans d’enganxar-les a la taula.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic.
    Voleu continuar?", "SSE.Controllers.Main.convertationTimeoutText": "Conversió fora de temps", "SSE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar al document.", "SSE.Controllers.Main.criticalErrorTitle": "Error", @@ -649,6 +651,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de la clau desconegut", "SSE.Controllers.Main.errorKeyExpire": "El descriptor de la clau ha caducat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Per crear una taula dinàmica, heu d'utilitzar dades organitzades com a llista amb columnes amb etiquetes.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referència per a la ubicació o l'interval de dades no és vàlida.", "SSE.Controllers.Main.errorLockedAll": "L'operació no s'ha pogut fer ja que un altre usuari ha bloquejat el full.", "SSE.Controllers.Main.errorLockedCellPivot": "No podeu canviar les dades d'una taula de pivot.", "SSE.Controllers.Main.errorLockedWorksheetRename": "De moment no es pot canviar el nom del full ja que el torna a anomenar un altre usuari", @@ -672,6 +675,7 @@ "SSE.Controllers.Main.errorSessionIdle": "El document no s’ha editat des de fa temps. Torneu a carregar la pàgina.", "SSE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "SSE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "La referència d'ubicació no és vàlida perquè les cel·les no estan totes a la mateixa columna o fila.
    Seleccioneu les cel·les que estiguin totes en una sola columna o fila.", "SSE.Controllers.Main.errorStockChart": "Ordre de fila incorrecte. Per crear un gràfic de valors, col·loqueu les dades del full en l’ordre següent:
    preu d’obertura, preu màxim, preu mínim, preu de tancament.", "SSE.Controllers.Main.errorToken": "El testimoni de seguretat del document no està format correctament.
    Contacteu l'administrador del servidor de documents.", "SSE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
    Contacteu amb l'administrador del Document Server.", @@ -1871,6 +1875,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Columna sencera", "SSE.Views.DocumentHolder.txtColumnWidth": "Ajustar l'Amplada de la Columna", + "SSE.Views.DocumentHolder.txtCondFormat": "Format Condicional", "SSE.Views.DocumentHolder.txtCopy": "Copiar", "SSE.Views.DocumentHolder.txtCurrency": "Moneda", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Amplada de Columna Personalitzada", @@ -2180,6 +2185,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Aquest camp és obligatori", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracció", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sense Icona", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentatge", "SSE.Views.FormatRulesEditDlg.txtScientific": "Científic", @@ -3328,6 +3334,7 @@ "SSE.Views.Toolbar.txtScheme2": "Escala de Gris", "SSE.Views.Toolbar.txtScheme20": "Urbà", "SSE.Views.Toolbar.txtScheme21": "Empenta", + "SSE.Views.Toolbar.txtScheme22": "Nova Oficina", "SSE.Views.Toolbar.txtScheme3": "Àpex", "SSE.Views.Toolbar.txtScheme4": "Aspecte", "SSE.Views.Toolbar.txtScheme5": "Cívic", @@ -3404,9 +3411,13 @@ "SSE.Views.ViewTab.textCreate": "Nou", "SSE.Views.ViewTab.textDefault": "Per defecte", "SSE.Views.ViewTab.textFormula": "Barra de Fórmules", + "SSE.Views.ViewTab.textFreezeCol": "Fixar Primera Columna", + "SSE.Views.ViewTab.textFreezeRow": "Fixar Fila Superior", "SSE.Views.ViewTab.textGridlines": "Línies de Quadrícules", "SSE.Views.ViewTab.textHeadings": "Encapçalaments", "SSE.Views.ViewTab.textManager": "Administrador de vista", + "SSE.Views.ViewTab.textUnFreeze": "Moure Panells", + "SSE.Views.ViewTab.textZeros": "Mostrar zeros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Tanca la visualització de fulls", "SSE.Views.ViewTab.tipCreate": "Crea visualització de full", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 7e9053af45..6b5d9f8f50 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -417,6 +417,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Entferne Duplikate", "SSE.Controllers.DataTab.txtRemoveDataValidation": "Die Auswahl enthält mehr als eine Prüfungsart.
    Sollen die aktuellen Einstellungen gelöscht und dann fortgefahren werden?", "SSE.Controllers.DataTab.txtRemSelected": "Aus dem ausgewählten Bereich entfernen", + "SSE.Controllers.DataTab.txtUrlTitle": "In Daten-URL einfügen", "SSE.Controllers.DocumentHolder.alignmentText": "Ausrichtung", "SSE.Controllers.DocumentHolder.centerText": "Zentriert", "SSE.Controllers.DocumentHolder.deleteColumnText": "Spalte löschen", @@ -599,6 +600,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
    Möchten Sie wirklich fortsetzen?", "SSE.Controllers.Main.confirmMoveCellRange": "Der Zielzellenbereich kann Daten enthalten. Die Operation fortsetzen?", "SSE.Controllers.Main.confirmPutMergeRange": "Die Quelldaten enthielten verbundene Zellen.
    Vor dem Einfügen dieser Zellen in die Tabelle, wurde die Zusammenführung aufgehoben. ", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formeln in der Kopfzeile werden entfernt und in statischen Text konvertiert.
    Möchten Sie den Vorgang fortsetzen?", "SSE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.", "SSE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf 'OK', um zur Dokumentenliste zu übergehen.", "SSE.Controllers.Main.criticalErrorTitle": "Fehler", @@ -649,6 +651,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "SSE.Controllers.Main.errorLabledColumnsPivot": "Um eine Pivot-Tabelle zu erstellen, verwenden Sie Daten, die in einer Liste mit Spaltenüberschriften organisiert sind.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Die Referenz für den Standort oder den Datenbereich ist nicht gültig.", "SSE.Controllers.Main.errorLockedAll": "Die Operation kann nicht durchgeführt werden, weil das Blatt von einem anderen Benutzer gesperrt ist.", "SSE.Controllers.Main.errorLockedCellPivot": "Die Daten innerhalb einer Pivot-Tabelle können nicht geändert werden.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Umbenennen des Blattes ist derzeit nicht möglich, denn es wird gleichzeitig von einem anderen Benutzer umbenannt.", @@ -672,6 +675,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.", "SSE.Controllers.Main.errorSessionToken": "Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.", "SSE.Controllers.Main.errorSetPassword": "Das Passwort konnte nicht festgelegt werden.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Der Ortsbezug ist nicht gültig, da sich die Zellen nicht alle in derselben Spalte oder Zeile befinden.
    Wählen Sie Zellen aus, die sich alle in einer einzigen Spalte oder Zeile befinden.", "SSE.Controllers.Main.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:
    Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.", "SSE.Controllers.Main.errorToken": "Sicherheitstoken des Dokuments ist nicht korrekt.
    Wenden Sie sich an Ihren Serveradministrator.", "SSE.Controllers.Main.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.
    Wenden Sie sich an Ihren Serveradministrator.", @@ -1871,6 +1875,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Ganze Spalte", "SSE.Views.DocumentHolder.txtColumnWidth": "Spaltenbreite einstellen", + "SSE.Views.DocumentHolder.txtCondFormat": "Bedingte Formatierung", "SSE.Views.DocumentHolder.txtCopy": "Kopieren", "SSE.Views.DocumentHolder.txtCurrency": "Währung", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Benutzerdefinierte Spaltenbreite", @@ -2180,6 +2185,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Dieses Feld ist erforderlich", "SSE.Views.FormatRulesEditDlg.txtFraction": "Bruch", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Allgemeines", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Kein Symbol", "SSE.Views.FormatRulesEditDlg.txtNumber": "Zahl", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Prozentsatz", "SSE.Views.FormatRulesEditDlg.txtScientific": "Wissenschaftlich", @@ -3328,6 +3334,7 @@ "SSE.Views.Toolbar.txtScheme2": "Graustufe", "SSE.Views.Toolbar.txtScheme20": "Rhea", "SSE.Views.Toolbar.txtScheme21": "Telesto", + "SSE.Views.Toolbar.txtScheme22": "Neues Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspekt ", "SSE.Views.Toolbar.txtScheme5": "Cronus", @@ -3404,9 +3411,13 @@ "SSE.Views.ViewTab.textCreate": "Neu", "SSE.Views.ViewTab.textDefault": "Standard", "SSE.Views.ViewTab.textFormula": "Formelleiste", + "SSE.Views.ViewTab.textFreezeCol": "Erste Spalte einfrieren", + "SSE.Views.ViewTab.textFreezeRow": "Oberste Zeile einfrieren", "SSE.Views.ViewTab.textGridlines": "Gitternetzlinien ", "SSE.Views.ViewTab.textHeadings": "Überschriften", "SSE.Views.ViewTab.textManager": "Ansichten-Manager", + "SSE.Views.ViewTab.textUnFreeze": "Fixierung aufheben", + "SSE.Views.ViewTab.textZeros": "Nullen anzeigen", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Tabellenansicht schließen", "SSE.Views.ViewTab.tipCreate": "Tabellenansicht erstellen", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 64290ef700..bb407849aa 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -652,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired", "SSE.Controllers.Main.errorLabledColumnsPivot": "To create a pivot table, use data that is organized as a list with labeled columns.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "The reference for the location or data range is not valid.", "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", "SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data inside a pivot table.", "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", @@ -675,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", "SSE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", "SSE.Controllers.Main.errorSetPassword": "Password could not be set.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Location reference is not valid because the cells are not all in the same column or row.
    Select cells that are all in a single column or row.", "SSE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", "SSE.Controllers.Main.errorToken": "The document security token is not correctly formed.
    Please contact your Document Server administrator.", "SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.
    Please contact your Document Server administrator.", @@ -687,8 +689,6 @@ "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
    Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", - "SSE.Controllers.Main.errorSingleColumnOrRowError": "Location reference is not valid because the cells are not all in the same column or row.
    Select cells that are all in a single column or row.", - "SSE.Controllers.Main.errorLocationOrDataRangeError": "The reference for the location or data range is not valid.", "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", "SSE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this spreadsheet will be lost.
    Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "SSE.Controllers.Main.loadFontsTextText": "Loading data...", @@ -1876,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Entire column", "SSE.Views.DocumentHolder.txtColumnWidth": "Set Column Width", + "SSE.Views.DocumentHolder.txtCondFormat": "Conditional Formatting", "SSE.Views.DocumentHolder.txtCopy": "Copy", "SSE.Views.DocumentHolder.txtCurrency": "Currency", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom Column Width", @@ -1924,7 +1925,6 @@ "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "SSE.Views.DocumentHolder.txtCondFormat": "Conditional Formatting", "SSE.Views.FieldSettingsDialog.strLayout": "Layout", "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", "SSE.Views.FieldSettingsDialog.textReport": "Report Form", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index e3a42e681f..c6a7a9fdc3 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -599,6 +599,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.
    ¿Está seguro de que quiere continuar?", "SSE.Controllers.Main.confirmMoveCellRange": "El rango de celdas final puede contener los datos. ¿Quiere continuar?", "SSE.Controllers.Main.confirmPutMergeRange": "Los datos de origen contienen celdas combinadas.
    Habían estado sin combinar antes de que se pegaran en la tabla.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Las fórmulas de la fila de encabezado se eliminarán y se convertirán en texto estático.
    ¿Desea continuar?", "SSE.Controllers.Main.convertationTimeoutText": "Se superó el tiempo de espera de conversión.", "SSE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar a la lista de documentos.", "SSE.Controllers.Main.criticalErrorTitle": "Error", @@ -2180,6 +2181,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Este campo es obligatorio", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracción", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sin icono", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Porcentaje", "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientífico", @@ -3328,6 +3330,7 @@ "SSE.Views.Toolbar.txtScheme2": "Escala de grises", "SSE.Views.Toolbar.txtScheme20": "Urbano", "SSE.Views.Toolbar.txtScheme21": "Brío", + "SSE.Views.Toolbar.txtScheme22": "Nueva oficina", "SSE.Views.Toolbar.txtScheme3": "Vértice", "SSE.Views.Toolbar.txtScheme4": "Aspecto", "SSE.Views.Toolbar.txtScheme5": "Civil", @@ -3404,9 +3407,13 @@ "SSE.Views.ViewTab.textCreate": "Nuevo", "SSE.Views.ViewTab.textDefault": "Predeterminado", "SSE.Views.ViewTab.textFormula": "Barra de fórmulas", + "SSE.Views.ViewTab.textFreezeCol": "Inmovilizar primera columna", + "SSE.Views.ViewTab.textFreezeRow": "Inmovilizar fila superior", "SSE.Views.ViewTab.textGridlines": "Líneas de cuadrícula", "SSE.Views.ViewTab.textHeadings": "Encabezados", "SSE.Views.ViewTab.textManager": "Administrador de vista", + "SSE.Views.ViewTab.textUnFreeze": "Movilizar paneles", + "SSE.Views.ViewTab.textZeros": "Mostrar ceros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Cerrar vista de hoja", "SSE.Views.ViewTab.tipCreate": "Crear vista de hoja", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 48318d5501..d08634612a 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -146,7 +146,7 @@ "Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtMail": "émail: ", - "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtPoweredBy": "Réalisation", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions suivantes sont les expressions mathématiques reconnues. Elles ne seront pas mises en italique automatiquement.", "Common.Views.AutoCorrectDialog.textReplace": "Remplacer", + "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer au cours de la frappe", "Common.Views.AutoCorrectDialog.textReplaceType": "Remplacer le texte au cours de la frappe", "Common.Views.AutoCorrectDialog.textReset": "Réinitialiser", "Common.Views.AutoCorrectDialog.textResetAll": "Rétablir paramètres par défaut", @@ -247,10 +248,10 @@ "Common.Views.OpenDialog.txtDelimiter": "Délimiteur", "Common.Views.OpenDialog.txtDestData": "Sélectionnez où placer la date", "Common.Views.OpenDialog.txtEmpty": "Ce champ est obligatoire", - "Common.Views.OpenDialog.txtEncoding": "Encodage", + "Common.Views.OpenDialog.txtEncoding": "Codage ", "Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.", "Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier", - "Common.Views.OpenDialog.txtOther": "Autres", + "Common.Views.OpenDialog.txtOther": "Autre", "Common.Views.OpenDialog.txtPassword": "Mot de passe", "Common.Views.OpenDialog.txtPreview": "Aperçu", "Common.Views.OpenDialog.txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé.", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Supprimer les valeurs dupliquées", "SSE.Controllers.DataTab.txtRemoveDataValidation": "La sélection doit contenir plus d'une type de validation.
    Annuler les paramètres actuels et continuer ?", "SSE.Controllers.DataTab.txtRemSelected": "Déplacer dans sélectionnés", + "SSE.Controllers.DataTab.txtUrlTitle": "Coller URL de données", "SSE.Controllers.DocumentHolder.alignmentText": "Alignement", "SSE.Controllers.DocumentHolder.centerText": "Au centre", "SSE.Controllers.DocumentHolder.deleteColumnText": "Supprimer la colonne", @@ -429,7 +431,7 @@ "SSE.Controllers.DocumentHolder.insertRowAboveText": "Ligne au-dessus", "SSE.Controllers.DocumentHolder.insertRowBelowText": "Ligne en dessous", "SSE.Controllers.DocumentHolder.insertText": "Insérer", - "SSE.Controllers.DocumentHolder.leftText": "A gauche", + "SSE.Controllers.DocumentHolder.leftText": "À gauche", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avertissement", "SSE.Controllers.DocumentHolder.rightText": "A droite", "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Options d'auto-correction", @@ -599,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
    Êtes-vous sûr de vouloir continuer ?", "SSE.Controllers.Main.confirmMoveCellRange": "La plage de cellules finale peut contenir des données.Voulez-vous continuer ?", "SSE.Controllers.Main.confirmPutMergeRange": "Les données source contiennent des cellules fusionnées.
    La fusion a été supprimée avant le transfert des cellules dans le tableau.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Les formules de la ligne en-tête seront supprimées et transformées en texte statique.
    Voulez-vous continuer?", "SSE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.", "SSE.Controllers.Main.criticalErrorExtText": "Cliquez sur \"OK\" pour revenir à la liste des documents.", "SSE.Controllers.Main.criticalErrorTitle": "Erreur", @@ -645,10 +648,11 @@ "SSE.Controllers.Main.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas.
    Veuillez vérifier les données et réessayer.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée.
    Sélectionnez une plage de telle sorte que la première ligne de la table était sur la même ligne
    et la table résultant chevauché l'actuel.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée.
    Sélectionnez une plage qui ne comprend pas d'autres tables.", - "SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable pour aller à.", + "SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.", "SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "SSE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "SSE.Controllers.Main.errorLabledColumnsPivot": "Pour créer un tableau croisé dynamique, utilisez les données organisées sous forme de liste avec des colonnes libellées.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "La référence de localisation ou la plage de données n'est pas valide.", "SSE.Controllers.Main.errorLockedAll": "L'opération ne peut pas être réalisée car la feuille a été verrouillée par un autre utilisateur.", "SSE.Controllers.Main.errorLockedCellPivot": "Impossible de modifier les données d'un tableau croisé dynamique.", "SSE.Controllers.Main.errorLockedWorksheetRename": "La feuille ne peut pas être renommée pour le moment car elle est en train d'être renommée par un autre utilisateur", @@ -672,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "SSE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", "SSE.Controllers.Main.errorSetPassword": "Le mot de passe ne peut pas être configuré", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "La référence de localisation n'est pas valide puisque les cellules ne sont pas d'une même colonne ou ligne.
    Sélectionnez les cellules de la même colonne ou ligne.", "SSE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
    Veuillez contacter l'administrateur de Document Server.", "SSE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.
    Veuillez contactez l'administrateur de Document Server.", @@ -755,7 +760,7 @@ "SSE.Controllers.Main.txtDate": "Date", "SSE.Controllers.Main.txtDays": "jours", "SSE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "SSE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", + "SSE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "SSE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "SSE.Controllers.Main.txtFile": "Fichier", "SSE.Controllers.Main.txtGrandTotal": "Total général", @@ -955,7 +960,7 @@ "SSE.Controllers.Main.txtStyle_Calculation": "Calcul", "SSE.Controllers.Main.txtStyle_Check_Cell": "Vérifier la cellule", "SSE.Controllers.Main.txtStyle_Comma": "Virgule", - "SSE.Controllers.Main.txtStyle_Currency": "Devise", + "SSE.Controllers.Main.txtStyle_Currency": "Monétaire", "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texte d'explication", "SSE.Controllers.Main.txtStyle_Good": "Correct", "SSE.Controllers.Main.txtStyle_Heading_1": "Titre 1", @@ -968,7 +973,7 @@ "SSE.Controllers.Main.txtStyle_Normal": "Normal", "SSE.Controllers.Main.txtStyle_Note": "Remarque", "SSE.Controllers.Main.txtStyle_Output": "Sortie", - "SSE.Controllers.Main.txtStyle_Percent": "Pour-cent", + "SSE.Controllers.Main.txtStyle_Percent": "Pour cent", "SSE.Controllers.Main.txtStyle_Title": "Titre", "SSE.Controllers.Main.txtStyle_Total": "Total", "SSE.Controllers.Main.txtStyle_Warning_Text": "Texte d'avertissement", @@ -983,7 +988,7 @@ "SSE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "SSE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", - "SSE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image a dépassé la limite maximale.", + "SSE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "SSE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "SSE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "SSE.Controllers.Main.waitText": "Veuillez patienter...", @@ -1571,7 +1576,7 @@ "SSE.Views.ChartSettingsDlg.textGroup": "Groupe de graphiques sparkline", "SSE.Views.ChartSettingsDlg.textHide": "Masquer", "SSE.Views.ChartSettingsDlg.textHideAxis": "Masquer l'axe", - "SSE.Views.ChartSettingsDlg.textHigh": "En haut", + "SSE.Views.ChartSettingsDlg.textHigh": "Haut", "SSE.Views.ChartSettingsDlg.textHorAxis": "Axe horizontal", "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Second axe horizontal", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", @@ -1586,11 +1591,11 @@ "SSE.Views.ChartSettingsDlg.textLabelInterval": "Intervalle entre les étiquettes", "SSE.Views.ChartSettingsDlg.textLabelOptions": "Options d'étiquettes", "SSE.Views.ChartSettingsDlg.textLabelPos": "Position de l'étiquette", - "SSE.Views.ChartSettingsDlg.textLayout": "Disposition", + "SSE.Views.ChartSettingsDlg.textLayout": "Mise en page", "SSE.Views.ChartSettingsDlg.textLeft": "À gauche", "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Superposition à gauche", "SSE.Views.ChartSettingsDlg.textLegendBottom": "En bas", - "SSE.Views.ChartSettingsDlg.textLegendLeft": "A gauche", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "À gauche", "SSE.Views.ChartSettingsDlg.textLegendPos": "Légende", "SSE.Views.ChartSettingsDlg.textLegendRight": "A droite", "SSE.Views.ChartSettingsDlg.textLegendTop": "En haut", @@ -1648,7 +1653,7 @@ "SSE.Views.ChartSettingsDlg.textTwoCell": "Déplacer et dimensionner avec des cellules", "SSE.Views.ChartSettingsDlg.textType": "Type", "SSE.Views.ChartSettingsDlg.textTypeData": "Type et données", - "SSE.Views.ChartSettingsDlg.textUnits": "Unités de l'affichage", + "SSE.Views.ChartSettingsDlg.textUnits": "Unités d'affichage", "SSE.Views.ChartSettingsDlg.textValue": "Valeur", "SSE.Views.ChartSettingsDlg.textVertAxis": "Axe vertical", "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Second axe vertical", @@ -1785,7 +1790,7 @@ "SSE.Views.DocumentHolder.advancedShapeText": "Paramètres avancés de la forme", "SSE.Views.DocumentHolder.advancedSlicerText": "Paramètres avancés du segment", "SSE.Views.DocumentHolder.bottomCellText": "Aligner en bas", - "SSE.Views.DocumentHolder.bulletsText": "Puces et Numérotation", + "SSE.Views.DocumentHolder.bulletsText": "Puces et Numéros", "SSE.Views.DocumentHolder.centerCellText": "Aligner au centre", "SSE.Views.DocumentHolder.chartText": "Paramètres du graphique avancés", "SSE.Views.DocumentHolder.deleteColumnText": "Colonne", @@ -1871,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Texte", "SSE.Views.DocumentHolder.txtColumn": "Colonne entière", "SSE.Views.DocumentHolder.txtColumnWidth": "Définir la largeur de colonne", + "SSE.Views.DocumentHolder.txtCondFormat": "Mise en forme conditionnelle", "SSE.Views.DocumentHolder.txtCopy": "Copier", "SSE.Views.DocumentHolder.txtCurrency": "Monétaire", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Largeur de colonne personnalisée", @@ -1919,7 +1925,7 @@ "SSE.Views.DocumentHolder.txtUngroup": "Dissocier", "SSE.Views.DocumentHolder.txtWidth": "Largeur", "SSE.Views.DocumentHolder.vertAlignText": "Alignement vertical", - "SSE.Views.FieldSettingsDialog.strLayout": "Disposition", + "SSE.Views.FieldSettingsDialog.strLayout": "Mise en page", "SSE.Views.FieldSettingsDialog.strSubtotals": "Sous-totaux", "SSE.Views.FieldSettingsDialog.textReport": "Formulaire de rapport ", "SSE.Views.FieldSettingsDialog.textTitle": "Paramètres de champ", @@ -1995,7 +2001,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapide", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting de la police", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Ajouter une version dans l'espace de stockage en cliquant Enregistrer ou Ctrl+S", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "La langue de formule", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Langage de formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activer l'affichage des commentaires", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Réglages macros", @@ -2087,7 +2093,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Général", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Paramètres de la page", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Vérification de l'orthographe", - "SSE.Views.FormatRulesEditDlg.fillColor": "Couleur d'arrière-plan", + "SSE.Views.FormatRulesEditDlg.fillColor": "Couleur de remplissage", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertissement", "SSE.Views.FormatRulesEditDlg.text2Scales": "Échelle à deux couleurs", "SSE.Views.FormatRulesEditDlg.text3Scales": "Echelle de 3 couleurs", @@ -2175,11 +2181,12 @@ "SSE.Views.FormatRulesEditDlg.tipBorders": "Bordures", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Format de nombre", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Comptabilité", - "SSE.Views.FormatRulesEditDlg.txtCurrency": "Monnaie", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Monétaire", "SSE.Views.FormatRulesEditDlg.txtDate": "Date", "SSE.Views.FormatRulesEditDlg.txtEmpty": "Ce champ est obligatoire", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Général", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Aucune icône", "SSE.Views.FormatRulesEditDlg.txtNumber": "Nombre", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Pourcentage", "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientifique", @@ -2306,7 +2313,7 @@ "SSE.Views.HeaderFooterDialog.textHeader": "En-tête", "SSE.Views.HeaderFooterDialog.textInsert": "Insérer", "SSE.Views.HeaderFooterDialog.textItalic": "Italique", - "SSE.Views.HeaderFooterDialog.textLeft": "Gauche", + "SSE.Views.HeaderFooterDialog.textLeft": "À gauche", "SSE.Views.HeaderFooterDialog.textMaxError": "La chaîne de texte que vous avez saisie est trop longue. Réduisez le nombre de caractères.", "SSE.Views.HeaderFooterDialog.textNewColor": "Couleur personnalisée", "SSE.Views.HeaderFooterDialog.textOdd": "Page impaire", @@ -2325,7 +2332,7 @@ "SSE.Views.HeaderFooterDialog.tipFontName": "Police", "SSE.Views.HeaderFooterDialog.tipFontSize": "Taille de la police", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Afficher", - "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Lier à", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Lien vers", "SSE.Views.HyperlinkSettingsDialog.strRange": "Plage", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Feuille", "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copier", @@ -2381,7 +2388,7 @@ "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Déplacer et dimensionner avec des cellules", "SSE.Views.ImageSettingsAdvanced.textVertically": "Verticalement", - "SSE.Views.LeftMenu.tipAbout": "A propos", + "SSE.Views.LeftMenu.tipAbout": "À propos", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Commentaires", "SSE.Views.LeftMenu.tipFile": "Fichier", @@ -2398,7 +2405,7 @@ "SSE.Views.MainSettingsPrint.okButtonText": "Enregistrer", "SSE.Views.MainSettingsPrint.strBottom": "En bas", "SSE.Views.MainSettingsPrint.strLandscape": "Paysage", - "SSE.Views.MainSettingsPrint.strLeft": "A gauche", + "SSE.Views.MainSettingsPrint.strLeft": "À gauche", "SSE.Views.MainSettingsPrint.strMargins": "Marges", "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", "SSE.Views.MainSettingsPrint.strPrint": "Imprimer", @@ -2470,14 +2477,14 @@ "SSE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "SSE.Views.ParagraphSettings.textAt": "à", "SSE.Views.ParagraphSettings.textAtLeast": "Au moins ", - "SSE.Views.ParagraphSettings.textAuto": "Plusieurs", + "SSE.Views.ParagraphSettings.textAuto": "Multiple ", "SSE.Views.ParagraphSettings.textExact": "Exactement", "SSE.Views.ParagraphSettings.txtAutoText": "Auto", "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Les onglets spécifiés s'affichent dans ce champ", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tout en majuscules", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double", "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après", @@ -2493,7 +2500,7 @@ "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", - "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effets", @@ -2506,7 +2513,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre", - "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", @@ -2624,7 +2631,7 @@ "SSE.Views.PrintSettings.btnPrint": "Enregistrer et imprimer", "SSE.Views.PrintSettings.strBottom": "En bas", "SSE.Views.PrintSettings.strLandscape": "Paysage", - "SSE.Views.PrintSettings.strLeft": "A gauche", + "SSE.Views.PrintSettings.strLeft": "À gauche", "SSE.Views.PrintSettings.strMargins": "Marges", "SSE.Views.PrintSettings.strPortrait": "Portrait", "SSE.Views.PrintSettings.strPrint": "Imprimer", @@ -2642,7 +2649,7 @@ "SSE.Views.PrintSettings.textFitRows": "Ajuster toutes les lignes à une page", "SSE.Views.PrintSettings.textHideDetails": "Masquer détails", "SSE.Views.PrintSettings.textIgnore": "Ignorer la zone d'impression", - "SSE.Views.PrintSettings.textLayout": "Disposition", + "SSE.Views.PrintSettings.textLayout": "Mise en page", "SSE.Views.PrintSettings.textPageOrientation": "Orientation de la page", "SSE.Views.PrintSettings.textPageScaling": "Mise à l'échelle", "SSE.Views.PrintSettings.textPageSize": "Taille de la page", @@ -2780,7 +2787,7 @@ "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes", - "SSE.Views.ShapeSettingsAdvanced.textLeft": "A gauche", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "À gauche", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Onglet", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules", @@ -2900,7 +2907,7 @@ "SSE.Views.SortDialog.textDesc": "Descendant", "SSE.Views.SortDialog.textDown": "Passer au niveau inférieur ", "SSE.Views.SortDialog.textFontColor": "Couleur de police", - "SSE.Views.SortDialog.textLeft": "A gauche", + "SSE.Views.SortDialog.textLeft": "À gauche", "SSE.Views.SortDialog.textMoreCols": "(Plus de colonnes...)", "SSE.Views.SortDialog.textMoreRows": "(Plus de lignes...)", "SSE.Views.SortDialog.textNone": "Rien", @@ -3263,7 +3270,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientation de la page", "SSE.Views.Toolbar.tipPageSize": "Taille de la page", "SSE.Views.Toolbar.tipPaste": "Coller", - "SSE.Views.Toolbar.tipPrColor": "Couleur d'arrière-plan", + "SSE.Views.Toolbar.tipPrColor": "Couleur de remplissage", "SSE.Views.Toolbar.tipPrint": "Imprimer", "SSE.Views.Toolbar.tipPrintArea": "Zone d'impression", "SSE.Views.Toolbar.tipPrintTitles": "Titres à imprimer", @@ -3314,7 +3321,7 @@ "SSE.Views.Toolbar.txtPercentage": "Pourcentage", "SSE.Views.Toolbar.txtPound": "£ Livre", "SSE.Views.Toolbar.txtRouble": "₽ Rouble", - "SSE.Views.Toolbar.txtScheme1": "Bureau", + "SSE.Views.Toolbar.txtScheme1": "Office", "SSE.Views.Toolbar.txtScheme10": "Médian", "SSE.Views.Toolbar.txtScheme11": "Métro", "SSE.Views.Toolbar.txtScheme12": "Module", @@ -3328,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Niveaux de gris", "SSE.Views.Toolbar.txtScheme20": "Urbain", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "New Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspect", "SSE.Views.Toolbar.txtScheme5": "Civique", @@ -3404,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nouveau", "SSE.Views.ViewTab.textDefault": "Par défaut", "SSE.Views.ViewTab.textFormula": "Barre de formule", + "SSE.Views.ViewTab.textFreezeCol": "Verrouiller la première colonne", + "SSE.Views.ViewTab.textFreezeRow": "Verouiller la ligne supérieure", "SSE.Views.ViewTab.textGridlines": "Quadrillage", "SSE.Views.ViewTab.textHeadings": "En-têtes", "SSE.Views.ViewTab.textManager": "Gestionnaire d'affichage", + "SSE.Views.ViewTab.textUnFreeze": "Libérer les volets", + "SSE.Views.ViewTab.textZeros": "Afficher des zéros", "SSE.Views.ViewTab.textZoom": "Changer l'échelle", "SSE.Views.ViewTab.tipClose": "Fermer l'aperçu d'une feuille", "SSE.Views.ViewTab.tipCreate": "Créer l'aperçu d'une feuille", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index b85237986d..7773e35f0e 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -49,6 +49,7 @@ "Common.define.chartData.textSurface": "Oppervlak", "Common.define.chartData.textWinLossSpark": "Winst/verlies", "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Formaat niet ingesteld", "Common.define.conditionalData.text1Above": "1 std dev boven", "Common.define.conditionalData.text1Below": "1 std dev onder", "Common.define.conditionalData.text2Above": "2 std dev boven", @@ -61,8 +62,46 @@ "Common.define.conditionalData.textBelow": "Onder", "Common.define.conditionalData.textBetween": "Tussen", "Common.define.conditionalData.textBlank": "Blanco", + "Common.define.conditionalData.textBlanks": "Bevat blanco's", "Common.define.conditionalData.textBottom": "Bodem", - "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", + "Common.define.conditionalData.textContains": "Bevat", + "Common.define.conditionalData.textDataBar": "Gegevensbalk", + "Common.define.conditionalData.textDate": "Datum", + "Common.define.conditionalData.textDuplicate": "Dupliceren", + "Common.define.conditionalData.textEnds": "Eindigt met", + "Common.define.conditionalData.textEqAbove": "Gelijk aan of hoger dan", + "Common.define.conditionalData.textEqBelow": "Gelijk aan of lager", + "Common.define.conditionalData.textEqual": "Gelijk aan", + "Common.define.conditionalData.textError": "Fout", + "Common.define.conditionalData.textErrors": "Bevat fouten", + "Common.define.conditionalData.textFormula": "Formule", + "Common.define.conditionalData.textGreater": "Groter dan", + "Common.define.conditionalData.textGreaterEq": "Groter dan of gelijk aan", + "Common.define.conditionalData.textIconSets": "Pictogrammensets", + "Common.define.conditionalData.textLast7days": "In de laatste 7 dagen", + "Common.define.conditionalData.textLastMonth": "Afgelopen maand", + "Common.define.conditionalData.textLastWeek": "Afgelopen week", + "Common.define.conditionalData.textLess": "Kleiner dan", + "Common.define.conditionalData.textLessEq": "Kleiner dan of gelijk aan", + "Common.define.conditionalData.textNextMonth": "Volgende maand", + "Common.define.conditionalData.textNextWeek": "Volgende week", + "Common.define.conditionalData.textNotBetween": "niet tussen", + "Common.define.conditionalData.textNotBlanks": "Bevat geen blanco's", + "Common.define.conditionalData.textNotContains": "Bevat niet", + "Common.define.conditionalData.textNotEqual": "Niet gelijk aan", + "Common.define.conditionalData.textNotErrors": "Bevat geen fouten", + "Common.define.conditionalData.textText": "Tekst", + "Common.define.conditionalData.textThisMonth": "Deze maand", + "Common.define.conditionalData.textThisWeek": "Deze week", + "Common.define.conditionalData.textToday": "Vandaag", + "Common.define.conditionalData.textTomorrow": "Morgen", + "Common.define.conditionalData.textTop": "Boven", + "Common.define.conditionalData.textUnique": "Uniek", + "Common.define.conditionalData.textValue": "Waarde is", + "Common.define.conditionalData.textYesterday": "Gisteren", + "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en het als kopie opslaan.", + "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", + "Common.Translation.warnFileLockedBtnView": "Open voor lezen", "Common.UI.ColorButton.textAutoColor": "Automatisch", "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", @@ -88,6 +127,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Het document is gewijzigd door een andere gebruiker.
    Klik om uw wijzigingen op te slaan en de updates opnieuw te laden.", "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", + "Common.UI.Themes.txtThemeClassicLight": "Klassiek licht", + "Common.UI.Themes.txtThemeDark": "Donker", + "Common.UI.Themes.txtThemeLight": "Licht", "Common.UI.Window.cancelButtonText": "Annuleren", "Common.UI.Window.closeButtonText": "Sluiten", "Common.UI.Window.noButtonText": "Nee", @@ -113,11 +155,13 @@ "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoOpmaak terwijl u typt", "Common.Views.AutoCorrectDialog.textBy": "Door", "Common.Views.AutoCorrectDialog.textDelete": "Verwijder", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet en netwerkpaden met hyperlinks", "Common.Views.AutoCorrectDialog.textMathCorrect": "Wiskundige autocorrectie", "Common.Views.AutoCorrectDialog.textNewRowCol": "Voeg nieuwe rijen en kolommen toe aan de tabel", "Common.Views.AutoCorrectDialog.textRecognized": "Erkende functies", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "De volgende uitdrukkingen zijn erkende wiskunde uitdrukkingen. Ze worden niet automatisch gecursiveerd.", "Common.Views.AutoCorrectDialog.textReplace": "Vervangen", + "Common.Views.AutoCorrectDialog.textReplaceText": "Vervangen terwijl u typt", "Common.Views.AutoCorrectDialog.textReplaceType": "Tekst vervangen terwijl u typt", "Common.Views.AutoCorrectDialog.textReset": "Opnieuw instellen", "Common.Views.AutoCorrectDialog.textResetAll": "Terugzetten naar standaardinstelling", @@ -196,11 +240,15 @@ "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", + "Common.Views.OpenDialog.textInvalidRange": "Ongeldig celbereik", + "Common.Views.OpenDialog.textSelectData": "Gegevens selecteren", "Common.Views.OpenDialog.txtAdvanced": "Geavanceerd", "Common.Views.OpenDialog.txtColon": "Dubbele punt", "Common.Views.OpenDialog.txtComma": "Komma", "Common.Views.OpenDialog.txtDelimiter": "Scheidingsteken", - "Common.Views.OpenDialog.txtEncoding": "Versleuteling", + "Common.Views.OpenDialog.txtDestData": "Kies waar de data moet komen", + "Common.Views.OpenDialog.txtEmpty": "Dit veld is vereist", + "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtOther": "Overige", @@ -246,6 +294,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus", "Common.Views.ReviewChanges.tipCommentRem": "Alle opmerkingen verwijderen", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Verwijder huidige opmerking", + "Common.Views.ReviewChanges.tipCommentResolve": "Opmerkingen oplossen", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Los huidige opmerkingen op", "Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis", "Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen", "Common.Views.ReviewChanges.tipReview": "Wijzigingen bijhouden", @@ -265,6 +315,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Verwijder mijn commentaar", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Verwijder mijn huidige opmerkingen", "Common.Views.ReviewChanges.txtCommentRemove": "Verwijder", + "Common.Views.ReviewChanges.txtCommentResolve": "Oplossen", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Alle opmerkingen oplossen", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Los huidige opmerkingen op", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Los mijn opmerkingen op", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Mijn huidige opmerkingen oplossen", "Common.Views.ReviewChanges.txtDocLang": "Taal", "Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)", "Common.Views.ReviewChanges.txtFinalCap": "Einde", @@ -352,15 +407,18 @@ "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label mag niet leeg zijn", "SSE.Controllers.DataTab.textColumns": "Kolommen", + "SSE.Controllers.DataTab.textEmptyUrl": "U moet de URL opgeven.", "SSE.Controllers.DataTab.textRows": "Rijen", "SSE.Controllers.DataTab.textWizard": "Tekst naar kolommen", "SSE.Controllers.DataTab.txtDataValidation": "Gegevens validatie", "SSE.Controllers.DataTab.txtExpand": "Uitvouwen", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "De gegevens naast de selectie worden niet verwijderd. Wilt u de selectie uitbreiden om de aangrenzende gegevens op te nemen of doorgaan met alleen de momenteel geselecteerde cellen?", "SSE.Controllers.DataTab.txtExtendDataValidation": "De selectie bevat enkele cellen zonder instellingen voor gegevensvalidatie.
    Wilt u gegevensvalidatie uitbreiden naar deze cellen? ", + "SSE.Controllers.DataTab.txtImportWizard": "Wizard Tekst importeren", "SSE.Controllers.DataTab.txtRemDuplicates": "Verwijder duplicaten", "SSE.Controllers.DataTab.txtRemoveDataValidation": "De selectie bevat meer dan één type validatie.
    Huidige instellingen wissen en doorgaan? ", "SSE.Controllers.DataTab.txtRemSelected": "Verwijder in geselecteerde", + "SSE.Controllers.DataTab.txtUrlTitle": "Plak een gegevens URL", "SSE.Controllers.DocumentHolder.alignmentText": "Uitlijning", "SSE.Controllers.DocumentHolder.centerText": "Centreren", "SSE.Controllers.DocumentHolder.deleteColumnText": "Kolom verwijderen", @@ -543,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", "SSE.Controllers.Main.confirmMoveCellRange": "Het doelcelbereik kan gegevens bevatten. Doorgaan met bewerking?", "SSE.Controllers.Main.confirmPutMergeRange": "De brongegevens bevatten samengevoegde cellen.
    Voordat de cellen in de tabel zijn geplakt, is de samenvoeging opgeheven.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formules in de kopregel worden verwijderd en omgezet in statische tekst.
    Wilt u doorgaan?", "SSE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", "SSE.Controllers.Main.criticalErrorExtText": "Klik op \"OK\" om terug te keren naar de lijst met documenten.", "SSE.Controllers.Main.criticalErrorTitle": "Fout", @@ -593,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", "SSE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", "SSE.Controllers.Main.errorLabledColumnsPivot": "Gebruik gegevens die zijn georganiseerd als een lijst met gelabelde kolommen om een draaitabel te maken.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "De referentie voor de locatie of het gegevensbereik is ongeldig.", "SSE.Controllers.Main.errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", "SSE.Controllers.Main.errorLockedCellPivot": "U kunt geen data veranderen in een draaitabel.", "SSE.Controllers.Main.errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", @@ -604,9 +664,11 @@ "SSE.Controllers.Main.errorOpenWarning": "Een van de bestandsformules overschrijdt de limiet van 8192 tekens.
    De formule is verwijderd.", "SSE.Controllers.Main.errorOperandExpected": "De syntaxis van de ingevoerde functie is niet juist. Controleer of een van de haakjes '(' of ')' ontbreekt.", "SSE.Controllers.Main.errorPasteMaxRange": "Het te kopiëren gebied komt niet overeen met het plakgebied.
    Selecteer een gebied met dezelfde grootte of klik op de eerste cel van een rij om de gekopieerde cellen te plakken.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Deze actie kan niet worden uitgevoerd bij een selectie van meerdere bereiken.
    Selecteer een enkel bereik en probeer opnieuw.", "SSE.Controllers.Main.errorPasteSlicerError": "Tabelslicers kunnen niet van de ene werkmap naar de andere worden gekopieerd.", "SSE.Controllers.Main.errorPivotGroup": "Kan die selectie niet groeperen.", "SSE.Controllers.Main.errorPivotOverlap": "Een draaitabel mag een tabel niet overlappen.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Het rapport van de draaitabel is opgeslagen zonder de onderliggende gegevens.
    Gebruik de 'Verversen' knop om het rapport bij te werken.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Helaas is het met de huidige programmaversie niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
    Deze beperking wordt opgeheven in komende releases.", "SSE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt", "SSE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", @@ -614,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw.", "SSE.Controllers.Main.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", "SSE.Controllers.Main.errorSetPassword": "Wachtwoord kon niet worden ingesteld. ", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Locatieverwijzing is niet geldig omdat de cellen niet allemaal in dezelfde kolom of rij staan.
    Selecteer cellen die allemaal in dezelfde kolom of rij staan.", "SSE.Controllers.Main.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", "SSE.Controllers.Main.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
    Neem contact op met de beheerder van de documentserver.", "SSE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
    Neem contact op met de beheerder van de documentserver.", @@ -670,12 +733,13 @@ "SSE.Controllers.Main.textPaidFeature": "Betaalde optie", "SSE.Controllers.Main.textPleaseWait": "De bewerking kan meer tijd dan verwacht in beslag nemen. Even geduld...", "SSE.Controllers.Main.textRecalcFormulas": "Formules worden berekend...", - "SSE.Controllers.Main.textRemember": "Onthoud voorkeur", + "SSE.Controllers.Main.textRemember": "Voorkeur onthouden voor alle bestanden", "SSE.Controllers.Main.textRenameError": "Gebruikersnaam mag niet leeg zijn. ", "SSE.Controllers.Main.textRenameLabel": "Voer een naam in die voor samenwerking moet worden gebruikt ", "SSE.Controllers.Main.textShape": "Vorm", "SSE.Controllers.Main.textStrict": "Strikte modus", "SSE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
    Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", "SSE.Controllers.Main.textYes": "Ja", "SSE.Controllers.Main.titleLicenseExp": "Licentie vervallen", "SSE.Controllers.Main.titleRecalcFormulas": "Berekenen...", @@ -705,7 +769,7 @@ "SSE.Controllers.Main.txtLines": "Lijnen", "SSE.Controllers.Main.txtMath": "Wiskunde", "SSE.Controllers.Main.txtMinutes": "minuten", - "SSE.Controllers.Main.txtMonths": "maanden", + "SSE.Controllers.Main.txtMonths": "Maanden", "SSE.Controllers.Main.txtMultiSelect": "Meerdere selecteren (Alt + S)", "SSE.Controllers.Main.txtOr": "%1 of %2", "SSE.Controllers.Main.txtPage": "Pagina", @@ -713,6 +777,7 @@ "SSE.Controllers.Main.txtPages": "Pagina's", "SSE.Controllers.Main.txtPreparedBy": "Voorbereid door", "SSE.Controllers.Main.txtPrintArea": "Print_Bereik", + "SSE.Controllers.Main.txtQuarter": "Kwart", "SSE.Controllers.Main.txtQuarters": "Kwartalen ", "SSE.Controllers.Main.txtRectangles": "Rechthoeken", "SSE.Controllers.Main.txtRow": "Rij", @@ -923,7 +988,7 @@ "SSE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "SSE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximaal toegestane afbeeldingsgrootte overschreden.", + "SSE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", "SSE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "SSE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "SSE.Controllers.Main.waitText": "Een moment geduld", @@ -962,9 +1027,11 @@ "SSE.Controllers.Toolbar.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", "SSE.Controllers.Toolbar.textAccent": "Accenten", "SSE.Controllers.Toolbar.textBracket": "Haakjes", + "SSE.Controllers.Toolbar.textDirectional": "Directioneel", "SSE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.
    Voer een numerieke waarde tussen 1 en 409 in.", "SSE.Controllers.Toolbar.textFraction": "Breuken", "SSE.Controllers.Toolbar.textFunction": "Functies", + "SSE.Controllers.Toolbar.textIndicator": "Indicatoren", "SSE.Controllers.Toolbar.textInsert": "Invoegen", "SSE.Controllers.Toolbar.textIntegral": "Integralen", "SSE.Controllers.Toolbar.textLargeOperator": "Grote operators", @@ -974,7 +1041,9 @@ "SSE.Controllers.Toolbar.textOperator": "Operators", "SSE.Controllers.Toolbar.textPivot": "Draaitabel", "SSE.Controllers.Toolbar.textRadical": "Wortels", + "SSE.Controllers.Toolbar.textRating": "Beoordelingen", "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Vormen", "SSE.Controllers.Toolbar.textSymbols": "Symbolen", "SSE.Controllers.Toolbar.textWarning": "Waarschuwing", "SSE.Controllers.Toolbar.txtAccent_Accent": "Aigu", @@ -1365,11 +1434,15 @@ "SSE.Views.CellSettings.strWrap": "Tekstterugloop", "SSE.Views.CellSettings.textAngle": "Hoek", "SSE.Views.CellSettings.textBackColor": "Arcering", - "SSE.Views.CellSettings.textBackground": "Arcering", + "SSE.Views.CellSettings.textBackground": "Achtergrondkleur", "SSE.Views.CellSettings.textBorderColor": "Kleur", "SSE.Views.CellSettings.textBorders": "Randstijl", + "SSE.Views.CellSettings.textClearRule": "Wis regels", "SSE.Views.CellSettings.textColor": "Kleuropvulling", + "SSE.Views.CellSettings.textColorScales": "Kleurschalen", + "SSE.Views.CellSettings.textCondFormat": "Conditionele opmaak", "SSE.Views.CellSettings.textControl": "Tekstbeheer", + "SSE.Views.CellSettings.textDataBars": "Gegevensbalken", "SSE.Views.CellSettings.textDirection": "Richting", "SSE.Views.CellSettings.textFill": "Vullen", "SSE.Views.CellSettings.textForeground": "Voorgrondkleur", @@ -1377,7 +1450,10 @@ "SSE.Views.CellSettings.textGradientColor": "Kleur", "SSE.Views.CellSettings.textGradientFill": "Vulling met kleurovergang", "SSE.Views.CellSettings.textIndent": "Inspringen ", + "SSE.Views.CellSettings.textItems": "Items", "SSE.Views.CellSettings.textLinear": "Lineair", + "SSE.Views.CellSettings.textManageRule": "Regels beheren", + "SSE.Views.CellSettings.textNewRule": "Nieuwe regel", "SSE.Views.CellSettings.textNoFill": "Geen vulling", "SSE.Views.CellSettings.textOrientation": "Tekstoriëntatie", "SSE.Views.CellSettings.textPattern": "Patroon", @@ -1385,6 +1461,10 @@ "SSE.Views.CellSettings.textPosition": "Positie", "SSE.Views.CellSettings.textRadial": "Radiaal", "SSE.Views.CellSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen", + "SSE.Views.CellSettings.textSelection": "Van huidige selectie", + "SSE.Views.CellSettings.textThisPivot": "Van deze draaitabel", + "SSE.Views.CellSettings.textThisSheet": "Van dit werkblad", + "SSE.Views.CellSettings.textThisTable": "Van deze tabel", "SSE.Views.CellSettings.tipAddGradientPoint": "Kleurovergangpunt toevoegen", "SSE.Views.CellSettings.tipAll": "Buitenrand en alle binnenlijnen instellen", "SSE.Views.CellSettings.tipBottom": "Alleen buitenrand onder instellen", @@ -1596,12 +1676,21 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Gegevens selecteren", "SSE.Views.CreatePivotDialog.textTitle": "Maak een draaitabel", "SSE.Views.CreatePivotDialog.txtEmpty": "Dit veld is vereist", + "SSE.Views.CreateSparklineDialog.textDataRange": "Brongegevensbereik", + "SSE.Views.CreateSparklineDialog.textDestination": "Kies, waar de sparklines geplaatst moeten worden", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Ongeldig celbereik", + "SSE.Views.CreateSparklineDialog.textSelectData": "Gegevens selecteren", + "SSE.Views.CreateSparklineDialog.textTitle": "Sparklines creëren", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Dit veld is vereist", "SSE.Views.DataTab.capBtnGroup": "Groeperen", "SSE.Views.DataTab.capBtnTextCustomSort": "Aangepast sorteren", "SSE.Views.DataTab.capBtnTextDataValidation": "Gegevens validatie", "SSE.Views.DataTab.capBtnTextRemDuplicates": "Verwijder duplicaten", "SSE.Views.DataTab.capBtnTextToCol": "Tekst naar kolommen", "SSE.Views.DataTab.capBtnUngroup": "Groepering opheffen", + "SSE.Views.DataTab.capDataFromText": "Van Tekst/CSV", + "SSE.Views.DataTab.mniFromFile": "Gegevens uit een bestand ophalen", + "SSE.Views.DataTab.mniFromUrl": "Gegevens van een URL ophalen", "SSE.Views.DataTab.textBelow": "Samenvatting rijen onder detail", "SSE.Views.DataTab.textClear": "Duidelijke omtrek", "SSE.Views.DataTab.textColumns": "Kolommen loskoppelen van Groep", @@ -1610,6 +1699,7 @@ "SSE.Views.DataTab.textRightOf": "Overzichtskolommen rechts van detail", "SSE.Views.DataTab.textRows": "Rij loskoppelen van groep", "SSE.Views.DataTab.tipCustomSort": "Aangepast sorteren", + "SSE.Views.DataTab.tipDataFromText": "Gegevens uit een Text/CSV bestand ophalen", "SSE.Views.DataTab.tipDataValidation": "Gegevens validatie", "SSE.Views.DataTab.tipGroup": "Groepeer celbereik", "SSE.Views.DataTab.tipRemDuplicates": "Verwijder dubbele rijen van een blad", @@ -1733,6 +1823,7 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen", "SSE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen", "SSE.Views.DocumentHolder.textAverage": "Gemiddeld", + "SSE.Views.DocumentHolder.textBullets": "Opsommingstekens", "SSE.Views.DocumentHolder.textCount": "AANTAL", "SSE.Views.DocumentHolder.textCrop": "Uitsnijden", "SSE.Views.DocumentHolder.textCropFill": "Vullen", @@ -1751,6 +1842,7 @@ "SSE.Views.DocumentHolder.textMore": "Meer functies", "SSE.Views.DocumentHolder.textMoreFormats": "Meer indelingen", "SSE.Views.DocumentHolder.textNone": "Geen", + "SSE.Views.DocumentHolder.textNumbering": "Nummering", "SSE.Views.DocumentHolder.textReplace": "Afbeelding vervangen", "SSE.Views.DocumentHolder.textRotate": "Draaien", "SSE.Views.DocumentHolder.textRotate270": "Draaien 90° linksom", @@ -1784,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Tekst", "SSE.Views.DocumentHolder.txtColumn": "Hele kolom", "SSE.Views.DocumentHolder.txtColumnWidth": "Kolombreedte instellen", + "SSE.Views.DocumentHolder.txtCondFormat": "Conditionele opmaak", "SSE.Views.DocumentHolder.txtCopy": "Kopiëren", "SSE.Views.DocumentHolder.txtCurrency": "Valuta", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Aangepaste kolombreedte", @@ -1827,7 +1920,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Geselecteerde tekstkleur bovenaan", "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Tekst", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Geavanceerde tekstinstellingen", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Geavanceerde alinea-instellingen", "SSE.Views.DocumentHolder.txtTime": "Tijd", "SSE.Views.DocumentHolder.txtUngroup": "Groepering opheffen", "SSE.Views.DocumentHolder.txtWidth": "Breedte", @@ -1907,7 +2000,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaalscheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hints voor lettertype", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Altijd op server opslaan (anders op server opslaan bij sluiten document)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Altijd op de server opslaan in plaats van bij het sluiten van het document", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Taal formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Voorbeeld: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Weergave van opmerkingen inschakelen", @@ -1920,7 +2013,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Weergave van opgeloste opmerkingen inschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Scheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strikt", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thema", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thema van de interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Duizenden scheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Maateenheid", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Gebruik scheidingstekens op basis van regionale instellingen", @@ -1932,31 +2025,54 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "AutoHerstel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Automatisch opslaan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Gedeactiveerd", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Opslaan op server", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Tussenliggende versies bewaren", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Elke minuut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referentie stijl", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Wit-Russisch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgaars", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "standaard cache modus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Tsjechisch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Deens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Duits", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grieks", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Engels", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spaans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Fins", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Frans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hongaars", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiaans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commentaarweergave", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laotiaans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letlands", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "als OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Noors", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Nederlands", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Pools", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punt", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugees", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Roemeens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Alles inschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Schakel alle macro's in zonder een notificatie", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slowaaks", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Sloveens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Alles uitschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Schakel alle macro's uit zonder melding", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Zweeds", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turks", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Oekraïens", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamees", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Weergeef notificatie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "als Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinees", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Toepassen", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Woordenboek taal", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Negeer woorden in HOOFDLETTERS", @@ -1968,7 +2084,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Werkblad beveiligen", "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Met handtekening", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Spreadsheet bewerken", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad word verwijderd.
    Weet je zeker dat je door wilt gaan?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad zal worden verwijderd.
    Weet je zeker dat je door wilt gaan?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Deze spreadsheet is beveiligd met een wachtwoord", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Deze spreadsheet moet ondertekend worden.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Geldige handtekeningen zijn toegevoegd aan het werkblad. Dit werkblad is beveiligd tegen aanpassingen.", @@ -1977,7 +2093,8 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Algemeen", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Pagina-instellingen", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spellingcontrole", - "SSE.Views.FormatRulesEditDlg.fillColor": "Achtergrond kleur", + "SSE.Views.FormatRulesEditDlg.fillColor": "Opvulkleur", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Waarschuwing", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Kleurenschaal", "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Kleurenschaal", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Alle grenzen", @@ -1990,9 +2107,94 @@ "SSE.Views.FormatRulesEditDlg.textBorder": "Grens", "SSE.Views.FormatRulesEditDlg.textBordersColor": "Randen Kleur", "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Rand Stijl", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Onderranden", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Kan de voorwaardelijke opmaak niet toevoegen.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Middelpunt van de cel", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Verticale binnenranden", + "SSE.Views.FormatRulesEditDlg.textClear": "Wissen", + "SSE.Views.FormatRulesEditDlg.textColor": "Tekstkleur", + "SSE.Views.FormatRulesEditDlg.textContext": "Context", + "SSE.Views.FormatRulesEditDlg.textCustom": "Aangepast", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonale rand naar onder", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonale rand naar boven", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Voer een geldige formule in.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "De formule die u hebt ingevoerd is niet vertaald naar een getal, datum, tijd of tekenreeks.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Voer een waarde in.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "De door u ingevoerde waarde is geen geldig getal, datum, tijd of tekenreeks.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "De waarde voor de {0} moet groter zijn dan de waarde voor de {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Voer een getal in tussen {0} en {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Vullen", + "SSE.Views.FormatRulesEditDlg.textFormat": "Opmaak", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formule", + "SSE.Views.FormatRulesEditDlg.textGradient": "Kleurovergang", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "wanneer {0} {1} en", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "wanneer {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "wanneer de waarde gelijk is aan", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Een of meer reeksen van pictogramgegevens overlappen.
    Verander de pictogramgegevensreeksen zodat deze elkaar niet overlappen.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Pictogramstijl", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Binnenranden", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Ongeldig databereik", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "FOUT! Ongeldig celbereik", + "SSE.Views.FormatRulesEditDlg.textItalic": "Cursief", + "SSE.Views.FormatRulesEditDlg.textItem": "Item", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Links naar rechts", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Linkerranden", + "SSE.Views.FormatRulesEditDlg.textLongBar": "langste balk", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maximale waarde", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Horizontale binnenranden", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Gemiddelde", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimum waarde", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negatief", "SSE.Views.FormatRulesEditDlg.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Geen randen", + "SSE.Views.FormatRulesEditDlg.textNone": "Geen", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Een of meer van de opgegeven waarden is geen geldig percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "De opgegeven waarde {0} is geen geldig percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Een of meer van de opgegeven waarden is geen geldig percentiel.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "De opgegeven waarde {0} is geen geldig percentiel.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Buitenranden", + "SSE.Views.FormatRulesEditDlg.textPercent": "Procent", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentiel", + "SSE.Views.FormatRulesEditDlg.textPosition": "Positie", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positief", + "SSE.Views.FormatRulesEditDlg.textPresets": "Voorinstellingen", + "SSE.Views.FormatRulesEditDlg.textPreview": "Voorbeeld", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "U kunt geen relatieve verwijzingen gebruiken in voorwaardelijke opmaakcriteria voor kleurschalen, gegevensbalken en pictogrammensets.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Keer pictogrammen volgorde om", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Rechts naar links", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Rechterranden", + "SSE.Views.FormatRulesEditDlg.textRule": "Regel", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Zoals positief", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Gegevens Selecteren", + "SSE.Views.FormatRulesEditDlg.textShortBar": "Kortste balk", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Alleen balken weergeven", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Alleen symbol tonen", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Dit type verwijzing kan niet worden gebruikt in een formule voor voorwaardelijke opmaak.
    Verander de verwijzing naar een enkele cel, of gebruik de verwijzing met een werkbladfunctie, zoals =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Massief", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Doorhalen", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Bovenranden", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Onderstrepen", "SSE.Views.FormatRulesEditDlg.tipBorders": "Randen", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Getalnotatie", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Boekhouding", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Valuta", + "SSE.Views.FormatRulesEditDlg.txtDate": "Datum", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Dit veld is vereist", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Breuk", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Algemeen", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Geen icoon", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Getal", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Wetenschappelijk", + "SSE.Views.FormatRulesEditDlg.txtText": "Tekst", + "SSE.Views.FormatRulesEditDlg.txtTime": "Tijd", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Opmaakregel bewerken", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nieuwe opmaakregel", + "SSE.Views.FormatRulesManagerDlg.guestText": "Gast", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev boven het gemiddelde", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std dev onder het gemiddelde", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev boven het gemiddelde", @@ -2001,7 +2203,39 @@ "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev onder het gemiddelde", "SSE.Views.FormatRulesManagerDlg.textAbove": "Boven het gemiddelde", "SSE.Views.FormatRulesManagerDlg.textApply": "Solliciteer naar", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cel waarde begint met", "SSE.Views.FormatRulesManagerDlg.textBelow": "Onder het gemiddelde", + "SSE.Views.FormatRulesManagerDlg.textBetween": "is tussen {0} en {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cel waarde", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Gegradeerde kleurenschaal", + "SSE.Views.FormatRulesManagerDlg.textContains": "Cel waarde bevat", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "De waarde van de cel is blanco", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "De cel bevat een fout", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Verwijderen", + "SSE.Views.FormatRulesManagerDlg.textDown": "Verplaats regel naar beneden", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Waarden dupliceren", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Bewerken", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Cel waarde eindigt met", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Gelijk aan of boven het gemiddelde", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Gelijk aan of lager dan het gemiddelde", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Opmaak", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Pictogrammenset", + "SSE.Views.FormatRulesManagerDlg.textNew": "Nieuw", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "is niet tussen {0} en {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Cel waarde bevat niet", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "De waarde van de cel is niet blanco", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "De cel bevat geen fout", + "SSE.Views.FormatRulesManagerDlg.textRules": "Regel", + "SSE.Views.FormatRulesManagerDlg.textScope": "Toon opmaakregels voor", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Gegevens selecteren", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Huidige selectie", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Deze draaitabel", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Dit werkblad", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Deze tabel", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Unieke waarden", + "SSE.Views.FormatRulesManagerDlg.textUp": "Verplaats regel naar boven", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Dit element wordt bewerkt door een andere gebruiker.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditionele opmaak", "SSE.Views.FormatSettingsDialog.textCategory": "Categorie", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimaal", "SSE.Views.FormatSettingsDialog.textFormat": "Opmaak", @@ -2117,6 +2351,7 @@ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Dit veld is beperkt tot 2083 tekens", "SSE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen", "SSE.Views.ImageSettings.textCrop": "Uitsnijden", "SSE.Views.ImageSettings.textCropFill": "Vullen", @@ -2165,6 +2400,7 @@ "SSE.Views.LeftMenu.txtLimit": "Beperk toegang", "SSE.Views.LeftMenu.txtTrial": "TEST MODUS", "SSE.Views.LeftMenu.txtTrialDev": "Proefontwikkelaarsmodus", + "SSE.Views.MacroDialog.textMacro": "Macronaam", "SSE.Views.MacroDialog.textTitle": "Macro toewijzen", "SSE.Views.MainSettingsPrint.okButtonText": "Opslaan", "SSE.Views.MainSettingsPrint.strBottom": "Onder", @@ -2311,7 +2547,7 @@ "SSE.Views.PivotGroupDialog.textGreaterError": "Het eindnummer moet groter zijn dan het startnummer ", "SSE.Views.PivotGroupDialog.textHour": "uren", "SSE.Views.PivotGroupDialog.textMin": "minuten", - "SSE.Views.PivotGroupDialog.textMonth": "maanden", + "SSE.Views.PivotGroupDialog.textMonth": "Maanden", "SSE.Views.PivotGroupDialog.textNumDays": "Aantal dagen ", "SSE.Views.PivotGroupDialog.textQuart": "Kwartalen ", "SSE.Views.PivotGroupDialog.textSec": "Seconden", @@ -2450,7 +2686,7 @@ "SSE.Views.RightMenu.txtCellSettings": "Cel instellingen", "SSE.Views.RightMenu.txtChartSettings": "Grafiekinstellingen", "SSE.Views.RightMenu.txtImageSettings": "Afbeeldingsinstellingen", - "SSE.Views.RightMenu.txtParagraphSettings": "Tekstinstellingen", + "SSE.Views.RightMenu.txtParagraphSettings": "Alinea-instellingen", "SSE.Views.RightMenu.txtPivotSettings": "Draaitabel instellingen", "SSE.Views.RightMenu.txtSettings": "Algemene instellingen", "SSE.Views.RightMenu.txtShapeSettings": "Vorminstellingen", @@ -2479,7 +2715,7 @@ "SSE.Views.ShapeSettings.strPattern": "Patroon", "SSE.Views.ShapeSettings.strShadow": "Weergeef schaduw", "SSE.Views.ShapeSettings.strSize": "Grootte", - "SSE.Views.ShapeSettings.strStroke": "Streek", + "SSE.Views.ShapeSettings.strStroke": "Lijn", "SSE.Views.ShapeSettings.strTransparency": "Ondoorzichtigheid", "SSE.Views.ShapeSettings.strType": "Type", "SSE.Views.ShapeSettings.textAdvanced": "Geavanceerde instellingen tonen", @@ -2582,7 +2818,7 @@ "SSE.Views.SignatureSettings.strSigner": "Ondertekenaar", "SSE.Views.SignatureSettings.strValid": "Geldige handtekeningen", "SSE.Views.SignatureSettings.txtContinueEditing": "Hoe dan ook bewerken", - "SSE.Views.SignatureSettings.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad word verwijderd.
    Weet je zeker dat je door wilt gaan?", + "SSE.Views.SignatureSettings.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad zal worden verwijderd.
    Weet je zeker dat je door wilt gaan?", "SSE.Views.SignatureSettings.txtRemoveWarning": "Wilt u deze handtekening verwijderen?
    Het kan niet ongedaan worden gemaakt. ", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Deze spreadsheet moet ondertekend worden.", "SSE.Views.SignatureSettings.txtSigned": "Geldige handtekeningen zijn toegevoegd aan het werkblad. Dit werkblad is beveiligd tegen aanpassingen.", @@ -2731,7 +2967,7 @@ "SSE.Views.Spellcheck.txtSpelling": "Spelling", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopiëren naar einde)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Verplaatsen naar einde)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopiëren vóór blad", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Plakken vóór blad", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Vóór blad plaatsen", "SSE.Views.Statusbar.filteredRecordsText": "{0} van {1} records gefilterd", "SSE.Views.Statusbar.filteredText": "Filtermodus", @@ -2827,7 +3063,7 @@ "SSE.Views.TextArtSettings.strForeground": "Voorgrondkleur", "SSE.Views.TextArtSettings.strPattern": "Patroon", "SSE.Views.TextArtSettings.strSize": "Grootte", - "SSE.Views.TextArtSettings.strStroke": "Streek", + "SSE.Views.TextArtSettings.strStroke": "Lijn", "SSE.Views.TextArtSettings.strTransparency": "Ondoorzichtigheid", "SSE.Views.TextArtSettings.strType": "Type", "SSE.Views.TextArtSettings.textAngle": "Hoek", @@ -2867,6 +3103,7 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Hout", "SSE.Views.Toolbar.capBtnAddComment": "Opmerking toevoegen", + "SSE.Views.Toolbar.capBtnColorSchemas": "Kleurenschema", "SSE.Views.Toolbar.capBtnComment": "Opmerking", "SSE.Views.Toolbar.capBtnInsHeader": "Kopteksten/voetteksten", "SSE.Views.Toolbar.capBtnInsSlicer": "Slicers", @@ -2886,6 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "SSE.Views.Toolbar.capInsertImage": "Afbeelding", "SSE.Views.Toolbar.capInsertShape": "Vorm", + "SSE.Views.Toolbar.capInsertSpark": "Sparklines", "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.capInsertText": "Tekstvak", "SSE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand", @@ -2909,8 +3147,11 @@ "SSE.Views.Toolbar.textBottomBorders": "Onderranden", "SSE.Views.Toolbar.textCenterBorders": "Verticale binnenranden", "SSE.Views.Toolbar.textClearPrintArea": "Wis afdrukgebied", + "SSE.Views.Toolbar.textClearRule": "Wis Regels", "SSE.Views.Toolbar.textClockwise": "Rechtsom draaien", + "SSE.Views.Toolbar.textColorScales": "Kleurschalen", "SSE.Views.Toolbar.textCounterCw": "Linksom draaien", + "SSE.Views.Toolbar.textDataBars": "Gegevensbalken", "SSE.Views.Toolbar.textDelLeft": "Cellen naar links verplaatsen", "SSE.Views.Toolbar.textDelUp": "Cellen naar boven verplaatsen", "SSE.Views.Toolbar.textDiagDownBorder": "Diagonale rand naar onder", @@ -2924,9 +3165,11 @@ "SSE.Views.Toolbar.textInsideBorders": "Binnenranden", "SSE.Views.Toolbar.textInsRight": "Cellen naar rechts verplaatsen", "SSE.Views.Toolbar.textItalic": "Cursief", + "SSE.Views.Toolbar.textItems": "Items", "SSE.Views.Toolbar.textLandscape": "Liggend", "SSE.Views.Toolbar.textLeft": "Links:", "SSE.Views.Toolbar.textLeftBorders": "Linkerranden", + "SSE.Views.Toolbar.textManageRule": "Regels beheren", "SSE.Views.Toolbar.textManyPages": "Pagina's", "SSE.Views.Toolbar.textMarginsLast": "Laatste gebruik", "SSE.Views.Toolbar.textMarginsNarrow": "Smal", @@ -2936,6 +3179,7 @@ "SSE.Views.Toolbar.textMoreFormats": "Meer indelingen", "SSE.Views.Toolbar.textMorePages": "Meer pagina's", "SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.Toolbar.textNewRule": "Nieuwe regel", "SSE.Views.Toolbar.textNoBorders": "Geen randen", "SSE.Views.Toolbar.textOnePage": "Pagina", "SSE.Views.Toolbar.textOutBorders": "Buitenranden", @@ -2949,6 +3193,7 @@ "SSE.Views.Toolbar.textRotateUp": "Tekst omhoog draaien", "SSE.Views.Toolbar.textScale": "Schaal", "SSE.Views.Toolbar.textScaleCustom": "Aangepast", + "SSE.Views.Toolbar.textSelection": "Van huidige selectie", "SSE.Views.Toolbar.textSetPrintArea": "Stel het afdrukgebied in", "SSE.Views.Toolbar.textStrikeout": "Doorhalen", "SSE.Views.Toolbar.textSubscript": "Subscript", @@ -2958,11 +3203,14 @@ "SSE.Views.Toolbar.textTabData": "Gegevens", "SSE.Views.Toolbar.textTabFile": "Bestand", "SSE.Views.Toolbar.textTabFormula": "Formule", - "SSE.Views.Toolbar.textTabHome": "Home", + "SSE.Views.Toolbar.textTabHome": "Start", "SSE.Views.Toolbar.textTabInsert": "Invoegen", "SSE.Views.Toolbar.textTabLayout": "Pagina-indeling", "SSE.Views.Toolbar.textTabProtect": "Beveiliging", "SSE.Views.Toolbar.textTabView": "Bekijken", + "SSE.Views.Toolbar.textThisPivot": "Van deze draaitabel", + "SSE.Views.Toolbar.textThisSheet": "Van dit werkblad", + "SSE.Views.Toolbar.textThisTable": "Van deze tabel", "SSE.Views.Toolbar.textTop": "Boven:", "SSE.Views.Toolbar.textTopBorders": "Bovenranden", "SSE.Views.Toolbar.textUnderline": "Onderstrepen", @@ -2983,6 +3231,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Grafiektype wijzigen", "SSE.Views.Toolbar.tipClearStyle": "Wissen", "SSE.Views.Toolbar.tipColorSchemas": "Kleurenschema wijzigen", + "SSE.Views.Toolbar.tipCondFormat": "Conditionele opmaak", "SSE.Views.Toolbar.tipCopy": "Kopiëren", "SSE.Views.Toolbar.tipCopyStyle": "Stijl kopiëren", "SSE.Views.Toolbar.tipDecDecimal": "Minder decimalen", @@ -3010,6 +3259,7 @@ "SSE.Views.Toolbar.tipInsertOpt": "Cellen invoegen", "SSE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen", "SSE.Views.Toolbar.tipInsertSlicer": "Slicer invoegen", + "SSE.Views.Toolbar.tipInsertSpark": "Sparkline invoegen", "SSE.Views.Toolbar.tipInsertSymbol": "Symbool toevoegen", "SSE.Views.Toolbar.tipInsertTable": "Tabel invoegen", "SSE.Views.Toolbar.tipInsertText": "Tekstvak invoegen", @@ -3020,7 +3270,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Paginastand", "SSE.Views.Toolbar.tipPageSize": "Paginaformaat", "SSE.Views.Toolbar.tipPaste": "Plakken", - "SSE.Views.Toolbar.tipPrColor": "Achtergrondkleur", + "SSE.Views.Toolbar.tipPrColor": "Opvulkleur", "SSE.Views.Toolbar.tipPrint": "Afdrukken", "SSE.Views.Toolbar.tipPrintArea": "Print bereik", "SSE.Views.Toolbar.tipPrintTitles": "Titels afdrukken", @@ -3085,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Grijswaarden", "SSE.Views.Toolbar.txtScheme20": "Stedelijk", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "Nieuw kantoor", "SSE.Views.Toolbar.txtScheme3": "Toppunt", "SSE.Views.Toolbar.txtScheme4": "Aspect", "SSE.Views.Toolbar.txtScheme5": "Civiel", @@ -3161,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nieuw", "SSE.Views.ViewTab.textDefault": "Standaard", "SSE.Views.ViewTab.textFormula": "Formule balk", + "SSE.Views.ViewTab.textFreezeCol": "Blokkeer Eerste Kolom", + "SSE.Views.ViewTab.textFreezeRow": "Blokkeer Top Rij", "SSE.Views.ViewTab.textGridlines": "Rasterlijnen", "SSE.Views.ViewTab.textHeadings": "Koppen", "SSE.Views.ViewTab.textManager": "Weergave beheren", + "SSE.Views.ViewTab.textUnFreeze": "Blokkering deelvensters opheffen", + "SSE.Views.ViewTab.textZeros": "Nullen weergeven", "SSE.Views.ViewTab.textZoom": "Zoomen", "SSE.Views.ViewTab.tipClose": "Sluit bladweergave", "SSE.Views.ViewTab.tipCreate": "Maak bladweergave", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index ecc982da39..13311da51b 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Funções Reconhecidas", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "As seguintes expressões são expressões matemáticas reconhecidas. Eles não ficarão em itálico automaticamente.", "Common.Views.AutoCorrectDialog.textReplace": "Substituir", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir ao Digitar", "Common.Views.AutoCorrectDialog.textReplaceType": "Substitua o texto enquanto você digita", "Common.Views.AutoCorrectDialog.textReset": "Redefinir", "Common.Views.AutoCorrectDialog.textResetAll": "Voltar para predefinições", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Remover Duplicatas", "SSE.Controllers.DataTab.txtRemoveDataValidation": "A seleção contém mais de um tipo de validação.
    Configurações de corrente de partida e continua?", "SSE.Controllers.DataTab.txtRemSelected": "Remover em selecionado", + "SSE.Controllers.DataTab.txtUrlTitle": "Cole um URL de dados", "SSE.Controllers.DocumentHolder.alignmentText": "Alinhamento", "SSE.Controllers.DocumentHolder.centerText": "Centro", "SSE.Controllers.DocumentHolder.deleteColumnText": "Excluir coluna", @@ -599,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
    Você tem certeza que quer continuar?", "SSE.Controllers.Main.confirmMoveCellRange": "O intervalo de célula de destino pode conter dados. Continuar a operação?", "SSE.Controllers.Main.confirmPutMergeRange": "Os dados fontes contêm células mescladas.
    Elas foram desmescladas antes de serem coladas na tabela.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "As fórmulas na linha do cabeçalho serão removidas e convertidas em texto estático.
    Deseja continuar?", "SSE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.", "SSE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.", "SSE.Controllers.Main.criticalErrorTitle": "Erro", @@ -649,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "SSE.Controllers.Main.errorLabledColumnsPivot": "Para criar uma tabela dinâmica, você deve usar os dados organizados como uma lista com colunas rotuladas.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "A referência para o local ou intervalo de dados não é válida.", "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", "SSE.Controllers.Main.errorLockedCellPivot": "Você não pode alterar a data em uma tabela dinâmica.", "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", @@ -672,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "O documento ficou sem edição por muito tempo. Atualize a página.", "SSE.Controllers.Main.errorSessionToken": "A conexão com o servidor foi interrompida. Atualize a página.", "SSE.Controllers.Main.errorSetPassword": "Não foi possível definir a senha.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "A referência de local não é válida porque as células não estão todas na mesma coluna ou linha.
    Selecione células que estão todas em uma única coluna ou linha.", "SSE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", "SSE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente.
    Entre em contato com o administrador do Document Server.", "SSE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
    Entre em contato com o administrador do Document Server.", @@ -1871,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Texto", "SSE.Views.DocumentHolder.txtColumn": "Coluna inteira", "SSE.Views.DocumentHolder.txtColumnWidth": "Largura da coluna", + "SSE.Views.DocumentHolder.txtCondFormat": "Formatação condicional", "SSE.Views.DocumentHolder.txtCopy": "Copiar", "SSE.Views.DocumentHolder.txtCurrency": "Moeda", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Personalizar largura da coluna", @@ -2180,6 +2186,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Este campo é obrigatório", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fração", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Geral", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sem ícone", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Porcentagem", "SSE.Views.FormatRulesEditDlg.txtScientific": "Científico", @@ -3328,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Escala de cinza", "SSE.Views.Toolbar.txtScheme20": "Urbano", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "Novo Office", "SSE.Views.Toolbar.txtScheme3": "Ápice", "SSE.Views.Toolbar.txtScheme4": "Aspecto", "SSE.Views.Toolbar.txtScheme5": "Cívico", @@ -3404,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Novo", "SSE.Views.ViewTab.textDefault": "Padrão", "SSE.Views.ViewTab.textFormula": "Barra de fórmula", + "SSE.Views.ViewTab.textFreezeCol": "Congelar a primeira coluna", + "SSE.Views.ViewTab.textFreezeRow": "Congelar linha superior", "SSE.Views.ViewTab.textGridlines": "Linhas de grade", "SSE.Views.ViewTab.textHeadings": "Títulos", "SSE.Views.ViewTab.textManager": "Gerenciamento de visualização", + "SSE.Views.ViewTab.textUnFreeze": "Descongelar Painéis", + "SSE.Views.ViewTab.textZeros": "Mostrar zeros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Fechar visualização de folha", "SSE.Views.ViewTab.tipCreate": "Criar visualização de folha", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index ed82fffb2a..6a97afbd67 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -91,6 +91,14 @@ "Common.define.conditionalData.textNotEqual": "Nu este egal cu", "Common.define.conditionalData.textNotErrors": "Nu conține erori", "Common.define.conditionalData.textText": "Text", + "Common.define.conditionalData.textThisMonth": "Luna curentă", + "Common.define.conditionalData.textThisWeek": "Această săptămână", + "Common.define.conditionalData.textToday": "Astăzi", + "Common.define.conditionalData.textTomorrow": "Mâine", + "Common.define.conditionalData.textTop": "Sus", + "Common.define.conditionalData.textUnique": "Unice", + "Common.define.conditionalData.textValue": "Valoarea este", + "Common.define.conditionalData.textYesterday": "Ieri", "Common.Translation.warnFileLocked": "Fișierul este editat într-o altă aplicație. Puteți continua să editați și să-l salvați ca o copie.", "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", @@ -238,6 +246,7 @@ "Common.Views.OpenDialog.txtComma": "Virgulă", "Common.Views.OpenDialog.txtDelimiter": "Delimitator", "Common.Views.OpenDialog.txtDestData": "Alegeți locul unde se va plasa datele", + "Common.Views.OpenDialog.txtEmpty": "Câmp obligatoriu", "Common.Views.OpenDialog.txtEncoding": "Codificare", "Common.Views.OpenDialog.txtIncorrectPwd": "Parolă incorectă", "Common.Views.OpenDialog.txtOpenFile": "Introduceți parola pentru deschidere fișier", @@ -397,6 +406,7 @@ "Common.Views.UserNameDialog.textLabel": "Etichetă:", "Common.Views.UserNameDialog.textLabelError": "Etichetă trebuie completată", "SSE.Controllers.DataTab.textColumns": "Coloane", + "SSE.Controllers.DataTab.textEmptyUrl": "Trebuie să specificaţi URL-ul.", "SSE.Controllers.DataTab.textRows": "Rânduri", "SSE.Controllers.DataTab.textWizard": "Text în coloane", "SSE.Controllers.DataTab.txtDataValidation": "Validarea datelor", @@ -407,6 +417,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminare dubluri", "SSE.Controllers.DataTab.txtRemoveDataValidation": "Zona selectată conține mai multe tipuri de validare.
    Vreți să ștergeți setările curente și să continuați? ", "SSE.Controllers.DataTab.txtRemSelected": "Continuare în selecția curentă", + "SSE.Controllers.DataTab.txtUrlTitle": "Lipiti adresa URL a datelor", "SSE.Controllers.DocumentHolder.alignmentText": "Aliniere", "SSE.Controllers.DocumentHolder.centerText": "La centru", "SSE.Controllers.DocumentHolder.deleteColumnText": "Ștergere coloana", @@ -589,6 +600,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
    Sunteți sigur că doriți să continuați?", "SSE.Controllers.Main.confirmMoveCellRange": "Celulele din zonă de destinație pot conține datele. Doriți să continuați?", "SSE.Controllers.Main.confirmPutMergeRange": "Datele sursă conțin celule imbinate.
    Celulele au fost scindate înainte de lipire în tabel", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formile din rând antet vor fi eliminate și transfomate în text static.
    Sigur doriți să continuați?", "SSE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", "SSE.Controllers.Main.criticalErrorExtText": "Apăsați OK pentru a vă întoarce la lista cu documente", "SSE.Controllers.Main.criticalErrorTitle": "Eroare", @@ -639,6 +651,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", "SSE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Pentru a crea o tabelă Pivot, datele trebuie să fie organizate sub formă de listă care conține etichete pentru fiecare coloană. ", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Referința de localizare sau zona de date nu este validă.", "SSE.Controllers.Main.errorLockedAll": "Operațiunea nu poate fi efectuată deoarece foaia a fost blocată de către un alt utilizator.", "SSE.Controllers.Main.errorLockedCellPivot": "Nu puteți modifica datele manipulând tabel Pivot.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Deocamdată, nu puteți redenumi foaia deoarece foaia este redenumită de către un alt utilizator", @@ -647,21 +660,22 @@ "SSE.Controllers.Main.errorMoveSlicerError": "Slicere din tabel nu pot fi copiate dintr-un registru de calcul în altul.
    Încercați din nou și selectați întregul tabel și slicere.", "SSE.Controllers.Main.errorMultiCellFormula": "Formule de matrice cu mai multe celule nu sunt permise în tabele.", "SSE.Controllers.Main.errorNoDataToParse": "Datele pentru parsare nu au fost selectate.", - "SSE.Controllers.Main.errorOpenWarning": "O formulă din fișier depășește limita maximă de 8192 caractere.
    Formulă a fost eliminată.", + "SSE.Controllers.Main.errorOpenWarning": "O formulă din fișier depășește limita maximă de 8192 caractere.
    Formula a fost eliminată.", "SSE.Controllers.Main.errorOperandExpected": "Sintaxa funcției incorectă. Verificați încadrarea în paranteze - '(' sau ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Zona de copiere nu corespunde zonei de lipire.
    Pentru lipirea celulelor copiate, selectați o zonă de aceeași demensiune și faceți clic pe prima celula din rând.", + "SSE.Controllers.Main.errorPasteMaxRange": "Zona de copiere nu corespunde zonei de lipire.
    Pentru lipirea celulelor copiate, selectați o zonă de aceeași demensiune sau faceți clic pe prima celula din rând.", "SSE.Controllers.Main.errorPasteMultiSelect": "Operaţia nu poate fi efectuată asupra zonelor selectate multiple.
    Selectați o singură zonă și încercați încă o dată.", "SSE.Controllers.Main.errorPasteSlicerError": "Slicere din tabel nu pot fi copiate dintr-un registru de calcul în altul.", "SSE.Controllers.Main.errorPivotGroup": "Obiectele selectate nu pot fi combinate într-un grup.", "SSE.Controllers.Main.errorPivotOverlap": "Un raport Pivot Table nu poate suprapune un tabel.", "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Raportul Pivot Table a fost salvat fără datele subiacente.
    Faceți clic pe butonul Actualizare ca raportul să fie actualizat.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Din păcate, imprimarea a 1500 de pagini deodată nu este posibilă la veriunea curentă
    Această restricție va fi eliminată într-o versiunea nouă.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Din păcate, imprimarea a 1500 de pagini deodată nu este posibilă la versiunea curentă
    Această restricție va fi eliminată într-o versiunea nouă.", "SSE.Controllers.Main.errorProcessSaveResult": "Salverea a eșuat", "SSE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", "SSE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", "SSE.Controllers.Main.errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", "SSE.Controllers.Main.errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", "SSE.Controllers.Main.errorSetPassword": "Setarea parolei eșuată.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Referința de localizare nu este validă deoarece celulele nu sunt dintr-o singură coloană sau rând.
    Selectați celulele dintr-o singură coloană sau rând.", "SSE.Controllers.Main.errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", "SSE.Controllers.Main.errorToken": "Token de securitate din document este format în mod incorect.
    Contactați administratorul dvs. de Server Documente.", "SSE.Controllers.Main.errorTokenExpire": "Token de securitate din document a expirat.
    Contactați administratorul dvs. de Server Documente.", @@ -724,6 +738,7 @@ "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modul strict", "SSE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.
    Faceți clic pe Modul strict ca să comutați la modul Strict de editare colaborativă și să nu intrați în conflict cu alte persoane. Toate modificările vor fi trimise numai după ce le salvați. Ulilizati Setări avansate ale editorului ca să comutați între moduri de editare colaborativă. ", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "SSE.Controllers.Main.textYes": "Da", "SSE.Controllers.Main.titleLicenseExp": "Licența a expirat", "SSE.Controllers.Main.titleRecalcFormulas": "Se calculează...", @@ -749,11 +764,11 @@ "SSE.Controllers.Main.txtFile": "Fişier", "SSE.Controllers.Main.txtGrandTotal": "Totaluri generale", "SSE.Controllers.Main.txtGroup": "Grup", - "SSE.Controllers.Main.txtHours": "Ore", + "SSE.Controllers.Main.txtHours": "Oră", "SSE.Controllers.Main.txtLines": "Linii", "SSE.Controllers.Main.txtMath": "Matematica", "SSE.Controllers.Main.txtMinutes": "Minute", - "SSE.Controllers.Main.txtMonths": "Luni", + "SSE.Controllers.Main.txtMonths": "Lună", "SSE.Controllers.Main.txtMultiSelect": "Selecții multiple (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 sau %2", "SSE.Controllers.Main.txtPage": "Pagina", @@ -968,7 +983,7 @@ "SSE.Controllers.Main.txtXAxis": "Axa X", "SSE.Controllers.Main.txtYAxis": "Axa Y", "SSE.Controllers.Main.txtYears": "Ani", - "SSE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", + "SSE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "SSE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", @@ -1398,7 +1413,7 @@ "SSE.Views.AutoFilterDialog.txtReapply": "Reaplicare", "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sortare pe baza culoare celulă", "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sortare pe baza culoare font", - "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "de la cea mai mare la cea mai mică valoare", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sortare de la cea mai mare la cea mai mică valoare", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sortare de la cea mai mică la cea mai mare valoare", "SSE.Views.AutoFilterDialog.txtSortOption": "Mai multe opțiuni de sortare...", "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtru text", @@ -1665,6 +1680,7 @@ "SSE.Views.CreateSparklineDialog.textInvalidRange": "Zona de celule nu este validă", "SSE.Views.CreateSparklineDialog.textSelectData": "Selectare date", "SSE.Views.CreateSparklineDialog.textTitle": "Creare diagrame sparkline", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Câmp obligatoriu", "SSE.Views.DataTab.capBtnGroup": "Grupare", "SSE.Views.DataTab.capBtnTextCustomSort": "Sortare particularizată", "SSE.Views.DataTab.capBtnTextDataValidation": "Validarea datelor", @@ -1859,6 +1875,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Întreaga coloană", "SSE.Views.DocumentHolder.txtColumnWidth": "Setarea coloanei la lățime", + "SSE.Views.DocumentHolder.txtCondFormat": "Formatarea condiționată", "SSE.Views.DocumentHolder.txtCopy": "Copiere", "SSE.Views.DocumentHolder.txtCurrency": "Monedă", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Lățimea particularizată coloană ", @@ -2048,6 +2065,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Se dezactivează toate", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Se dezactivează toate macrocomenzile, fără notificare", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Suedeză", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turcă", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraineană", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnameză", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Afișare notificări", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ca Windows", @@ -2073,6 +2093,7 @@ "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Setare pagină", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificarea ortografică", "SSE.Views.FormatRulesEditDlg.fillColor": "Culoare de umplere", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertisment", "SSE.Views.FormatRulesEditDlg.text2Scales": "Scară cu două culori", "SSE.Views.FormatRulesEditDlg.text3Scales": "Scară cu trei culori", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Toate borduri", @@ -2096,12 +2117,18 @@ "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Bordură diagonală descendentă", "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Bordură diagonală ascendentă", "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Introduceți o formulă valabilă.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Formula pe care ați introdus-o nu evaluează număr, data, ora sau șir.", "SSE.Views.FormatRulesEditDlg.textEmptyText": "Introduceți o valoare.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Valoarea pe care ați introdus-o nu este un număr, data, ora sau șir valid.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Valoarea pentru {0} trebuie să fie mai mare mai mare decât {1}.", "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Introduceți cifra între {0} și {1}.", "SSE.Views.FormatRulesEditDlg.textFill": "Umplere", "SSE.Views.FormatRulesEditDlg.textFormat": "Formatare", "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", "SSE.Views.FormatRulesEditDlg.textGradient": "Gradient", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "atunci când {0} {1} și", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "atunci când {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "atunci când valoarea este", "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Datele din una sau mai multe zone de pictograme se suprapun.
    Ajustați valorile pentru zonele de pictograme ca zonele să nu se suprapună.", "SSE.Views.FormatRulesEditDlg.textIconStyle": "Stil icoană", "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Borduri în interiorul ", @@ -2123,7 +2150,9 @@ "SSE.Views.FormatRulesEditDlg.textNoBorders": "Fără borduri", "SSE.Views.FormatRulesEditDlg.textNone": "Niciunul", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Una sau mai multe valori specificate sunt valorile procentuale nevalide", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Valoarea specificată {0} pentru procentaj nu este validă.", "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Una sau mail multe valori specificate sunt valorile de percentilă nevalide.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Valoarea specificată {0} pentru percentilă nu este validă.", "SSE.Views.FormatRulesEditDlg.textOutBorders": "Borduri în exteriorul", "SSE.Views.FormatRulesEditDlg.textPercent": "Procent", "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentilă", @@ -2131,6 +2160,7 @@ "SSE.Views.FormatRulesEditDlg.textPositive": "Pozitiv", "SSE.Views.FormatRulesEditDlg.textPresets": "Presetări", "SSE.Views.FormatRulesEditDlg.textPreview": "Previzualizare", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Utilizarea referințelor relative nu este acceptată pentru formatarea condiţionată utilizând scală de culori, bare de date sau seturi de pictogramă.", "SSE.Views.FormatRulesEditDlg.textReverse": "Ordine pictograme inversată", "SSE.Views.FormatRulesEditDlg.textRight2Left": "Dreapta la stânga", "SSE.Views.FormatRulesEditDlg.textRightBorders": "Borduri din dreapta", @@ -2140,21 +2170,27 @@ "SSE.Views.FormatRulesEditDlg.textShortBar": "bară cea mai scurtă", "SSE.Views.FormatRulesEditDlg.textShowBar": "Se afișează doar bara", "SSE.Views.FormatRulesEditDlg.textShowIcon": "Se afișează doar pictograma", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Acest tip de referință nu este acceptat în formula pentru formatarea condiționată.
    Faceți referire la o singură celulă sau utilizați o funcție de referință din foia de calcul cum este =SUM(A1:B5).", "SSE.Views.FormatRulesEditDlg.textSolid": "Solidă", "SSE.Views.FormatRulesEditDlg.textStrikeout": "Tăiere cu o linie", "SSE.Views.FormatRulesEditDlg.textSubscript": "Indice", "SSE.Views.FormatRulesEditDlg.textSuperscript": "Exponent", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Borduri de sus", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Subliniat", "SSE.Views.FormatRulesEditDlg.tipBorders": "Borduri", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Formatul de număr", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Contabilitate", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Monedă", "SSE.Views.FormatRulesEditDlg.txtDate": "Dată", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Câmp obligatoriu", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracție", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Nicio pictogramă", "SSE.Views.FormatRulesEditDlg.txtNumber": "Număr", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Procentaj", "SSE.Views.FormatRulesEditDlg.txtScientific": "Științific ", "SSE.Views.FormatRulesEditDlg.txtText": "Text", + "SSE.Views.FormatRulesEditDlg.txtTime": "Oră", "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editare regulă de formatare", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouă regulă de formatare", "SSE.Views.FormatRulesManagerDlg.guestText": "Invitat", @@ -2192,8 +2228,12 @@ "SSE.Views.FormatRulesManagerDlg.textScope": "Afișare reguli formatare pentru", "SSE.Views.FormatRulesManagerDlg.textSelectData": "Selectare date", "SSE.Views.FormatRulesManagerDlg.textSelection": "Selecția curentă", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Acest tabel pivot", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Această foaie de lucru ", "SSE.Views.FormatRulesManagerDlg.textThisTable": "Acest tabel", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Valorile unice", "SSE.Views.FormatRulesManagerDlg.textUp": "Mutare regulă în sus", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Acest element este editat de către un alt utilizator.", "SSE.Views.FormatRulesManagerDlg.txtTitle": "Formatarea condiționată", "SSE.Views.FormatSettingsDialog.textCategory": "Categorie", "SSE.Views.FormatSettingsDialog.textDecimal": "Zecimal", @@ -2504,9 +2544,9 @@ "SSE.Views.PivotGroupDialog.textEnd": "Se încheie la", "SSE.Views.PivotGroupDialog.textError": "Acest câmp este o valoare numerică", "SSE.Views.PivotGroupDialog.textGreaterError": "Numărul la sfârșit nu poate fi mai mic decât numărul la început ", - "SSE.Views.PivotGroupDialog.textHour": "Ore", + "SSE.Views.PivotGroupDialog.textHour": "Oră", "SSE.Views.PivotGroupDialog.textMin": "Minute", - "SSE.Views.PivotGroupDialog.textMonth": "Luni", + "SSE.Views.PivotGroupDialog.textMonth": "Lună", "SSE.Views.PivotGroupDialog.textNumDays": "Numărul de zile", "SSE.Views.PivotGroupDialog.textQuart": "Trimestre", "SSE.Views.PivotGroupDialog.textSec": "Secunde", @@ -2526,11 +2566,11 @@ "SSE.Views.PivotSettings.txtFieldSettings": "Setări câmp", "SSE.Views.PivotSettings.txtMoveBegin": "Mutare la început", "SSE.Views.PivotSettings.txtMoveColumn": "Se mută la etichetele de coloană", - "SSE.Views.PivotSettings.txtMoveDown": "Deplasare în jos", + "SSE.Views.PivotSettings.txtMoveDown": "Mutare în jos", "SSE.Views.PivotSettings.txtMoveEnd": "Mutare la sfârșit", "SSE.Views.PivotSettings.txtMoveFilter": "Se mută la filtrul de raport", "SSE.Views.PivotSettings.txtMoveRow": "Se mută la etichetele de rând", - "SSE.Views.PivotSettings.txtMoveUp": "Deplasare în sus", + "SSE.Views.PivotSettings.txtMoveUp": "Mutare în sus", "SSE.Views.PivotSettings.txtMoveValues": "Se mută la valori", "SSE.Views.PivotSettings.txtRemove": "Ștergere câmp", "SSE.Views.PivotSettingsAdvanced.strLayout": "Nume și aspect", @@ -2864,7 +2904,7 @@ "SSE.Views.SortDialog.textCopy": "Copiere nivel", "SSE.Views.SortDialog.textDelete": "Ștergere nivel", "SSE.Views.SortDialog.textDesc": "Descendent", - "SSE.Views.SortDialog.textDown": "Mutare în jos", + "SSE.Views.SortDialog.textDown": "Mutare cu un nivel mai jos", "SSE.Views.SortDialog.textFontColor": "Culoare font", "SSE.Views.SortDialog.textLeft": "Stânga", "SSE.Views.SortDialog.textMoreCols": "(Mai multe coloane...)", @@ -2878,7 +2918,7 @@ "SSE.Views.SortDialog.textSortBy": "Sortare după", "SSE.Views.SortDialog.textThenBy": "Apoi după", "SSE.Views.SortDialog.textTop": "Sus", - "SSE.Views.SortDialog.textUp": "Mutare în sus", + "SSE.Views.SortDialog.textUp": "Mutare cu un nivel mai sus", "SSE.Views.SortDialog.textValues": "Valori", "SSE.Views.SortDialog.textZA": "de la Z la A", "SSE.Views.SortDialog.txtInvalidRange": "Zonă de celule nu este validă.", @@ -3294,6 +3334,7 @@ "SSE.Views.Toolbar.txtScheme2": "Tonuri de gri", "SSE.Views.Toolbar.txtScheme20": "Urban", "SSE.Views.Toolbar.txtScheme21": "Vervă", + "SSE.Views.Toolbar.txtScheme22": "New Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspect", "SSE.Views.Toolbar.txtScheme5": "Civic", @@ -3370,9 +3411,13 @@ "SSE.Views.ViewTab.textCreate": "Nou", "SSE.Views.ViewTab.textDefault": "Implicit", "SSE.Views.ViewTab.textFormula": "Bara de formule", + "SSE.Views.ViewTab.textFreezeCol": "Înghețarea primei coloane", + "SSE.Views.ViewTab.textFreezeRow": "Înghețarea rândului de sus", "SSE.Views.ViewTab.textGridlines": "Linii de grilă", "SSE.Views.ViewTab.textHeadings": "Titluri", "SSE.Views.ViewTab.textManager": "Manager vizualizări", + "SSE.Views.ViewTab.textUnFreeze": "Dezghețare panouri", + "SSE.Views.ViewTab.textZeros": "Afișare un zero", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Închidere vizualizare de foi", "SSE.Views.ViewTab.tipCreate": "Creare vizualizări de foi", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 2443340056..56fbfd3c4f 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Распознанные функции", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Следующие выражения являются распознанными математическими функциями. Они не будут автоматически выделяться курсивом.", "Common.Views.AutoCorrectDialog.textReplace": "Заменить", + "Common.Views.AutoCorrectDialog.textReplaceText": "Заменять при вводе", "Common.Views.AutoCorrectDialog.textReplaceType": "Заменять текст при вводе", "Common.Views.AutoCorrectDialog.textReset": "Сброс", "Common.Views.AutoCorrectDialog.textResetAll": "Сбросить настройки", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Удалить дубликаты", "SSE.Controllers.DataTab.txtRemoveDataValidation": "Выделенная область содержит более одного условия.
    Удалить текущие параметры и продолжить?", "SSE.Controllers.DataTab.txtRemSelected": "Удалить в выделенном диапазоне", + "SSE.Controllers.DataTab.txtUrlTitle": "Вставьте URL-адрес данных", "SSE.Controllers.DocumentHolder.alignmentText": "Выравнивание", "SSE.Controllers.DocumentHolder.centerText": "По центру", "SSE.Controllers.DocumentHolder.deleteColumnText": "Удалить столбец", @@ -650,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "SSE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "SSE.Controllers.Main.errorLabledColumnsPivot": "Чтобы создать сводную таблицу, используйте данные, организованные в виде списка с заголовками столбцов.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Недействительная ссылка на расположение или диапазон данных.", "SSE.Controllers.Main.errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", "SSE.Controllers.Main.errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", "SSE.Controllers.Main.errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", @@ -673,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", "SSE.Controllers.Main.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", "SSE.Controllers.Main.errorSetPassword": "Не удалось задать пароль.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Ссылка на расположение недопустима, так как ячейки находятся в разных столбцах или строках.
    Выделите ячейки, расположенные в одном столбце или одной строке.", "SSE.Controllers.Main.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
    цена открытия, максимальная цена, минимальная цена, цена закрытия.", "SSE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.
    Пожалуйста, обратитесь к администратору Сервера документов.", "SSE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.
    Пожалуйста, обратитесь к администратору Сервера документов.", @@ -1872,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Текст", "SSE.Views.DocumentHolder.txtColumn": "Столбец", "SSE.Views.DocumentHolder.txtColumnWidth": "Задать ширину столбца", + "SSE.Views.DocumentHolder.txtCondFormat": "Условное форматирование", "SSE.Views.DocumentHolder.txtCopy": "Копировать", "SSE.Views.DocumentHolder.txtCurrency": "Денежный", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Особая ширина столбца", @@ -2166,7 +2171,7 @@ "SSE.Views.FormatRulesEditDlg.textShortBar": "самый короткий столбец", "SSE.Views.FormatRulesEditDlg.textShowBar": "Показывать только столбец", "SSE.Views.FormatRulesEditDlg.textShowIcon": "Показать только значок", - "SSE.Views.FormatRulesEditDlg.textSingleRef": "Такой тип ссылки нельзя использовать в формуле условного форматирования.
    Измените ссылку так, чтобы она указывала на одну ячейку, или поместите ссылку в функцию. Например: =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Такой тип ссылки нельзя использовать в формуле условного форматирования.
    Измените ссылку так, чтобы она указывала на одну ячейку, или поместите ссылку в функцию. Например: =СУММ(A1:B5).", "SSE.Views.FormatRulesEditDlg.textSolid": "Сплошной", "SSE.Views.FormatRulesEditDlg.textStrikeout": "Зачеркнутый", "SSE.Views.FormatRulesEditDlg.textSubscript": "Подстрочные знаки", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index fe4cd222ad..98f1b3b923 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -73,8 +73,35 @@ "notcriticalErrorTitle": "Advertiment", "SDK": { "txtAccent": "Accent", + "txtAll": "(Tots)", "txtArt": "El seu text aquí", + "txtBlank": "(en blanc)", + "txtByField": "%1 de %2", + "txtClearFilter": "Netejar el filtre (Alt+C)", + "txtColLbls": "Etiquetes de Columnes", + "txtColumn": "Columna", + "txtConfidential": "Confidencial", + "txtDate": "Data", + "txtDays": "Dies", "txtDiagramTitle": "Títol del Gràfic", + "txtFile": "Fitxer", + "txtGrandTotal": "Total General", + "txtGroup": "Grup", + "txtHours": "Hores", + "txtMinutes": "Minuts", + "txtMonths": "Mesos", + "txtMultiSelect": "Selecció Múltiple (Alt+S)", + "txtOr": "%1 o %2", + "txtPage": "Pàgina", + "txtPageOf": "Pàgina %1 de %2", + "txtPages": "Pàgines", + "txtPreparedBy": "Preparat per", + "txtPrintArea": "Àrea d'Impressió", + "txtQuarter": "Tri", + "txtQuarters": "Trimestres", + "txtRow": "Fila", + "txtRowLbls": "Etiquetes de Fila", + "txtSeconds": "Segons", "txtSeries": "Sèrie", "txtStyle_Bad": "Dolent", "txtStyle_Calculation": "Càlcul", @@ -97,8 +124,13 @@ "txtStyle_Title": "Nom", "txtStyle_Total": "Total", "txtStyle_Warning_Text": "Text d'Advertència", + "txtTab": "Pestanya", + "txtTable": "Taula", + "txtTime": "Hora", + "txtValues": "Valors", "txtXAxis": "Eix X", - "txtYAxis": "Eix Y" + "txtYAxis": "Eix Y", + "txtYears": "Anys" }, "textAnonymous": "Anònim", "textBuyNow": "Visitar lloc web", @@ -270,6 +302,7 @@ "textAddLink": "Afegir Enllaç", "textAddress": "Adreça", "textBack": "Enrere", + "textCancel": "Cancel·lar", "textChart": "Gràfic", "textComment": "Comentari", "textDisplay": "Mostrar", @@ -296,7 +329,11 @@ "textShape": "Forma", "textSheet": "Full", "textSortAndFilter": "Ordenar i Filtrar", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + "txtExpand": "Expandir i ordenar", + "txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. Voleu ampliar la selecció per incloure les dades adjacents o continuar amb l'ordenació de les cel·les actualment seleccionades?", + "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "txtSorting": "Ordenació", + "txtSortSelected": "Ordenar els objectes seleccionats" }, "Edit": { "notcriticalErrorTitle": "Advertiment", @@ -474,7 +511,9 @@ "textVerticalText": "Text Vertical", "textWrapText": "Ajustar el text", "textYen": "Yen", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "txtSortHigh2Low": "Ordenar de Major a Menor", + "txtSortLow2High": "Ordenar de Menor a Major" }, "Settings": { "advCSVOptions": "Trieu les opcions CSV", @@ -568,6 +607,26 @@ "txtEncoding": "Codificació", "txtIncorrectPwd": "La contrasenya és incorrecta", "txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", + "txtScheme1": "Oficina", + "txtScheme10": "Mitjana", + "txtScheme11": "Metro", + "txtScheme12": "Mòdul", + "txtScheme13": "Opulent", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Paper", + "txtScheme17": "Solstici", + "txtScheme18": "Tècnic", + "txtScheme19": "Excursió", + "txtScheme2": "Escala de grisos", + "txtScheme22": "Nova Oficina", + "txtScheme3": "Vèrtex", + "txtScheme4": "Aspecte", + "txtScheme5": "Cívic", + "txtScheme6": "Concurs", + "txtScheme7": "Patrimoni net", + "txtScheme8": "Flux", + "txtScheme9": "Fosa", "txtSpace": "Espai", "txtTab": "Pestanya", "warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les característiques, excepte el text.
    Esteu segur que voleu continuar?" diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index a4555508ce..96963e1b6b 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -73,8 +73,35 @@ "notcriticalErrorTitle": "Warnung", "SDK": { "txtAccent": "Akzent", + "txtAll": "(Alle)", "txtArt": "Text hier eingeben", + "txtBlank": "(leer)", + "txtByField": "%1 von %2", + "txtClearFilter": "Filter löschen (Alt+C)", + "txtColLbls": "Rubrikbezeichnung", + "txtColumn": "Rubrik", + "txtConfidential": "Vertraulich", + "txtDate": "Datum", + "txtDays": "Tage", "txtDiagramTitle": "Diagrammtitel", + "txtFile": "Datei", + "txtGrandTotal": "Gesamtsumme", + "txtGroup": "Gruppe", + "txtHours": "Öffnungszeiten", + "txtMinutes": "Minuten", + "txtMonths": "Monate", + "txtMultiSelect": "Mehrfachauswahl (Alt+S)", + "txtOr": "%1 oder %2", + "txtPage": "Seite", + "txtPageOf": "Seite %1 von %2", + "txtPages": "Seiten", + "txtPreparedBy": "Vorbereitet von", + "txtPrintArea": "Druckbereich", + "txtQuarter": "Quartal", + "txtQuarters": "Quartal", + "txtRow": "Zeile", + "txtRowLbls": "Zeilenbeschriftungen", + "txtSeconds": "Sekunden", "txtSeries": "Reihen", "txtStyle_Bad": "Schlecht", "txtStyle_Calculation": "Berechnung", @@ -97,8 +124,13 @@ "txtStyle_Title": "Titel", "txtStyle_Total": "Insgesamt", "txtStyle_Warning_Text": "Warnungstext", + "txtTab": "Tab", + "txtTable": "Tabelle", + "txtTime": "Zeit", + "txtValues": "Werte", "txtXAxis": "Achse X", - "txtYAxis": "Achse Y" + "txtYAxis": "Achse Y", + "txtYears": "Jahre" }, "textAnonymous": "Anonym", "textBuyNow": "Webseite besuchen", @@ -270,6 +302,7 @@ "textAddLink": "Link hinzufügen", "textAddress": "Adresse", "textBack": "Zurück", + "textCancel": "Abbrechen", "textChart": "Diagramm", "textComment": "Kommentar", "textDisplay": "Anzeigen", @@ -296,7 +329,11 @@ "textShape": "Form", "textSheet": "Blatt", "textSortAndFilter": "Sortieren und Filtern", - "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." + "txtExpand": "Erweitern und sortieren", + "txtExpandSort": "Die Daten neben der Auswahl werden nicht sortiert. Möchten Sie die Auswahl um die angrenzenden Daten erweitern oder nur mit der Sortierung der aktuell ausgewählten Zellen fortfahren?", + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "txtSorting": "Sortierung", + "txtSortSelected": "Ausgewählte sortieren" }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -474,7 +511,9 @@ "textVerticalText": "Vertikaler Text", "textWrapText": "Zeilenumbruch", "textYen": "Yen", - "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "txtSortHigh2Low": "Absteigend sortieren", + "txtSortLow2High": "Aufsteigend sortieren" }, "Settings": { "advCSVOptions": "CSV-Optionen auswählen", @@ -568,6 +607,26 @@ "txtEncoding": "Codierung ", "txtIncorrectPwd": "Passwort ist falsch", "txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Reichhaltig", + "txtScheme14": "Erker", + "txtScheme15": "Herkunft", + "txtScheme16": "Papier", + "txtScheme17": "Sonnenwende", + "txtScheme18": "Technik", + "txtScheme19": "Wanderung", + "txtScheme2": "Graustufe", + "txtScheme22": "Neues Office", + "txtScheme3": "Apex", + "txtScheme4": "Bildseitenverhältnis", + "txtScheme5": "bürgerlich", + "txtScheme6": "Halle", + "txtScheme7": "Kapital", + "txtScheme8": "Fluss", + "txtScheme9": "Gießerei", "txtSpace": "Leerzeichen", "txtTab": "Tab", "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
    Möchten Sie wirklich fortsetzen?" diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index b1794a7a93..59583c74d8 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -157,7 +157,7 @@ }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to back to the document list.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", @@ -197,7 +197,7 @@ "errorLockedCellPivot": "You cannot change data inside a pivot table.", "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cann't change a part of a merged cell", + "errorMoveRange": "Cannot change a part of a merged cell", "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index f49873cb99..540d9d9865 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -1,47 +1,215 @@ { "About": { - "textAbout": "A propos", + "textAbout": "À propos", "textAddress": "Adresse", - "textBack": "Retour" + "textBack": "Retour", + "textEmail": "E-mail", + "textPoweredBy": "Réalisation" }, "Common": { "Collaboration": { "textAddComment": "Ajouter un commentaire", "textAddReply": "Ajouter une réponse", - "textBack": "Retour" + "textBack": "Retour", + "textCancel": "Annuler", + "textCollaboration": "Collaboration", + "textComments": "Commentaires", + "textDeleteComment": "Supprimer commentaire", + "textDeleteReply": "Supprimer réponse", + "textDone": "Terminé", + "textEdit": "Modifier", + "textEditComment": "Modifier le commentaire", + "textEditReply": "Modifier la réponse", + "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", + "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?" + }, + "ThemeColorPalette": { + "textCustomColors": "Couleurs personnalisées" } }, "ContextMenu": { + "errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", "menuAddComment": "Ajouter un commentaire", - "menuAddLink": "Ajouter un lien" + "menuAddLink": "Ajouter un lien", + "menuCancel": "Annuler", + "menuCell": "Cellule", + "menuDelete": "Supprimer", + "menuEdit": "Modifier", + "menuFreezePanes": "Verrouiller les volets", + "menuHide": "Masquer", + "menuMerge": "Fusionner", + "menuMore": "Plus", + "menuOpenLink": "Ouvrir le lien", + "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "textDoNotShowAgain": "Ne plus afficher" }, "Controller": { "Main": { + "criticalErrorTitle": "Erreur", "SDK": { "txtAccent": "Accentuation", - "txtStyle_Bad": "Incorrect" + "txtAll": "(Tous)", + "txtBlank": "(vide)", + "txtByField": "%1 de %2", + "txtClearFilter": "Annuler les filtres (Alt+C)", + "txtColLbls": "Étiquettes de colonnes", + "txtColumn": "Colonne", + "txtConfidential": "Confidentiel", + "txtDate": "Date", + "txtDays": "Jours", + "txtDiagramTitle": "Titre du graphique", + "txtFile": "Fichier", + "txtGrandTotal": "Total général", + "txtGroup": "Grouper", + "txtHours": "Heures", + "txtMinutes": "Minutes", + "txtMonths": "Mois", + "txtMultiSelect": "Sélection multiple (Alt+S)", + "txtOr": "%1 ou %2", + "txtPage": "Page", + "txtPageOf": "Page %1 de %2", + "txtPages": "Pages", + "txtPreparedBy": "Préparé par", + "txtPrintArea": "Zone_d'impression", + "txtStyle_Bad": "Incorrect", + "txtStyle_Calculation": "Calcul", + "txtStyle_Check_Cell": "Vérifier la cellule", + "txtStyle_Comma": "Virgule", + "txtStyle_Currency": "Monétaire", + "txtStyle_Explanatory_Text": "Texte d'explication", + "txtStyle_Good": "Correct", + "txtStyle_Heading_1": "Titre 1", + "txtStyle_Heading_2": "Titre 2", + "txtStyle_Heading_3": "Titre 3", + "txtStyle_Heading_4": "Titre 4", + "txtStyle_Input": "Entrée", + "txtStyle_Linked_Cell": "Cellule liée", + "txtStyle_Neutral": "Neutre", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Remarque", + "txtStyle_Output": "Sortie", + "txtStyle_Percent": "Pour cent" }, - "textAnonymous": "Anonyme" + "textAnonymous": "Anonyme", + "textClose": "Fermer", + "textContactUs": "Contacter l'équipe de ventes", + "textGuest": "Invité", + "textNo": "Non", + "textNoLicenseTitle": "La limite de la licence est atteinte", + "textPaidFeature": "Fonction payante", + "titleServerVersion": "L'éditeur est mis à jour", + "warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.", + "warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.
    Veuillez contacter votre administrateur pour obtenir un accès complet" } }, "Error": { + "convertationTimeoutText": "Délai de conversion expiré.", + "criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents", + "criticalErrorTitle": "Erreur", + "downloadErrorText": "Échec du téléchargement.", "errorArgsRange": "Il y a une erreur dans la formule : Plage d'arguments incorrecte.", + "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", "errorCountArg": "Il y a une erreur dans la formule : nombre d'arguments incorrecte.", "errorCountArgExceed": "Il y a une erreur dans la formule : Nombre maximal d'arguments dépassé.", + "errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Contactez le support.", + "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", + "errorDataRange": "Plage de données incorrecte.", + "errorDefaultMessage": "Code d'erreur: %1", + "errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale", + "errorFileRequest": "Erreur externe.
    Erreur de demande du fichier. Contactez l'assistance technique.", + "errorFileVKey": "Erreur externe.
    Clé de sécurité incorrecte. Contactez l'assistance technique.", + "errorFillRange": "Il est impossible de remplir la plage de cellules sélectionnée.
    Toutes les cellules unies doivent être de la même taille.", "errorFormulaName": "Il y a une erreur dans la formule : nom de la formule incorrecte.", + "errorFormulaParsing": "Une erreur interne lors de l'analyse de la formule.", + "errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.", + "errorKeyExpire": "Descripteur de clés expiré", + "errorMoveRange": "Impossible de modifier une partie d'une cellule fusionnée", + "errorMultiCellFormula": "Formules de tableau plusieurs cellules ne sont pas autorisées dans les classeurs.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "errorUnexpectedGuid": "Erreur externe.
    GUID non prévue. Contactez l'assistance technique.", + "errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.", + "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", "errorWrongBracketsCount": "Il y a une erreur dans la formule : Mauvais nombre de parenthèses.", "errorWrongOperator": "Une erreur dans la formule. L'opérateur n'est pas valide. Corriger l'erreur ou presser Echap pour annuler l'édition de la formule.", "openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", - "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier" + "pastInMergeAreaError": "Impossible de modifier une partie d'une cellule fusionnée", + "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier", + "uploadImageFileCountMessage": "Aucune image chargée." + }, + "LongActions": { + "applyChangesTextText": "Chargement des données en cours...", + "applyChangesTitleText": "Chargement des données", + "confirmReplaceFormulaInTable": "Les formules de la ligne en-tête seront supprimées et transformées en texte statique.
    Voulez-vous continuer?", + "downloadTextText": "Téléchargement du document...", + "downloadTitleText": "Téléchargement du document", + "loadFontsTextText": "Chargement des données en cours...", + "loadFontsTitleText": "Chargement des données", + "loadFontTextText": "Chargement des données en cours...", + "loadFontTitleText": "Chargement des données", + "loadImagesTextText": "Chargement des images en cours...", + "loadImagesTitleText": "Chargement des images", + "loadImageTextText": "Chargement d'une image en cours...", + "loadImageTitleText": "Chargement d'une image", + "loadingDocumentTextText": "Chargement du document...", + "loadingDocumentTitleText": "Chargement du document", + "openTextText": "Ouverture du document...", + "openTitleText": "Ouverture du document", + "printTitleText": "Impression du document", + "savePreparingText": "Préparation à l'enregistrement ", + "savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "textLoadingDocument": "Chargement du document", + "textNo": "Non", + "textOk": "OK", + "waitText": "Veuillez patienter..." }, "Statusbar": { - "textErrNameWrongChar": "Un nom de feuille ne peut pas contenir les caractères suivants : \\, /, *, ?, [, ], :" + "textCancel": "Annuler", + "textDelete": "Supprimer", + "textDuplicate": "Dupliquer", + "textErrNameWrongChar": "Un nom de feuille ne peut pas contenir les caractères suivants : \\, /, *, ?, [, ], :", + "textErrorRemoveSheet": "Impossible de supprimer la feuille de calcul.", + "textHide": "Masquer", + "textMore": "Plus" + }, + "Toolbar": { + "leaveButtonText": "Quitter cette page" }, "View": { "Add": { + "errorMaxRows": "ERREUR! Le nombre maximal de séries de données par diagramme est 255.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "sCatDateAndTime": "Date et heure", + "sCatEngineering": "Ingénierie", + "sCatFinancial": "Financier", + "sCatInformation": "Information", + "sCatLogical": "Logique", + "sCatLookupAndReference": "Recherche et référence", + "sCatMathematic": "Maths et trigonométrie", "textAddLink": "Ajouter un lien", "textAddress": "Adresse", - "textBack": "Retour" + "textBack": "Retour", + "textCancel": "Annuler", + "textChart": "Graphique", + "textComment": "Commentaire", + "textDisplay": "Afficher", + "textExternalLink": "Lien externe", + "textFilter": "Filtre", + "textFunction": "Fonction", + "textGroups": "CATÉGORIES", + "textImage": "Image", + "textImageURL": "URL d'image", + "textInsert": "Insérer", + "textInsertImage": "Insérer une image", + "textInternalDataRange": "Plage de données interne", + "textInvalidRange": "ERREUR! La plage de cellules n'est pas valide", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkType": "Type de lien", + "textOther": "Autre", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image à partir d'une URL", + "txtExpand": "Développer et trier" }, "Edit": { "textAccounting": "Comptabilité", @@ -56,23 +224,200 @@ "textAlignRight": "Aligner à droite", "textAlignTop": "Aligner en haut", "textAllBorders": "Toutes les bordures", + "textAngleClockwise": "Rotation dans le sens des aiguilles d'une montre", + "textAngleCounterclockwise": "Rotation dans le sens inverse des aiguilles d'une montre", + "textAuto": "Auto", + "textAxisCrosses": "Intersection de l'axe", + "textAxisOptions": "Options de l'axe", + "textAxisPosition": "Position de l'axe", + "textAxisTitle": "Titre de l'axe", "textBack": "Retour", + "textBetweenTickMarks": "Entre graduations", "textBillions": "Milliards", "textBorder": "Bordure", "textBorderStyle": "Style de bordure", + "textBottom": "En bas", + "textBottomBorder": "Bordure inférieure", + "textBringToForeground": "Mettre au premier plan", + "textCell": "Cellule", + "textCellStyles": "Styles cellule", + "textCenter": "Au centre", + "textChart": "Graphique", + "textChartTitle": "Titre du graphique", + "textClearFilter": "Effacer le filtre", + "textColor": "Couleur", + "textCross": "Sur l'axe", + "textCrossesValue": "Valeur de croisement", + "textCurrency": "Monétaire", + "textCustomColor": "Couleur personnalisée", + "textDataLabels": "Étiquettes de données", + "textDate": "Date", + "textDeleteFilter": "Supprimer filtre", + "textDesign": "Stylique", + "textDiagonalDownBorder": "Bordure diagonale bas", + "textDiagonalUpBorder": "Bordure diagonale haut", + "textDisplay": "Afficher", + "textDisplayUnits": "Unités d'affichage", + "textDollar": "Dollar", + "textEditLink": "Modifier le lien", + "textEffects": "Effets", "textEmptyItem": "{Blancs}", + "textEuro": "Euro", + "textExternalLink": "Lien externe", + "textFill": "Remplissage", + "textFillColor": "Couleur de remplissage", + "textFilterOptions": "Options filtre", + "textFit": "Ajuster au largeur", + "textFonts": "Polices", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Image depuis la bibliothèque", + "textFromURL": "Image à partir d'une URL", + "textGeneral": "Général", + "textGridlines": "Quadrillage", + "textHigh": "Haut", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Axe horizontal", + "textHorizontalText": "Texte horizontal", "textHundredMil": "100000000", + "textHundreds": "Centaines", "textHundredThousands": "100000", + "textHyperlink": "Lien hypertexte", + "textImage": "Image", + "textImageURL": "URL d'image", + "textIn": "Dans", + "textInnerBottom": "En bas à l'intérieur", + "textInnerTop": "En haut à l'intérieur", + "textInsideBorders": "Bordures intérieures", + "textInsideHorizontalBorder": "Bordure intérieure horizontale", + "textInsideVerticalBorder": "Bordure intérieure verticale", + "textInteger": "Entier", + "textInternalDataRange": "Plage de données interne", + "textInvalidRange": "Plage de cellules non valide", + "textJustified": "Justifié", + "textLabelOptions": "Options d'étiquettes", + "textLabelPosition": "Position de l'étiquette", + "textLayout": "Mise en page", + "textLeft": "A gauche", + "textLeftBorder": "Bordure gauche", + "textLeftOverlay": "Superposition à gauche", + "textLegend": "Légende", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkType": "Type de lien", + "textLow": "En bas", + "textMajor": "Principaux", + "textMajorAndMinor": "Principaux et secondaires ", + "textMajorType": "Type principal", + "textMaximumValue": "Valeur maximale", + "textMedium": "Moyen", + "textMillions": "Millions", + "textMinimumValue": "Valeur minimale", + "textMinor": "Secondaires", + "textMinorType": "Type secondaire", + "textMoveBackward": "Déplacer vers l'arrière", + "textMoveForward": "Avancer", + "textNextToAxis": "À côté de l'axe", + "textNoBorder": "Sans bordures", + "textNone": "Aucun", + "textNoOverlay": "Sans superposition", + "textNumber": "Nombre", + "textOnTickMarks": "Graduations", + "textOpacity": "Opacité", + "textOut": "À l'extérieur", + "textOuterTop": "En haut à l'extérieur", + "textOutsideBorders": "Bordures extérieures", + "textOverlay": "Superposition", + "textPercentage": "Pourcentage", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image à partir d'une URL", + "textPound": "Livre", "textTenMillions": "10000000", - "textTenThousands": "10000" + "textTenThousands": "10000", + "txtSortHigh2Low": "Trier du plus élevé au plus bas", + "txtSortLow2High": "Trier le plus bas au plus élevé" }, "Settings": { - "textAbout": "A propos", + "advCSVOptions": "Choisir les options CSV", + "advDRMPassword": "Mot de passe", + "closeButtonText": "Fermer le fichier", + "textAbout": "À propos", "textAddress": "Adresse", "textApplication": "Application", "textApplicationSettings": "Paramètres de l'application", "textAuthor": "Auteur", - "textBack": "Retour" + "textBack": "Retour", + "textBottom": "En bas", + "textByColumns": "Par colonnes", + "textByRows": "Par lignes", + "textCancel": "Annuler", + "textCentimeter": "Centimètre", + "textCollaboration": "Collaboration", + "textColorSchemes": "Jeux de couleurs", + "textComment": "Commentaire", + "textCommentingDisplay": "Affichage des commentaires ", + "textComments": "Commentaires", + "textCreated": "Créé", + "textCustomSize": "Taille personnalisée", + "textDisableAll": "Désactiver tout", + "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", + "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", + "textDone": "Terminé", + "textDownload": "Télécharger", + "textDownloadAs": "Télécharger comme", + "textEmail": "E-mail", + "textEnableAll": "Activer tout", + "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textFind": "Recherche", + "textFindAndReplace": "Rechercher et remplacer", + "textFindAndReplaceAll": "Rechercher et remplacer tout", + "textFormat": "Format", + "textFormulaLanguage": "Langage de formule", + "textFormulas": "Formules", + "textHelp": "Aide", + "textHideGridlines": "Masquer le quadrillage", + "textHideHeadings": "Masquer les en-têtes", + "textHighlightRes": "Surligner les résultats", + "textInch": "Pouce", + "textLandscape": "Paysage", + "textLastModified": "Dernière modification", + "textLastModifiedBy": "Dernière modification par", + "textLeft": "À gauche", + "textLocation": "Emplacement", + "textLookIn": "Rechercher dans", + "textMacrosSettings": "Réglages macros", + "textMargins": "Marges", + "textMatchCase": "Respecter la casse", + "textMatchCell": "Respecter la cellule", + "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", + "textOrientation": "Orientation", + "textOwner": "Propriétaire", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Réalisation", + "textPrint": "Imprimer", + "txtDelimiter": "Délimiteur", + "txtEncoding": "Codage ", + "txtIncorrectPwd": "Mot de passe incorrect", + "txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", + "txtScheme1": "Office", + "txtScheme10": "Médian", + "txtScheme11": "Métro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origine", + "txtScheme16": "Papier", + "txtScheme2": "Nuances de gris", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civique", + "txtScheme6": "Rotonde", + "txtScheme7": "Capitaux", + "txtScheme8": "Flux", + "txtScheme9": "Fonderie", + "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
    Êtes-vous sûr de vouloir continuer?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 2a7070f828..2080e9f09f 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -1,659 +1,635 @@ { - "Common.Controllers.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Controllers.Collaboration.textCancel": "Annuleren", - "Common.Controllers.Collaboration.textDeleteComment": "Verwijder opmerking", - "Common.Controllers.Collaboration.textDeleteReply": "Verwijderen antwoord", - "Common.Controllers.Collaboration.textDone": "Klaar", - "Common.Controllers.Collaboration.textEdit": "Bewerken", - "Common.Controllers.Collaboration.textEditUser": "Document wordt op dit moment bewerkt door verschillende gebruikers.", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Wil je deze opmerking verwijderen?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Wil je dit antwoord verwijderen?", - "Common.Controllers.Collaboration.textReopen": "Heropenen", - "Common.Controllers.Collaboration.textResolve": "Oplossen", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Aangepaste kleuren", - "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", - "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Views.Collaboration.textBack": "Vorige", - "Common.Views.Collaboration.textCancel": "Annuleren", - "Common.Views.Collaboration.textCollaboration": "Samenwerking", - "Common.Views.Collaboration.textDone": "Klaar", - "Common.Views.Collaboration.textEditReply": "Bewerk antwoord", - "Common.Views.Collaboration.textEditUsers": "Gebruikers", - "Common.Views.Collaboration.textEditСomment": "Opmerking bewerken", - "Common.Views.Collaboration.textNoComments": "Deze spreadsheet bevat geen opmerkingen", - "Common.Views.Collaboration.textСomments": "Opmerkingen", - "SSE.Controllers.AddChart.txtDiagramTitle": "Grafiektitel", - "SSE.Controllers.AddChart.txtSeries": "Serie", - "SSE.Controllers.AddChart.txtXAxis": "X-as", - "SSE.Controllers.AddChart.txtYAxis": "Y-as", - "SSE.Controllers.AddContainer.textChart": "Grafiek", - "SSE.Controllers.AddContainer.textFormula": "Functie", - "SSE.Controllers.AddContainer.textImage": "Afbeelding", - "SSE.Controllers.AddContainer.textOther": "Overige", - "SSE.Controllers.AddContainer.textShape": "Vorm", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.AddLink.textInvalidRange": "FOUT! Ongeldig celbereik", - "SSE.Controllers.AddLink.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.AddOther.textCancel": "Annuleren", - "SSE.Controllers.AddOther.textContinue": "Doorgaan", - "SSE.Controllers.AddOther.textDelete": "Verwijderen", - "SSE.Controllers.AddOther.textDeleteDraft": "Wilt u het concept verwijderen?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "SSE.Controllers.AddOther.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken met behulp van het contextmenu worden alleen in het huidige bestand uitgevoerd.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "De koppelingsverwijzing bestaat niet. Corrigeer de koppeling of verwijder deze.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Opmerking toevoegen", - "SSE.Controllers.DocumentHolder.menuAddLink": "Koppeling toevoegen", - "SSE.Controllers.DocumentHolder.menuCell": "Cel", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopiëren", - "SSE.Controllers.DocumentHolder.menuCut": "Knippen", - "SSE.Controllers.DocumentHolder.menuDelete": "Verwijderen", - "SSE.Controllers.DocumentHolder.menuEdit": "Bewerken", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Deelvensters blokkeren", - "SSE.Controllers.DocumentHolder.menuHide": "Verbergen", - "SSE.Controllers.DocumentHolder.menuMerge": "Samenvoegen", - "SSE.Controllers.DocumentHolder.menuMore": "Meer", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Koppeling openen", - "SSE.Controllers.DocumentHolder.menuPaste": "Plakken", - "SSE.Controllers.DocumentHolder.menuShow": "Tonen", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Blokkering deelvensters opheffen", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Samenvoeging opheffen", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Geen terugloop", - "SSE.Controllers.DocumentHolder.menuViewComment": "Bekijk opmerking", - "SSE.Controllers.DocumentHolder.menuWrap": "Terugloop", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.DocumentHolder.sheetCancel": "Annuleren", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Niet meer weergeven", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Alleen de gegevens in de cel linksboven blijven behouden in de samengevoegde cel.
    Wilt u doorgaan?", - "SSE.Controllers.EditCell.textAuto": "Automatisch", - "SSE.Controllers.EditCell.textFonts": "Lettertypen", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "FOUT! Het maximumaantal gegevensreeksen per grafiek is 255.", - "SSE.Controllers.EditChart.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", - "SSE.Controllers.EditChart.textAuto": "Automatisch", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Tussen maatstreepjes", - "SSE.Controllers.EditChart.textBillions": "Miljarden", - "SSE.Controllers.EditChart.textBottom": "Onder", - "SSE.Controllers.EditChart.textCenter": "Centreren", - "SSE.Controllers.EditChart.textCross": "Snijpunt", - "SSE.Controllers.EditChart.textCustom": "Aangepast", - "SSE.Controllers.EditChart.textFit": "Aanpassen aan breedte", - "SSE.Controllers.EditChart.textFixed": "Vast", - "SSE.Controllers.EditChart.textHigh": "Hoog", - "SSE.Controllers.EditChart.textHorizontal": "Horizontaal", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Honderden", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "In", - "SSE.Controllers.EditChart.textInnerBottom": "Binnen onder", - "SSE.Controllers.EditChart.textInnerTop": "Binnen boven", - "SSE.Controllers.EditChart.textLeft": "Links ", - "SSE.Controllers.EditChart.textLeftOverlay": "Overlay links", - "SSE.Controllers.EditChart.textLow": "Laag", - "SSE.Controllers.EditChart.textManual": "Handmatig", - "SSE.Controllers.EditChart.textMaxValue": "Maximumwaarde", - "SSE.Controllers.EditChart.textMillions": "Miljoenen", - "SSE.Controllers.EditChart.textMinValue": "Minimumwaarde", - "SSE.Controllers.EditChart.textNextToAxis": "Naast as", - "SSE.Controllers.EditChart.textNone": "Geen", - "SSE.Controllers.EditChart.textNoOverlay": "Geen overlay", - "SSE.Controllers.EditChart.textOnTickMarks": "Op maatstreepjes", - "SSE.Controllers.EditChart.textOut": "Buiten", - "SSE.Controllers.EditChart.textOuterTop": "Buiten boven", - "SSE.Controllers.EditChart.textOverlay": "Overlay", - "SSE.Controllers.EditChart.textRight": "Rechts", - "SSE.Controllers.EditChart.textRightOverlay": "Overlay rechts", - "SSE.Controllers.EditChart.textRotated": "Gedraaid", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Duizenden", - "SSE.Controllers.EditChart.textTop": "Boven", - "SSE.Controllers.EditChart.textTrillions": "Biljoenen", - "SSE.Controllers.EditChart.textValue": "Waarde", - "SSE.Controllers.EditContainer.textCell": "Cel", - "SSE.Controllers.EditContainer.textChart": "Grafiek", - "SSE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "SSE.Controllers.EditContainer.textImage": "Afbeelding", - "SSE.Controllers.EditContainer.textSettings": "Instellingen", - "SSE.Controllers.EditContainer.textShape": " Vorm", - "SSE.Controllers.EditContainer.textTable": "Tabel", - "SSE.Controllers.EditContainer.textText": "Tekst", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.EditHyperlink.textDefault": "Geselecteerd bereik", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Externe koppeling", - "SSE.Controllers.EditHyperlink.textInternalLink": "Intern gegevensbereik", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Ongeldig celbereik", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.voorbeeld.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.EditImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "SSE.Controllers.EditImage.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Leeg}", - "SSE.Controllers.FilterOptions.textErrorMsg": "U moet ten minste één waarde selecteren", - "SSE.Controllers.FilterOptions.textErrorTitle": "Waarschuwing", - "SSE.Controllers.FilterOptions.textSelectAll": "Alles Selecteren", - "SSE.Controllers.Main.advCSVOptions": "CSV-opties kiezen", - "SSE.Controllers.Main.advDRMEnterPassword": "Voer uw wachtwoord in:", - "SSE.Controllers.Main.advDRMOptions": "Beschermd bestand", - "SSE.Controllers.Main.advDRMPassword": "Wachtwoord", - "SSE.Controllers.Main.applyChangesTextText": "Gegevens worden geladen...", - "SSE.Controllers.Main.applyChangesTitleText": "Gegevens worden geladen", - "SSE.Controllers.Main.closeButtonText": "Bestand sluiten", - "SSE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", - "SSE.Controllers.Main.criticalErrorExtText": "Druk op \"OK\" om terug te gaan naar de lijst met documenten.", - "SSE.Controllers.Main.criticalErrorTitle": "Fout", - "SSE.Controllers.Main.downloadErrorText": "Download mislukt.", - "SSE.Controllers.Main.downloadMergeText": "Downloaden...", - "SSE.Controllers.Main.downloadMergeTitle": "Downloaden", - "SSE.Controllers.Main.downloadTextText": "Werkmap downloaden...", - "SSE.Controllers.Main.downloadTitleText": "Werkmap wordt gedownload", - "SSE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
    Neem contact op met de beheerder van de documentserver.", - "SSE.Controllers.Main.errorArgsRange": "De ingevoerde formule bevat een fout.
    Ongeldig bereik van argumenten gebruikt.", - "SSE.Controllers.Main.errorAutoFilterChange": "De bewerking is niet toegestaan omdat met de bewerking cellen in een tabel op uw werkblad verschoven zouden worden.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "De bewerking kan niet worden uitgevoerd voor de geselecteerde cellen omdat u niet een deel van een tabel kunt verplaatsen.
    Selecteer een ander gegevensbereik zodat de hele tabel wordt verplaatst en probeer het opnieuw.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "De bewerking kan niet worden uitgevoerd voor het geselecteerde bereik van cellen.
    Selecteer een uniform gegevensbereik dat afwijkt van het bestaande bereik en probeer het opnieuw.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "De bewerking kan niet worden uitgevoerd omdat het gebied gefilterde cellen bevat.
    Maak het verbergen van de gefilterde elementen ongedaan en probeer het opnieuw.", - "SSE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist", - "SSE.Controllers.Main.errorChangeArray": "U kunt een deel van een array niet wijzigen.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.", - "SSE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
    Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Deze opdracht kan niet worden uitgevoerd op meerdere selecties.
    Selecteer één bereik en probeer het opnieuw.", - "SSE.Controllers.Main.errorCountArg": "De ingevoerde formule bevat een fout.
    Onjuist aantal argumenten gebruikt.", - "SSE.Controllers.Main.errorCountArgExceed": "De ingevoerde formule bevat een fout.
    Aantal argumenten overschreden.", - "SSE.Controllers.Main.errorCreateDefName": "De bestaande benoemde bereiken kunnen niet worden bewerkt en de nieuwe bereiken kunnen
    op dit moment niet worden gemaakt aangezien sommige bereiken al worden bewerkt.", - "SSE.Controllers.Main.errorDatabaseConnection": "Externe fout.
    Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", - "SSE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.", - "SSE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan bij het werken met dit document.
    Gebruik de 'Download' optie om een backup op te slaan op uw computer.", - "SSE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", - "SSE.Controllers.Main.errorFileRequest": "Externe fout.
    Fout in aanvraag bestand. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
    Neem contact op met uw Document Server-beheerder voor details.", - "SSE.Controllers.Main.errorFileVKey": "Externe fout.
    Ongeldige beveiligingssleutel. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorFillRange": "Het geselecteerde celbereik kan niet worden gevuld.
    Alle samengevoegde cellen moeten dezelfde grootte hebben.", - "SSE.Controllers.Main.errorFormulaName": "De ingevoerde formule bevat een fout.
    Onjuiste naam gebruikt voor formule.", - "SSE.Controllers.Main.errorFormulaParsing": "Interne fout bij ontleden van de formule.", - "SSE.Controllers.Main.errorFrmlMaxLength": "De lengte van uw formule overschrijdt de limiet van 8192 tekens.
    Bewerk de formule en probeer het opnieuw.", - "SSE.Controllers.Main.errorFrmlMaxReference": "U kunt deze formule niet invoeren omdat deze te veel
    waarden, cel verwijzingen en / of namen heeft.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Tekstwaarden in formules zijn beperkt tot 255 tekens.
    Gebruik de functie CONCATENEREN of de aaneenschakelingsoperator (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "De functie verwijst naar een blad dat niet bestaat.
    Controleer de gegevens en probeer het opnieuw.", - "SSE.Controllers.Main.errorInvalidRef": "Voer een juiste naam in voor de selectie of een geldige referentie om naar toe te gaan.", - "SSE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", - "SSE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", - "SSE.Controllers.Main.errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Laden mislukt", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Samenvoegen mislukt.", - "SSE.Controllers.Main.errorMaxPoints": "Het maximaal aantal punten in een serie per grafiek is 4096", - "SSE.Controllers.Main.errorMoveRange": "Een gedeelte van een samengevoegde cel kan niet worden gewijzigd", - "SSE.Controllers.Main.errorMultiCellFormula": "Matrixformules met meerdere cellen zijn niet toegestaan in tabellen.", - "SSE.Controllers.Main.errorOpensource": "Met de gratis Community-versie kunt u documenten openen om ze alleen te bekijken. Om toegang te krijgen tot mobiele webeditors is een commerciële licentie vereist.", - "SSE.Controllers.Main.errorOpenWarning": "Een van de bestandsformules overschrijdt de limiet van 8192 tekens.
    De formule is verwijderd.", - "SSE.Controllers.Main.errorOperandExpected": "De syntaxis van de ingevoerde functie is niet juist. Controleer of een van de haakjes '(' of ')' ontbreekt.", - "SSE.Controllers.Main.errorPasteMaxRange": "Het te kopiëren gebied komt niet overeen met het plakgebied.
    Selecteer een gebied met dezelfde grootte of klik op de eerste cel van een rij om de gekopieerde cellen te plakken.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Helaas is het met de huidige programmaversie niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
    Deze beperking wordt opgeheven in komende releases.", - "SSE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt", - "SSE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen. ", - "SSE.Controllers.Main.errorSessionAbsolute": "De bewerksessie voor het document is vervallen. Laad de pagina opnieuw.", - "SSE.Controllers.Main.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw. ", - "SSE.Controllers.Main.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", - "SSE.Controllers.Main.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", - "SSE.Controllers.Main.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
    Neem contact op met de beheerder van de documentserver.", - "SSE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
    Neem contact op met de beheerder van de documentserver.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Externe fout.
    Onverwachte GUID. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", - "SSE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", - "SSE.Controllers.Main.errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", - "SSE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
    maar kunt het pas downloaden wanneer de verbinding is hersteld.", - "SSE.Controllers.Main.errorWrongBracketsCount": "De ingevoerde formule bevat een fout.
    Verkeerd aantal haakjes gebruikt.", - "SSE.Controllers.Main.errorWrongOperator": "De ingevoerde formule bevat een fout. Verkeerde operator gebruikt.
    Corrigeer de fout.", - "SSE.Controllers.Main.leavePageText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "SSE.Controllers.Main.loadFontsTextText": "Gegevens worden geladen...", - "SSE.Controllers.Main.loadFontsTitleText": "Gegevens worden geladen", - "SSE.Controllers.Main.loadFontTextText": "Gegevens worden geladen...", - "SSE.Controllers.Main.loadFontTitleText": "Gegevens worden geladen", - "SSE.Controllers.Main.loadImagesTextText": "Afbeeldingen worden geladen...", - "SSE.Controllers.Main.loadImagesTitleText": "Afbeeldingen worden geladen", - "SSE.Controllers.Main.loadImageTextText": "Afbeelding wordt geladen...", - "SSE.Controllers.Main.loadImageTitleText": "Afbeelding wordt geladen", - "SSE.Controllers.Main.loadingDocumentTextText": "Spreadsheet wordt geladen...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Spreadsheet wordt geladen", - "SSE.Controllers.Main.mailMergeLoadFileText": "Gegevensbron wordt geladen...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen", - "SSE.Controllers.Main.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.Main.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", - "SSE.Controllers.Main.openTextText": "Document wordt geopend...", - "SSE.Controllers.Main.openTitleText": "Document wordt geopend", - "SSE.Controllers.Main.pastInMergeAreaError": "Een gedeelte van een samengevoegde cel kan niet worden gewijzigd", - "SSE.Controllers.Main.printTextText": "Document wordt afgedrukt...", - "SSE.Controllers.Main.printTitleText": "Document wordt afgedrukt ", - "SSE.Controllers.Main.reloadButtonText": "Pagina opnieuw laden", - "SSE.Controllers.Main.requestEditFailedMessageText": "Het document wordt op dit moment door iemand anders bewerkt. Probeer het later opnieuw.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Toegang geweigerd", - "SSE.Controllers.Main.saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", - "SSE.Controllers.Main.savePreparingText": "Voorbereiding op opslaan", - "SSE.Controllers.Main.savePreparingTitle": "Bezig met voorbereiding op opslaan. Even geduld...", - "SSE.Controllers.Main.saveTextText": "Document wordt opgeslagen...", - "SSE.Controllers.Main.saveTitleText": "Document wordt opgeslagen", - "SSE.Controllers.Main.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", - "SSE.Controllers.Main.sendMergeText": "Samenvoegen en verzenden...", - "SSE.Controllers.Main.sendMergeTitle": "Samenvoegen en verzenden", - "SSE.Controllers.Main.textAnonymous": "Anoniem", - "SSE.Controllers.Main.textBack": "Terug", - "SSE.Controllers.Main.textBuyNow": "Website bezoeken", - "SSE.Controllers.Main.textCancel": "Annuleren", - "SSE.Controllers.Main.textClose": "Sluiten", - "SSE.Controllers.Main.textContactUs": "Verkoopafdeling", - "SSE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
    Neem contact op met onze verkoopafdeling voor een offerte.", - "SSE.Controllers.Main.textDone": "Klaar", - "SSE.Controllers.Main.textGuest": "Gastgebruiker", - "SSE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", - "SSE.Controllers.Main.textLoadingDocument": "Spreadsheet wordt geladen", - "SSE.Controllers.Main.textNo": "Nee", - "SSE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Betaalde optie", - "SSE.Controllers.Main.textPassword": "Wachtwoord", - "SSE.Controllers.Main.textPreloader": "Laden...", - "SSE.Controllers.Main.textRemember": "Onthoud voorkeur", - "SSE.Controllers.Main.textShape": "Vorm", - "SSE.Controllers.Main.textStrict": "Strikte modus", - "SSE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
    Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", - "SSE.Controllers.Main.textUsername": "Gebruikersnaam", - "SSE.Controllers.Main.textYes": "Ja", - "SSE.Controllers.Main.titleLicenseExp": "Licentie vervallen", - "SSE.Controllers.Main.titleServerVersion": "Editor bijgewerkt", - "SSE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "Hier tekst invoeren", - "SSE.Controllers.Main.txtBasicShapes": "Basisvormen", - "SSE.Controllers.Main.txtButtons": "Knoppen", - "SSE.Controllers.Main.txtCallouts": "Callouts", - "SSE.Controllers.Main.txtCharts": "Grafieken", - "SSE.Controllers.Main.txtDelimiter": "Scheidingsteken", - "SSE.Controllers.Main.txtDiagramTitle": "Grafiektitel", - "SSE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", - "SSE.Controllers.Main.txtEncoding": "Versleuteling", - "SSE.Controllers.Main.txtErrorLoadHistory": "Laden geschiedenis is mislukt", - "SSE.Controllers.Main.txtFiguredArrows": "Pijlvormen", - "SSE.Controllers.Main.txtLines": "Lijnen", - "SSE.Controllers.Main.txtMath": "Wiskunde", - "SSE.Controllers.Main.txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", - "SSE.Controllers.Main.txtRectangles": "Rechthoeken", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtSpace": "Spatie", - "SSE.Controllers.Main.txtStarsRibbons": "Sterren en linten", - "SSE.Controllers.Main.txtStyle_Bad": "Slecht", - "SSE.Controllers.Main.txtStyle_Calculation": "Berekening", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Cel controleren", - "SSE.Controllers.Main.txtStyle_Comma": "Komma", - "SSE.Controllers.Main.txtStyle_Currency": "Valuta", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Verklarende tekst", - "SSE.Controllers.Main.txtStyle_Good": "Goed", - "SSE.Controllers.Main.txtStyle_Heading_1": "Kop 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Kop 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Kop 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Kop 4", - "SSE.Controllers.Main.txtStyle_Input": "Invoer", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Gekoppelde cel", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutraal", - "SSE.Controllers.Main.txtStyle_Normal": "Normaal", - "SSE.Controllers.Main.txtStyle_Note": "Notitie", - "SSE.Controllers.Main.txtStyle_Output": "Uitvoer", - "SSE.Controllers.Main.txtStyle_Percent": "Procent", - "SSE.Controllers.Main.txtStyle_Title": "Titel", - "SSE.Controllers.Main.txtStyle_Total": "Totaal", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Waarschuwingstekst", - "SSE.Controllers.Main.txtTab": "Tab", - "SSE.Controllers.Main.txtXAxis": "X-as", - "SSE.Controllers.Main.txtYAxis": "Y-as", - "SSE.Controllers.Main.unknownErrorText": "Onbekende fout.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", - "SSE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", - "SSE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", - "SSE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", - "SSE.Controllers.Main.waitText": "Een moment...", - "SSE.Controllers.Main.warnLicenseExceeded": "Het aantal gelijktijdige verbindingen met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
    Neem contact op met de beheerder voor meer informatie.", - "SSE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
    Werk uw licentie bij en vernieuw de pagina.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licentie verlopen.
    U heeft geen toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licentie moet worden verlengd.
    U heeft beperkte toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder voor volledige toegang", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Het aantal gelijktijdige gebruikers met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
    Neem contact op met de beheerder voor meer informatie.", - "SSE.Controllers.Main.warnNoLicense": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
    Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
    Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", - "SSE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", - "SSE.Controllers.Search.textNoTextFound": "Tekst niet gevonden", - "SSE.Controllers.Search.textReplaceAll": "Alles vervangen", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.Settings.txtDe": "Duits", - "SSE.Controllers.Settings.txtEn": "Engels", - "SSE.Controllers.Settings.txtEs": "Spaans", - "SSE.Controllers.Settings.txtFr": "Frans", - "SSE.Controllers.Settings.txtIt": "Italiaans", - "SSE.Controllers.Settings.txtPl": "Pools", - "SSE.Controllers.Settings.txtRu": "Russisch", - "SSE.Controllers.Settings.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", - "SSE.Controllers.Statusbar.cancelButtonText": "Annuleren", - "SSE.Controllers.Statusbar.errNameExists": "Er bestaat al een werkblad met deze naam.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Een werkblad naam kan deze karakters niet bevatten: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Werkblad naam mag niet leeg zijn", - "SSE.Controllers.Statusbar.errorLastSheet": "Werkmap moet ten minste één zichtbaar werkblad bevatten.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Het werkblad kan niet worden verwijderd.", - "SSE.Controllers.Statusbar.menuDelete": "Verwijderen", - "SSE.Controllers.Statusbar.menuDuplicate": "Dupliceren", - "SSE.Controllers.Statusbar.menuHide": "Verbergen", - "SSE.Controllers.Statusbar.menuMore": "Meer", - "SSE.Controllers.Statusbar.menuRename": "Hernoemen", - "SSE.Controllers.Statusbar.menuUnhide": "Verbergen ongedaan maken", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.Statusbar.strRenameSheet": "Blad hernoemen", - "SSE.Controllers.Statusbar.strSheet": "Blad", - "SSE.Controllers.Statusbar.strSheetName": "Bladnaam", - "SSE.Controllers.Statusbar.textExternalLink": "Externe koppeling", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Het werkblad kan gegevens bevatten. Doorgaan met de bewerking?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "U verlaat de toepassing", - "SSE.Controllers.Toolbar.leaveButtonText": "Pagina verlaten", - "SSE.Controllers.Toolbar.stayButtonText": "Op deze pagina blijven", - "SSE.Views.AddFunction.sCatDateAndTime": "Datum en tijd", - "SSE.Views.AddFunction.sCatEngineering": "Engineering", - "SSE.Views.AddFunction.sCatFinancial": "Financieel", - "SSE.Views.AddFunction.sCatInformation": "Informatie", - "SSE.Views.AddFunction.sCatLogical": "Logisch", - "SSE.Views.AddFunction.sCatLookupAndReference": "Zoeken en verwijzen", - "SSE.Views.AddFunction.sCatMathematic": "Wiskunde en trigonometrie", - "SSE.Views.AddFunction.sCatStatistical": "Statistisch", - "SSE.Views.AddFunction.sCatTextAndData": "Tekst en gegevens", - "SSE.Views.AddFunction.textBack": "Terug", - "SSE.Views.AddFunction.textGroups": "Categorieën", - "SSE.Views.AddLink.textAddLink": "Koppeling toevoegen", - "SSE.Views.AddLink.textAddress": "Adres", - "SSE.Views.AddLink.textDisplay": "Weergeven", - "SSE.Views.AddLink.textExternalLink": "Externe koppeling", - "SSE.Views.AddLink.textInsert": "Invoegen", - "SSE.Views.AddLink.textInternalLink": "Intern gegevensbereik", - "SSE.Views.AddLink.textLink": "Koppeling", - "SSE.Views.AddLink.textLinkType": "Type koppeling", - "SSE.Views.AddLink.textRange": "Bereik", - "SSE.Views.AddLink.textRequired": "Vereist", - "SSE.Views.AddLink.textSelectedRange": "Geselecteerd bereik", - "SSE.Views.AddLink.textSheet": "Blad", - "SSE.Views.AddLink.textTip": "Scherminfo", - "SSE.Views.AddOther.textAddComment": "Opmerking toevoegen", - "SSE.Views.AddOther.textAddress": "Adres", - "SSE.Views.AddOther.textBack": "Terug", - "SSE.Views.AddOther.textComment": "Opmerking", - "SSE.Views.AddOther.textDone": "Klaar", - "SSE.Views.AddOther.textFilter": "Filter", - "SSE.Views.AddOther.textFromLibrary": "Afbeelding uit bibliotheek", - "SSE.Views.AddOther.textFromURL": "Afbeelding van URL", - "SSE.Views.AddOther.textImageURL": "URL afbeelding", - "SSE.Views.AddOther.textInsert": "Invoegen", - "SSE.Views.AddOther.textInsertImage": "Afbeelding invoegen", - "SSE.Views.AddOther.textLink": "Koppeling", - "SSE.Views.AddOther.textLinkSettings": "Koppelingsinstellingen", - "SSE.Views.AddOther.textSort": "Sorteren en filteren", - "SSE.Views.EditCell.textAccounting": "Boekhouding", - "SSE.Views.EditCell.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditCell.textAlignBottom": "Onder uitlijnen", - "SSE.Views.EditCell.textAlignCenter": "Midden uitlijnen", - "SSE.Views.EditCell.textAlignLeft": "Links uitlijnen", - "SSE.Views.EditCell.textAlignMiddle": "Midden uitlijnen", - "SSE.Views.EditCell.textAlignRight": "Rechts uitlijnen", - "SSE.Views.EditCell.textAlignTop": "Boven uitlijnen", - "SSE.Views.EditCell.textAllBorders": "Alle randen", - "SSE.Views.EditCell.textAngleClockwise": "Rechtsom draaien", - "SSE.Views.EditCell.textAngleCounterclockwise": "Linksom draaien", - "SSE.Views.EditCell.textBack": "Terug", - "SSE.Views.EditCell.textBorderStyle": "Stijl rand", - "SSE.Views.EditCell.textBottomBorder": "Onderrand", - "SSE.Views.EditCell.textCellStyle": "Celstijlen", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Kleur", - "SSE.Views.EditCell.textCurrency": "Valuta", - "SSE.Views.EditCell.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditCell.textDate": "Datum", - "SSE.Views.EditCell.textDiagDownBorder": "Diagonale rand naar onder", - "SSE.Views.EditCell.textDiagUpBorder": "Diagonale rand naar boven", - "SSE.Views.EditCell.textDollar": "Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Opvulkleur", - "SSE.Views.EditCell.textFonts": "Lettertypen", - "SSE.Views.EditCell.textFormat": "Opmaak", - "SSE.Views.EditCell.textGeneral": "Algemeen", - "SSE.Views.EditCell.textHorizontalText": "Horizontale tekst", - "SSE.Views.EditCell.textInBorders": "Binnenranden", - "SSE.Views.EditCell.textInHorBorder": "Horizontale binnenrand", - "SSE.Views.EditCell.textInteger": "Geheel getal", - "SSE.Views.EditCell.textInVertBorder": "Verticale binnenrand", - "SSE.Views.EditCell.textJustified": "Uitgevuld", - "SSE.Views.EditCell.textLeftBorder": "Linkerrand", - "SSE.Views.EditCell.textMedium": "Gemiddeld", - "SSE.Views.EditCell.textNoBorder": "Geen rand", - "SSE.Views.EditCell.textNumber": "Getal", - "SSE.Views.EditCell.textPercentage": "Percentage", - "SSE.Views.EditCell.textPound": "Pond", - "SSE.Views.EditCell.textRightBorder": "Rechterrand", - "SSE.Views.EditCell.textRotateTextDown": "Tekst omlaag draaien", - "SSE.Views.EditCell.textRotateTextUp": "Tekst omhoog draaien", - "SSE.Views.EditCell.textRouble": "Roebel", - "SSE.Views.EditCell.textScientific": "Wetenschappelijk", - "SSE.Views.EditCell.textSize": "Grootte", - "SSE.Views.EditCell.textText": "Tekst", - "SSE.Views.EditCell.textTextColor": "Tekstkleur", - "SSE.Views.EditCell.textTextFormat": "Tekstopmaak", - "SSE.Views.EditCell.textTextOrientation": "Tekstoriëntatie", - "SSE.Views.EditCell.textThick": "Dik", - "SSE.Views.EditCell.textThin": "Dun", - "SSE.Views.EditCell.textTime": "Tijd", - "SSE.Views.EditCell.textTopBorder": "Bovenrand", - "SSE.Views.EditCell.textVerticalText": "Verticale tekst", - "SSE.Views.EditCell.textWrapText": "Tekstterugloop", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditChart.textAuto": "Automatisch", - "SSE.Views.EditChart.textAxisCrosses": "Snijpunten assen", - "SSE.Views.EditChart.textAxisOptions": "Asopties", - "SSE.Views.EditChart.textAxisPosition": "Aspositie", - "SSE.Views.EditChart.textAxisTitle": "Astitel", - "SSE.Views.EditChart.textBack": "Terug", - "SSE.Views.EditChart.textBackward": "Naar achter verplaatsen", - "SSE.Views.EditChart.textBorder": "Rand", - "SSE.Views.EditChart.textBottom": "Onder", - "SSE.Views.EditChart.textChart": "Grafiek", - "SSE.Views.EditChart.textChartTitle": "Grafiektitel", - "SSE.Views.EditChart.textColor": "Kleur", - "SSE.Views.EditChart.textCrossesValue": "Waarde snijpunten", - "SSE.Views.EditChart.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditChart.textDataLabels": "Gegevenslabels", - "SSE.Views.EditChart.textDesign": "Ontwerp", - "SSE.Views.EditChart.textDisplayUnits": "Weergave-eenheden", - "SSE.Views.EditChart.textFill": "Vulling", - "SSE.Views.EditChart.textForward": "Naar voren verplaatsen", - "SSE.Views.EditChart.textGridlines": "Rasterlijnen", - "SSE.Views.EditChart.textHorAxis": "Horizontale as", - "SSE.Views.EditChart.textHorizontal": "Horizontaal", - "SSE.Views.EditChart.textLabelOptions": "Labelopties", - "SSE.Views.EditChart.textLabelPos": "Labelpositie", - "SSE.Views.EditChart.textLayout": "Lay-out", - "SSE.Views.EditChart.textLeft": "Links", - "SSE.Views.EditChart.textLeftOverlay": "Overlay links", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Primair", - "SSE.Views.EditChart.textMajorMinor": "Primair en secundair", - "SSE.Views.EditChart.textMajorType": "Hoofdtype", - "SSE.Views.EditChart.textMaxValue": "Maximumwaarde", - "SSE.Views.EditChart.textMinor": "Secundair", - "SSE.Views.EditChart.textMinorType": "Secundair type", - "SSE.Views.EditChart.textMinValue": "Minimumwaarde", - "SSE.Views.EditChart.textNone": "Geen", - "SSE.Views.EditChart.textNoOverlay": "Geen overlay", - "SSE.Views.EditChart.textOverlay": "Overlay", - "SSE.Views.EditChart.textRemoveChart": "Grafiek verwijderen", - "SSE.Views.EditChart.textReorder": "Opnieuw ordenen", - "SSE.Views.EditChart.textRight": "Rechts", - "SSE.Views.EditChart.textRightOverlay": "Overlay rechts", - "SSE.Views.EditChart.textRotated": "Gedraaid", - "SSE.Views.EditChart.textSize": "Grootte", - "SSE.Views.EditChart.textStyle": "Stijl", - "SSE.Views.EditChart.textTickOptions": "Opties voor maatstreepjes", - "SSE.Views.EditChart.textToBackground": "Naar achtergrond sturen", - "SSE.Views.EditChart.textToForeground": "Naar voorgrond brengen", - "SSE.Views.EditChart.textTop": "Boven", - "SSE.Views.EditChart.textType": "Type", - "SSE.Views.EditChart.textValReverseOrder": "Waarden in omgekeerde volgorde", - "SSE.Views.EditChart.textVerAxis": "Verticale as", - "SSE.Views.EditChart.textVertical": "Verticaal", - "SSE.Views.EditHyperlink.textBack": "Terug", - "SSE.Views.EditHyperlink.textDisplay": "Weergeven", - "SSE.Views.EditHyperlink.textEditLink": "Koppeling bewerken", - "SSE.Views.EditHyperlink.textExternalLink": "Externe koppeling", - "SSE.Views.EditHyperlink.textInternalLink": "Intern gegevensbereik", - "SSE.Views.EditHyperlink.textLink": "Koppeling", - "SSE.Views.EditHyperlink.textLinkType": "Type koppeling", - "SSE.Views.EditHyperlink.textRange": "Bereik", - "SSE.Views.EditHyperlink.textRemoveLink": "Koppeling verwijderen", - "SSE.Views.EditHyperlink.textScreenTip": "Scherminfo", - "SSE.Views.EditHyperlink.textSheet": "Blad", - "SSE.Views.EditImage.textAddress": "Adres", - "SSE.Views.EditImage.textBack": "Terug", - "SSE.Views.EditImage.textBackward": "Naar achter verplaatsen", - "SSE.Views.EditImage.textDefault": "Ware grootte", - "SSE.Views.EditImage.textForward": "Naar voren verplaatsen", - "SSE.Views.EditImage.textFromLibrary": "Afbeelding uit bibliotheek", - "SSE.Views.EditImage.textFromURL": "Afbeelding van URL", - "SSE.Views.EditImage.textImageURL": "URL afbeelding", - "SSE.Views.EditImage.textLinkSettings": "Koppelingsinstellingen", - "SSE.Views.EditImage.textRemove": "Afbeelding verwijderen", - "SSE.Views.EditImage.textReorder": "Opnieuw ordenen", - "SSE.Views.EditImage.textReplace": "Vervangen", - "SSE.Views.EditImage.textReplaceImg": "Afbeelding vervangen", - "SSE.Views.EditImage.textToBackground": "Naar achtergrond sturen", - "SSE.Views.EditImage.textToForeground": "Naar voorgrond brengen", - "SSE.Views.EditShape.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditShape.textBack": "Terug", - "SSE.Views.EditShape.textBackward": "Naar achter verplaatsen", - "SSE.Views.EditShape.textBorder": "Rand", - "SSE.Views.EditShape.textColor": "Kleur", - "SSE.Views.EditShape.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditShape.textEffects": "Effecten", - "SSE.Views.EditShape.textFill": "Vulling", - "SSE.Views.EditShape.textForward": "Naar voren verplaatsen", - "SSE.Views.EditShape.textOpacity": "Ondoorzichtigheid", - "SSE.Views.EditShape.textRemoveShape": "Vorm verwijderen", - "SSE.Views.EditShape.textReorder": "Opnieuw ordenen", - "SSE.Views.EditShape.textReplace": "Vervangen", - "SSE.Views.EditShape.textSize": "Grootte", - "SSE.Views.EditShape.textStyle": "Stijl", - "SSE.Views.EditShape.textToBackground": "Naar achtergrond sturen", - "SSE.Views.EditShape.textToForeground": "Naar voorgrond brengen", - "SSE.Views.EditText.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditText.textBack": "Terug", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditText.textFillColor": "Opvulkleur", - "SSE.Views.EditText.textFonts": "Lettertypen", - "SSE.Views.EditText.textSize": "Grootte", - "SSE.Views.EditText.textTextColor": "Tekstkleur", - "SSE.Views.FilterOptions.textClearFilter": "Filter wissen", - "SSE.Views.FilterOptions.textDeleteFilter": "Filter verwijderen", - "SSE.Views.FilterOptions.textFilter": "Filteropties", - "SSE.Views.Search.textByColumns": "Kolommen", - "SSE.Views.Search.textByRows": "Door rijen", - "SSE.Views.Search.textDone": "Klaar", - "SSE.Views.Search.textFind": "Zoeken", - "SSE.Views.Search.textFindAndReplace": "Zoeken en vervangen", - "SSE.Views.Search.textFormulas": "Formules", - "SSE.Views.Search.textHighlightRes": "Resultaten markeren", - "SSE.Views.Search.textLookIn": "Zoeken in", - "SSE.Views.Search.textMatchCase": "Identieke hoofdletters/kleine letters", - "SSE.Views.Search.textMatchCell": "Identiek aan cel", - "SSE.Views.Search.textReplace": "Vervangen", - "SSE.Views.Search.textSearch": "Zoeken", - "SSE.Views.Search.textSearchBy": "Zoeken", - "SSE.Views.Search.textSearchIn": "Zoeken in", - "SSE.Views.Search.textSheet": "Blad", - "SSE.Views.Search.textValues": "Waarden", - "SSE.Views.Search.textWorkbook": "Werkmap", - "SSE.Views.Settings.textAbout": "Over", - "SSE.Views.Settings.textAddress": "adres", - "SSE.Views.Settings.textApplication": "Applicatie", - "SSE.Views.Settings.textApplicationSettings": "Instellingen", - "SSE.Views.Settings.textAuthor": "Auteur", - "SSE.Views.Settings.textBack": "Terug", - "SSE.Views.Settings.textBottom": "Onder", - "SSE.Views.Settings.textCentimeter": "Centimeter", - "SSE.Views.Settings.textCollaboration": "Samenwerking", - "SSE.Views.Settings.textColorSchemes": "Kleurschema's", - "SSE.Views.Settings.textComment": "Opmerking", - "SSE.Views.Settings.textCommentingDisplay": "Commentaarweergave", - "SSE.Views.Settings.textCreated": "Aangemaakt", - "SSE.Views.Settings.textCreateDate": "Datum gemaakt", - "SSE.Views.Settings.textCustom": "Aangepast", - "SSE.Views.Settings.textCustomSize": "Aangepaste grootte", - "SSE.Views.Settings.textDisableAll": "Alles uitschakelen", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Schakel alle macro's uit zonder melding", - "SSE.Views.Settings.textDisplayComments": "Opmerkingen", - "SSE.Views.Settings.textDisplayResolvedComments": "Opgeloste opmerkingen", - "SSE.Views.Settings.textDocInfo": "Info over spreadsheet", - "SSE.Views.Settings.textDocTitle": "Titel spreadsheet", - "SSE.Views.Settings.textDone": "Klaar", - "SSE.Views.Settings.textDownload": "Downloaden", - "SSE.Views.Settings.textDownloadAs": "Downloaden als...", - "SSE.Views.Settings.textEditDoc": "Document bewerken", - "SSE.Views.Settings.textEmail": "e-mail", - "SSE.Views.Settings.textEnableAll": "Alles inschakelen", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Schakel alle macro's in zonder een notificatie", - "SSE.Views.Settings.textExample": "Voorbeeld", - "SSE.Views.Settings.textFind": "Zoeken", - "SSE.Views.Settings.textFindAndReplace": "Zoeken en vervangen", - "SSE.Views.Settings.textFormat": "Opmaak", - "SSE.Views.Settings.textFormulaLanguage": "Taal formule", - "SSE.Views.Settings.textHelp": "Help", - "SSE.Views.Settings.textHideGridlines": "Rasterlijnen verbergen", - "SSE.Views.Settings.textHideHeadings": "Koppen verbergen", - "SSE.Views.Settings.textInch": "Inch", - "SSE.Views.Settings.textLandscape": "Liggend", - "SSE.Views.Settings.textLastModified": "Laatst aangepast", - "SSE.Views.Settings.textLastModifiedBy": "Laatst aangepast door", - "SSE.Views.Settings.textLeft": "Links", - "SSE.Views.Settings.textLoading": "Laden...", - "SSE.Views.Settings.textLocation": "Locatie", - "SSE.Views.Settings.textMacrosSettings": "Macro instellingen", - "SSE.Views.Settings.textMargins": "Marges", - "SSE.Views.Settings.textOrientation": "Oriëntatie ", - "SSE.Views.Settings.textOwner": "Eigenaar", - "SSE.Views.Settings.textPoint": "Punt", - "SSE.Views.Settings.textPortrait": "Staand", - "SSE.Views.Settings.textPoweredBy": "Aangedreven door", - "SSE.Views.Settings.textPrint": "Afdrukken", - "SSE.Views.Settings.textR1C1Style": "R1C1 referentiestijl", - "SSE.Views.Settings.textRegionalSettings": "Regionale instellingen", - "SSE.Views.Settings.textRight": "Rechts", - "SSE.Views.Settings.textSettings": "Instellingen", - "SSE.Views.Settings.textShowNotification": "Weergeef notificatie", - "SSE.Views.Settings.textSpreadsheetFormats": "Spreadsheet-indelingen", - "SSE.Views.Settings.textSpreadsheetSettings": "Spreadsheet-instellingen", - "SSE.Views.Settings.textSubject": "Onderwerp", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textTitle": "Titel", - "SSE.Views.Settings.textTop": "Boven", - "SSE.Views.Settings.textUnitOfMeasurement": "Maateenheid", - "SSE.Views.Settings.textUploaded": "Geüpload", - "SSE.Views.Settings.textVersion": "Versie", - "SSE.Views.Settings.unknownText": "Onbekend", - "SSE.Views.Toolbar.textBack": "Terug" + "About": { + "textAbout": "Over", + "textAddress": "Adres", + "textBack": "Terug", + "textEmail": "E-mail", + "textPoweredBy": "Aangedreven door", + "textTel": "Tel.", + "textVersion": "Versie" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddComment": "Opmerking toevoegen", + "textAddReply": "Reactie toevoegen", + "textBack": "Terug", + "textCancel": "Annuleren", + "textCollaboration": "Samenwerken", + "textComments": "Opmerkingen", + "textDeleteComment": "Verwijder opmerking", + "textDeleteReply": "Reactie verwijderen", + "textDone": "Klaar", + "textEdit": "Bewerken", + "textEditComment": "Opmerking bewerken", + "textEditReply": "Reactie bewerken", + "textEditUser": "Gebruikers die het bestand bewerken:", + "textMessageDeleteComment": "Wil je deze opmerking verwijderen?", + "textMessageDeleteReply": "Wil je deze reactie verwijderen?", + "textNoComments": "Dit document bevat geen opmerkingen", + "textReopen": "Heropenen", + "textResolve": "Oplossen", + "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", + "textUsers": "Gebruikers" + }, + "ThemeColorPalette": { + "textCustomColors": "Aangepaste kleuren", + "textStandartColors": "Standaardkleuren", + "textThemeColors": "Themakleuren" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Kopieer-, knip- en plakacties via het contextmenu worden alleen binnen het huidige bestand uitgevoerd.", + "menuAddComment": "Opmerking toevoegen", + "menuAddLink": "Koppeling toevoegen", + "menuCancel": "Annuleren", + "menuCell": "Cel", + "menuDelete": "Verwijderen", + "menuEdit": "Bewerken", + "menuFreezePanes": "Deelvensters blokkeren", + "menuHide": "Verbergen", + "menuMerge": "Samenvoegen", + "menuMore": "Meer", + "menuOpenLink": "Koppeling openen", + "menuShow": "Tonen", + "menuUnfreezePanes": "Blokkering deelvensters opheffen", + "menuUnmerge": "Samenvoeging opheffen", + "menuUnwrap": "Geen terugloop", + "menuViewComment": "Opmerking bekijken", + "menuWrap": "Wikkel", + "notcriticalErrorTitle": "Waarschuwing", + "textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", + "textDoNotShowAgain": "Niet meer laten zien.", + "warnMergeLostData": "De bewerking kan gegevens in de geselecteerde cellen vernietigen. Doorgaan?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Fout", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorProcessSaveResult": "Opslaan mislukt.", + "errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "leavePageText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "notcriticalErrorTitle": "Waarschuwing", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(Alles)", + "txtArt": "Hier tekst invoeren", + "txtBlank": "(Leeg)", + "txtByField": "%1 van %2", + "txtClearFilter": "Filter wissen (Alt + C)", + "txtColLbls": "Kolomlabels", + "txtColumn": "Kolom", + "txtConfidential": "Vertrouwelijk", + "txtDate": "Datum", + "txtDays": "Dagen", + "txtDiagramTitle": "Grafiektitel", + "txtFile": "Bestand", + "txtGrandTotal": "Eindtotaal", + "txtGroup": "Groeperen", + "txtHours": "Uren", + "txtMinutes": "Minuten", + "txtMonths": "Maanden", + "txtMultiSelect": "Meerdere selecteren (Alt + S)", + "txtOr": "%1 of %2", + "txtPage": "Pagina", + "txtPageOf": "Pagina %1 van %2", + "txtPages": "Pagina's", + "txtPreparedBy": "Voorbereid door", + "txtPrintArea": "Print_Bereik", + "txtQuarter": "Kwart", + "txtQuarters": "Kwartalen ", + "txtRow": "Rij", + "txtRowLbls": "Rijlabels", + "txtSeconds": "Seconden", + "txtSeries": "Serie", + "txtStyle_Bad": "Slecht", + "txtStyle_Calculation": "Berekening", + "txtStyle_Check_Cell": "Cel controleren", + "txtStyle_Comma": "Komma", + "txtStyle_Currency": "Valuta", + "txtStyle_Explanatory_Text": "Verklarende tekst", + "txtStyle_Good": "Goed", + "txtStyle_Heading_1": "Kop 1", + "txtStyle_Heading_2": "Kop 2", + "txtStyle_Heading_3": "Kop 3", + "txtStyle_Heading_4": "Kop 4", + "txtStyle_Input": "Invoer", + "txtStyle_Linked_Cell": "Gekoppelde cel", + "txtStyle_Neutral": "Neutraal", + "txtStyle_Normal": "Normaal", + "txtStyle_Note": "Notitie", + "txtStyle_Output": "Uitvoer", + "txtStyle_Percent": "Procent", + "txtStyle_Title": "Titel", + "txtStyle_Total": "Totaal", + "txtStyle_Warning_Text": "Waarschuwingstekst", + "txtTab": "Tab", + "txtTable": "Tabel", + "txtTime": "Tijd", + "txtValues": "Waarden", + "txtXAxis": "X-as", + "txtYAxis": "Y-as", + "txtYears": "Jaren" + }, + "textAnonymous": "Anoniem", + "textBuyNow": "Website bezoeken", + "textClose": "Sluiten", + "textContactUs": "Contact opnemen met verkoopafdeling", + "textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een prijsopgave.", + "textGuest": "Gast", + "textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", + "textNo": "Nee", + "textNoLicenseTitle": "Licentielimiet bereikt", + "textPaidFeature": "Betaalde functie", + "textRemember": "Bewaar mijn keuze", + "textYes": "Ja", + "titleServerVersion": "Editor bijgewerkt", + "titleUpdateVersion": "Versie gewijzigd", + "warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie. ", + "warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.", + "warnLicenseLimitedRenewed": "Licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.
    Neem contact op met uw administrator om volledige toegang te krijgen", + "warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.", + "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", + "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", + "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken." + } + }, + "Error": { + "convertationTimeoutText": "Time-out voor conversie overschreden.", + "criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.", + "criticalErrorTitle": "Fout", + "downloadErrorText": "Download mislukt.", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorArgsRange": "Een fout in de formule.
    Correcte argumentenreeks.", + "errorAutoFilterChange": "De brongegevens bevatten samengevoegde cellen.
    Ze zullen worden ontsloten voordat ze in de tabel worden geplakt.", + "errorAutoFilterChangeFormatTable": "De bewerking kon niet worden uitgevoerd voor de geselecteerde cellen, omdat u geen deel van een tabel kunt verplaatsen.
    Selecteer een ander gegevensbereik, zodat de hele tabel wordt verschoven en probeer het opnieuw.", + "errorAutoFilterDataRange": "De bewerking kon niet worden uitgevoerd voor het geselecteerde cellenbereik.
    Selecteer een uniform gegevensbereik binnen of buiten de tabel en probeer het opnieuw.", + "errorAutoFilterHiddenRange": "De bewerking kan niet worden uitgevoerd omdat het gebied gefilterde cellen bevat.
    Gelieve de gefilterde elementen te deactiveren en probeer opnieuw.", + "errorBadImageUrl": "Afbeelding's URL is onjuist", + "errorChangeArray": "U kunt een deel van een array niet wijzigen.", + "errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met uw beheerder.
    Wanneer u op de 'OK' knop klikt, wordt u gevraagd om het document te downloaden.", + "errorCopyMultiselectArea": "Deze opdracht kan niet worden uitgevoerd op meerdere selecties.
    Selecteer één bereik en probeer het opnieuw.", + "errorCountArg": "Een fout in de formule.
    Ongeldig aantal argumenten.", + "errorCountArgExceed": "Een fout in de formule.
    Maximum aantal argumenten overschreden.", + "errorCreateDefName": "De bestaande benoemde bereiken kunnen niet worden bewerkt en de nieuwe bereiken kunnen
    op dit moment niet worden gemaakt aangezien sommige bereiken al worden bewerkt.", + "errorDatabaseConnection": "Externe fout.
    Database verbindingsfout. Neem contact op met support.", + "errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", + "errorDataRange": "Onjuist gegevensbereik", + "errorDataValidate": "De waarde die u heeft ingevoerd, is niet geldig.
    Een beperkte waarde kan in deze cel worden ingevoerd.", + "errorDefaultMessage": "Foutcode: %1", + "errorEditingDownloadas": "Er is een fout opgetreden tijdens het werken met het document.
    Gebruik de 'Download'-optie om de reservekopie lokaal op te slaan.", + "errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.", + "errorFileRequest": "Externe fout.
    Bestandsaanvraag. Neem contact op met support.", + "errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet van uw server.
    Neem contact op met uw beheerder voor meer informatie.", + "errorFileVKey": "Externe fout.
    Verkeerde beveiligingssleutel. Neem contact op met support.", + "errorFillRange": "Het geselecteerde celbereik kan niet worden gevuld.
    Alle samengevoegde cellen moeten dezelfde grootte hebben.", + "errorFormulaName": "Een fout in de formule.
    Correcte formulenaam.", + "errorFormulaParsing": "Interne fout tijdens het parsen van de formule.", + "errorFrmlMaxLength": "U kunt deze formule niet toevoegen omdat de lengte groter is dan het toegestane aantal tekens.
    Wijzig de formule en probeer het opnieuw.", + "errorFrmlMaxReference": "U kunt deze formule niet invoeren omdat deze te veel
    waarden, cel verwijzingen en / of namen heeft.", + "errorFrmlMaxTextLength": "Tekstwaarden in formules zijn beperkt tot 255 tekens.
    Gebruik de functie CONCATENATE of de aaneenschakelingsoperator (&)", + "errorFrmlWrongReferences": "De functie verwijst naar een blad dat niet bestaat.
    Controleer de gegevens en probeer het opnieuw.", + "errorInvalidRef": "Voer een juiste naam in voor de selectie of een geldige referentie om naar toe te gaan.", + "errorKeyEncrypt": "Onbekende sleutelbeschrijver", + "errorKeyExpire": "Sleutelbeschrijver vervallen", + "errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", + "errorLockedCellPivot": "U kunt geen data veranderen in een draaitabel.", + "errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", + "errorMaxPoints": "Het maximaal aantal punten in een serie per grafiek is 4096", + "errorMoveRange": "Kan een deel van een samengevoegde cel niet wijzigen", + "errorMultiCellFormula": "Matrixformules met meerdere cellen zijn niet toegestaan in tabellen.", + "errorOpenWarning": "De lengte van een van de formules in het bestand overschrijdt
    het toegestane aantal tekens en de formule is verwijderd.", + "errorOperandExpected": "De ingevoerde functiesyntax klopt niet. Controleer of je één van de haakjes hebt gemist - '(' of ')'.", + "errorPasteMaxRange": "Het kopieer- en plakgebied komt niet overeen. Selecteer een gebied van dezelfde grootte of klik op de eerste cel in een rij om de gekopieerde cellen te plakken.", + "errorPrintMaxPagesCount": "Helaas is het in de huidige versie van het programma niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
    Deze beperking zal in volgende versies worden opgeheven.", + "errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.", + "errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.", + "errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "errorUnexpectedGuid": "Externe fout.
    Onverwachte Guid. Neem contact op met ondersteuning.", + "errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", + "errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", + "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", + "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
    maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", + "errorWrongBracketsCount": "Een fout in de formule.
    Verkeerd aantal haakjes.", + "errorWrongOperator": "Een fout in de ingevoerde formule. De verkeerde operator is gebruikt.
    Corrigeer de fout of gebruik de Esc-toets om het bewerken van de formule te annuleren.", + "notcriticalErrorTitle": "Waarschuwing", + "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", + "pastInMergeAreaError": "Kan een deel van een samengevoegde cel niet wijzigen", + "saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.", + "unknownErrorText": "Onbekende fout.", + "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", + "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + }, + "LongActions": { + "applyChangesTextText": "Gegevens worden geladen...", + "applyChangesTitleText": "Gegevens worden geladen", + "confirmMoveCellRange": "Het bereik van de doelcellen kan gegevens bevatten. Doorgaan met de bewerking?", + "confirmPutMergeRange": "De brongegevens bevatten samengevoegde cellen.
    Ze zullen worden ontsloten voordat ze in de tabel worden geplakt.", + "confirmReplaceFormulaInTable": "Formules in de kopregel worden verwijderd en omgezet in statische tekst.
    Wilt u doorgaan?", + "downloadTextText": "Document wordt gedownload...", + "downloadTitleText": "Document wordt gedownload", + "loadFontsTextText": "Gegevens worden geladen...", + "loadFontsTitleText": "Gegevens worden geladen", + "loadFontTextText": "Gegevens worden geladen...", + "loadFontTitleText": "Gegevens worden geladen", + "loadImagesTextText": "Afbeeldingen worden geladen...", + "loadImagesTitleText": "Afbeeldingen worden geladen", + "loadImageTextText": "Afbeelding wordt geladen...", + "loadImageTitleText": "Afbeelding wordt geladen", + "loadingDocumentTextText": "Document wordt geladen...", + "loadingDocumentTitleText": "Document wordt geladen", + "notcriticalErrorTitle": "Waarschuwing", + "openTextText": "Document wordt geopend...", + "openTitleText": "Document wordt geopend", + "printTextText": "Document wordt afgedrukt...", + "printTitleText": "Document wordt afgedrukt", + "savePreparingText": "Klaarmaken om op te slaan", + "savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...", + "saveTextText": "Document wordt opgeslagen...", + "saveTitleText": "Document wordt opgeslagen", + "textLoadingDocument": "Document wordt geladen", + "textNo": "Nee", + "textOk": "OK", + "textYes": "Ja", + "txtEditingMode": "Bewerkmodus instellen...", + "uploadImageTextText": "Afbeelding wordt geüpload...", + "uploadImageTitleText": "Afbeelding wordt geüpload", + "waitText": "Een moment geduld..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Waarschuwing", + "textCancel": "Annuleren", + "textDelete": "Verwijderen", + "textDuplicate": "Dupliceren", + "textErrNameExists": "Werkblad met deze naam bestaat al.", + "textErrNameWrongChar": "Een werkblad naam kan deze karakters niet bevatten: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Werkblad naam mag niet leeg zijn", + "textErrorLastSheet": "De werkmap moet ten minste één zichtbaar werkblad hebben.", + "textErrorRemoveSheet": "Het werkblad kan niet worden verwijderd.", + "textHide": "Verbergen", + "textMore": "Meer", + "textRename": "Hernoemen", + "textRenameSheet": "Blad hernoemen", + "textSheet": "Blad", + "textSheetName": "Bladnaam", + "textUnhide": "Verbergen ongedaan maken", + "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?" + }, + "Toolbar": { + "dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "dlgLeaveTitleText": "U verlaat de applicatie", + "leaveButtonText": "Pagina verlaten", + "stayButtonText": "Op deze pagina blijven" + }, + "View": { + "Add": { + "errorMaxRows": "FOUT! Het maximumaantal gegevensreeksen per grafiek is 255.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "notcriticalErrorTitle": "Waarschuwing", + "sCatDateAndTime": "Datum en tijd", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financieel", + "sCatInformation": "Informatie", + "sCatLogical": "Logisch", + "sCatLookupAndReference": "Zoeken en verwijzen", + "sCatMathematic": "Wiskunde en trigonometrie", + "sCatStatistical": "Statistisch", + "sCatTextAndData": "Tekst en gegevens", + "textAddLink": "Koppeling toevoegen", + "textAddress": "Adres", + "textBack": "Terug", + "textCancel": "Annuleren", + "textChart": "Grafiek", + "textComment": "Opmerking", + "textDisplay": "Weergeven", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textExternalLink": "Externe koppeling", + "textFilter": "Filter", + "textFunction": "Functie", + "textGroups": "CATEGORIEËN", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInsert": "Invoegen", + "textInsertImage": "Afbeelding invoegen", + "textInternalDataRange": "Intern gegevensbereik", + "textInvalidRange": "FOUT! Ongeldig celbereik", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkType": "Type koppeling", + "textOther": "Overige", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textRange": "Bereik", + "textRequired": "Vereist", + "textScreenTip": "Schermtip", + "textShape": "Vorm", + "textSheet": "Blad", + "textSortAndFilter": "Sorteren en filteren", + "txtExpand": "Uitvouwen en sorteren", + "txtExpandSort": "De gegevens naast de selectie worden niet gesorteerd. Wilt u de selectie uitbreiden en aangrenzende gegevens opnemen of wilt u doorgaan met sorteren van alleen de cellen die op dit moment zijn geselecteerd?", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "txtSorting": "Sorteren", + "txtSortSelected": "Geselecteerde sorteren" + }, + "Edit": { + "notcriticalErrorTitle": "Waarschuwing", + "textAccounting": "Boekhouding", + "textActualSize": "Ware grootte", + "textAddCustomColor": "Aangepaste kleur toevoegen", + "textAddress": "Adres", + "textAlign": "Uitlijnen", + "textAlignBottom": "Onder uitlijnen", + "textAlignCenter": "Centreren", + "textAlignLeft": "Links uitlijnen", + "textAlignMiddle": "Centreren", + "textAlignRight": "Rechts uitlijnen", + "textAlignTop": "Boven uitlijnen", + "textAllBorders": "Alle randen", + "textAngleClockwise": "Rechtsom draaien", + "textAngleCounterclockwise": "Linksom draaien", + "textAuto": "Automatisch", + "textAxisCrosses": "Snijpunten assen", + "textAxisOptions": "Asopties", + "textAxisPosition": "Aspositie", + "textAxisTitle": "Astitel", + "textBack": "Terug", + "textBetweenTickMarks": "Tussen maatstreepjes", + "textBillions": "Miljarden", + "textBorder": "Rand", + "textBorderStyle": "Rand Stijl", + "textBottom": "Onder", + "textBottomBorder": "Onderrand", + "textBringToForeground": "Naar voorgrond brengen", + "textCell": "Cel", + "textCellStyles": "Celstijlen", + "textCenter": "Midden", + "textChart": "Grafiek", + "textChartTitle": "Grafiektitel", + "textClearFilter": "Filter wissen", + "textColor": "Kleur", + "textCross": "Snijpunt", + "textCrossesValue": "Waarde van het snijpunt", + "textCurrency": "Valuta", + "textCustomColor": "Aangepaste kleur", + "textDataLabels": "Gegevenslabels", + "textDate": "Datum", + "textDefault": "Geselecteerd bereik", + "textDeleteFilter": "Filter verwijderen", + "textDesign": "Ontwerp", + "textDiagonalDownBorder": "Diagonale rand naar onder", + "textDiagonalUpBorder": "Diagonale rand naar boven", + "textDisplay": "Weergeven", + "textDisplayUnits": "Eenheden weergeven", + "textDollar": "Dollar", + "textEditLink": "Koppeling bewerken", + "textEffects": "Effecten", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textEmptyItem": "{Blanco's}", + "textErrorMsg": "U moet ten minste één waarde selecteren", + "textErrorTitle": "Waarschuwing", + "textEuro": "Euro", + "textExternalLink": "Externe koppeling", + "textFill": "Vulling", + "textFillColor": "Opvulkleur", + "textFilterOptions": "Filteropties", + "textFit": "Aanpassen aan breedte", + "textFonts": "Lettertypen", + "textFormat": "Opmaak", + "textFraction": "Breuk", + "textFromLibrary": "Afbeelding uit bibliotheek", + "textFromURL": "Afbeelding van URL", + "textGeneral": "Algemeen", + "textGridlines": "Rasterlijnen", + "textHigh": "Hoog", + "textHorizontal": "Horizontaal", + "textHorizontalAxis": "Horizontale as", + "textHorizontalText": "Horizontale tekst", + "textHundredMil": "100 000 000", + "textHundreds": "Honderden", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textIn": "In", + "textInnerBottom": "Binnen onder", + "textInnerTop": "Binnen boven", + "textInsideBorders": "Binnenranden", + "textInsideHorizontalBorder": "Horizontale binnenrand", + "textInsideVerticalBorder": "Verticale binnenrand", + "textInteger": "Heel getal", + "textInternalDataRange": "Intern gegevensbereik", + "textInvalidRange": "Ongeldig celbereik", + "textJustified": "Uitgevuld", + "textLabelOptions": "Labelopties", + "textLabelPosition": "Labelpositie", + "textLayout": "Pagina-indeling", + "textLeft": "Links", + "textLeftBorder": "Linkerrand", + "textLeftOverlay": "Overlay links", + "textLegend": "Legenda", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkType": "Type koppeling", + "textLow": "Laag", + "textMajor": "Primair", + "textMajorAndMinor": "Primair en secundair", + "textMajorType": "Hoofdtype", + "textMaximumValue": "Maximumwaarde", + "textMedium": "Gemiddeld", + "textMillions": "Miljoenen", + "textMinimumValue": "Minimumwaarde", + "textMinor": "Secundair", + "textMinorType": "Secundair type", + "textMoveBackward": "Naar achter verplaatsen", + "textMoveForward": "Naar voren verplaatsen", + "textNextToAxis": "Naast as", + "textNoBorder": "Geen rand", + "textNone": "Geen", + "textNoOverlay": "Geen overlay", + "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textNumber": "Nummer", + "textOnTickMarks": "Op maatstreepjes", + "textOpacity": "Ondoorzichtigheid", + "textOut": "Buiten", + "textOuterTop": "Buiten boven", + "textOutsideBorders": "Buitenranden", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPound": "Pond", + "textPt": "pt", + "textRange": "Bereik", + "textRemoveChart": "Grafiek verwijderen", + "textRemoveImage": "Afbeelding verwijderen", + "textRemoveLink": "Koppeling verwijderen", + "textRemoveShape": "Vorm verwijderen", + "textReorder": "Opnieuw ordenen", + "textReplace": "Vervangen", + "textReplaceImage": "Afbeelding vervangen", + "textRequired": "Vereist", + "textRight": "Rechts", + "textRightBorder": "Rechterrand", + "textRightOverlay": "Overlay rechts", + "textRotated": "Gedraaid", + "textRotateTextDown": "Tekst omlaag draaien", + "textRotateTextUp": "Tekst omhoog draaien", + "textRouble": "Roebel", + "textScientific": "Wetenschappelijk", + "textScreenTip": "Schermtip", + "textSelectAll": "Alles selecteren", + "textSelectObjectToEdit": "Selecteer object om te bewerken", + "textSendToBackground": "Naar achtergrond sturen", + "textSettings": "Instellingen", + "textShape": "Vorm", + "textSheet": "Blad", + "textSize": "Grootte", + "textStyle": "Stijl", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Tekst", + "textTextColor": "Tekstkleur", + "textTextFormat": "Tekstopmaak", + "textTextOrientation": "Tekstoriëntatie", + "textThick": "Dik", + "textThin": "Dun", + "textThousands": "Duizenden", + "textTickOptions": "Opties voor maatstreepjes", + "textTime": "Tijd", + "textTop": "Boven", + "textTopBorder": "Bovenrand", + "textTrillions": "Biljoenen", + "textType": "Type", + "textValue": "Waarde", + "textValuesInReverseOrder": "Waarden in omgekeerde volgorde", + "textVertical": "Verticaal", + "textVerticalAxis": "Verticale as", + "textVerticalText": "Verticale tekst", + "textWrapText": "Tekstterugloop", + "textYen": "Yen", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "txtSortHigh2Low": "Sorteren van hoogste naar laagste", + "txtSortLow2High": "Sorteren van laagste naar hoogste" + }, + "Settings": { + "advCSVOptions": "CSV-opties kiezen", + "advDRMEnterPassword": "Uw wachtwoord, alstublieft:", + "advDRMOptions": "Beveiligd bestand", + "advDRMPassword": "Wachtwoord", + "closeButtonText": "Bestand sluiten", + "notcriticalErrorTitle": "Waarschuwing", + "textAbout": "Over", + "textAddress": "Adres", + "textApplication": "Applicatie", + "textApplicationSettings": "Applicatie Instellingen", + "textAuthor": "Auteur", + "textBack": "Terug", + "textBottom": "Onder", + "textByColumns": "Kolommen", + "textByRows": "Door rijen", + "textCancel": "Annuleren", + "textCentimeter": "Centimeter", + "textCollaboration": "Samenwerken", + "textColorSchemes": "Kleurschema's", + "textComment": "Opmerking", + "textCommentingDisplay": "Commentaarweergave", + "textComments": "Opmerkingen", + "textCreated": "Aangemaakt", + "textCustomSize": "Aangepaste grootte", + "textDisableAll": "Alles uitschakelen", + "textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", + "textDisableAllMacrosWithoutNotification": "Schakel alle macro's uit zonder melding", + "textDone": "Klaar", + "textDownload": "Downloaden", + "textDownloadAs": "Downloaden als", + "textEmail": "E-mail", + "textEnableAll": "Alles inschakelen", + "textEnableAllMacrosWithoutNotification": "Schakel alle macro's in zonder een notificatie", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFindAndReplaceAll": "Zoek en vervang alles", + "textFormat": "Opmaak", + "textFormulaLanguage": "Taal formule", + "textFormulas": "Formules", + "textHelp": "Help", + "textHideGridlines": "Rasterlijnen verbergen", + "textHideHeadings": "Koppen verbergen", + "textHighlightRes": "Resultaten markeren", + "textInch": "Inch", + "textLandscape": "Liggend", + "textLastModified": "Laatst aangepast", + "textLastModifiedBy": "Laatst aangepast door", + "textLeft": "Links", + "textLocation": "Locatie", + "textLookIn": "Zoeken in", + "textMacrosSettings": "Macro instellingen", + "textMargins": "Marges", + "textMatchCase": "Identiek hoofdlettergebruik", + "textMatchCell": "Identiek aan cel", + "textNoTextFound": "Tekst niet gevonden", + "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", + "textOrientation": "Oriëntatie ", + "textOwner": "Eigenaar", + "textPoint": "Punt", + "textPortrait": "Staand", + "textPoweredBy": "Aangedreven door", + "textPrint": "Afdrukken", + "textR1C1Style": "R1C1 referentiestijl", + "textRegionalSettings": "Regionale instellingen", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textResolvedComments": "Opgeloste opmerkingen", + "textRight": "Rechts", + "textSearch": "Zoeken", + "textSearchBy": "Zoeken", + "textSearchIn": "Zoeken in", + "textSettings": "Instellingen", + "textSheet": "Blad", + "textShowNotification": "Notificatie weergeven", + "textSpreadsheetFormats": "Spreadsheet-indelingen", + "textSpreadsheetInfo": "Spreadsheetinformatie", + "textSpreadsheetSettings": "Spreadsheetinstellingen", + "textSpreadsheetTitle": "Titel spreadsheet", + "textSubject": "Onderwerp", + "textTel": "Tel.", + "textTitle": "Titel", + "textTop": "Boven", + "textUnitOfMeasurement": "Maateenheid", + "textUploaded": "Geüpload", + "textValues": "Waarden", + "textVersion": "Versie", + "textWorkbook": "Werkmap", + "txtDelimiter": "Scheidingsteken", + "txtEncoding": "Codering", + "txtIncorrectPwd": "Wachtwoord is onjuist", + "txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", + "txtScheme1": "Kantoor", + "txtScheme10": "Mediaan", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Overvloedig", + "txtScheme14": "Erker", + "txtScheme15": "Oorsprong", + "txtScheme16": "Papier", + "txtScheme17": "Zonnewende", + "txtScheme18": "Technisch", + "txtScheme19": "Tocht", + "txtScheme2": "Grijstinten", + "txtScheme22": "Nieuw kantoor", + "txtScheme3": "Top", + "txtScheme4": "Aspect", + "txtScheme5": "Civiel", + "txtScheme6": "Concours", + "txtScheme7": "Vermogen", + "txtScheme8": "Stroom", + "txtScheme9": "Gieterij", + "txtSpace": "Spatie", + "txtTab": "Tab", + "warnDownloadAs": "Als u doorgaat met opslaan in dit formaat, gaat alle opmaak verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 0c4092684e..20bad8c129 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -1,661 +1,128 @@ { - "Common.Controllers.Collaboration.textAddReply": "Adicionar resposta", - "Common.Controllers.Collaboration.textCancel": "Cancelar", - "Common.Controllers.Collaboration.textDeleteComment": "Excluir comentários", - "Common.Controllers.Collaboration.textDeleteReply": "Excluir resposta", - "Common.Controllers.Collaboration.textDone": "Concluído", - "Common.Controllers.Collaboration.textEdit": "Editar", - "Common.Controllers.Collaboration.textEditUser": "Usuários que estão editando o arquivo:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Você quer realmente excluir este comentário?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Você realmente quer apagar esta resposta?", - "Common.Controllers.Collaboration.textReopen": "Reabrir", - "Common.Controllers.Collaboration.textResolve": "Resolver", - "Common.Controllers.Collaboration.textYes": "Sim", - "Common.UI.ThemeColorPalette.textCustomColors": "Cores personalizadas", - "Common.UI.ThemeColorPalette.textStandartColors": "Cores padronizadas", - "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "Pt", - "Common.Views.Collaboration.textAddReply": "Adicionar resposta", - "Common.Views.Collaboration.textBack": "Voltar", - "Common.Views.Collaboration.textCancel": "Cancelar", - "Common.Views.Collaboration.textCollaboration": "Colaboração", - "Common.Views.Collaboration.textDone": "Concluído", - "Common.Views.Collaboration.textEditReply": "Editar resposta", - "Common.Views.Collaboration.textEditUsers": "Usuários", - "Common.Views.Collaboration.textEditСomment": "Editar comentário", - "Common.Views.Collaboration.textNoComments": "A planilha não contém comentários.", - "Common.Views.Collaboration.textСomments": "Comentários", - "SSE.Controllers.AddChart.txtDiagramTitle": "Título do Gráfico", - "SSE.Controllers.AddChart.txtSeries": "Série", - "SSE.Controllers.AddChart.txtXAxis": "Eixo X", - "SSE.Controllers.AddChart.txtYAxis": "Eixo Y", - "SSE.Controllers.AddContainer.textChart": "Gráfico", - "SSE.Controllers.AddContainer.textFormula": "Função", - "SSE.Controllers.AddContainer.textImage": "Imagem", - "SSE.Controllers.AddContainer.textOther": "Outro", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.AddLink.textInvalidRange": "ERRO! Intervalo de células inválido", - "SSE.Controllers.AddLink.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.AddOther.textCancel": "Cancelar", - "SSE.Controllers.AddOther.textContinue": "Continuar", - "SSE.Controllers.AddOther.textDelete": "Excluir", - "SSE.Controllers.AddOther.textDeleteDraft": "Você realmente quer apagar o rascunho?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "SSE.Controllers.AddOther.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "A referência de link não existe.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Adicionar comentário", - "SSE.Controllers.DocumentHolder.menuAddLink": "Adicionar Link", - "SSE.Controllers.DocumentHolder.menuCell": "Célula", - "SSE.Controllers.DocumentHolder.menuCopy": "Copiar", - "SSE.Controllers.DocumentHolder.menuCut": "Cortar", - "SSE.Controllers.DocumentHolder.menuDelete": "Excluir", - "SSE.Controllers.DocumentHolder.menuEdit": "Editar", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Congelar painéis", - "SSE.Controllers.DocumentHolder.menuHide": "Ocultar", - "SSE.Controllers.DocumentHolder.menuMerge": "Mesclar", - "SSE.Controllers.DocumentHolder.menuMore": "Mais", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Abrir link", - "SSE.Controllers.DocumentHolder.menuPaste": "Colar", - "SSE.Controllers.DocumentHolder.menuShow": "Exibir", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Descongelar Painéis", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Desfazer Mesclagem", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Decodificar", - "SSE.Controllers.DocumentHolder.menuViewComment": "Ver Comentário", - "SSE.Controllers.DocumentHolder.menuWrap": "Encapsulamento", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.DocumentHolder.sheetCancel": "Cancelar", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Copiar, Cortar e Colar", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Não exibir novamente", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerá na célula mesclada.
    Você tem certeza de que deseja continuar? ", - "SSE.Controllers.EditCell.textAuto": "Automático", - "SSE.Controllers.EditCell.textFonts": "Fontes", - "SSE.Controllers.EditCell.textPt": "Pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERRO! O número máximo de séries de dado por gráfico é 255.", - "SSE.Controllers.EditChart.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", - "SSE.Controllers.EditChart.textAuto": "Automático", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Entre marcas de escala", - "SSE.Controllers.EditChart.textBillions": "Bilhões", - "SSE.Controllers.EditChart.textBottom": "Inferior", - "SSE.Controllers.EditChart.textCenter": "Centro", - "SSE.Controllers.EditChart.textCross": "Cruz", - "SSE.Controllers.EditChart.textCustom": "Personalizar", - "SSE.Controllers.EditChart.textFit": "Ajustar largura", - "SSE.Controllers.EditChart.textFixed": "Corrigido", - "SSE.Controllers.EditChart.textHigh": "Alto", - "SSE.Controllers.EditChart.textHorizontal": "Horizontal", - "SSE.Controllers.EditChart.textHundredMil": "100.000.000 ", - "SSE.Controllers.EditChart.textHundreds": "Centenas", - "SSE.Controllers.EditChart.textHundredThousands": "100.000 ", - "SSE.Controllers.EditChart.textIn": "Em", - "SSE.Controllers.EditChart.textInnerBottom": "Parte inferior interna", - "SSE.Controllers.EditChart.textInnerTop": "Parte superior interna", - "SSE.Controllers.EditChart.textLeft": "Esquerda", - "SSE.Controllers.EditChart.textLeftOverlay": "Sobreposição esquerda", - "SSE.Controllers.EditChart.textLow": "Baixo", - "SSE.Controllers.EditChart.textManual": "Manual", - "SSE.Controllers.EditChart.textMaxValue": "Valor máximo", - "SSE.Controllers.EditChart.textMillions": "Milhões", - "SSE.Controllers.EditChart.textMinValue": "Valor mínimo", - "SSE.Controllers.EditChart.textNextToAxis": "Próximo ao eixo", - "SSE.Controllers.EditChart.textNone": "Nenhum", - "SSE.Controllers.EditChart.textNoOverlay": "Sem sobreposição", - "SSE.Controllers.EditChart.textOnTickMarks": "Nas marcas de escala", - "SSE.Controllers.EditChart.textOut": "Fora", - "SSE.Controllers.EditChart.textOuterTop": "Fora do topo", - "SSE.Controllers.EditChart.textOverlay": "Sobreposição", - "SSE.Controllers.EditChart.textRight": "Direita", - "SSE.Controllers.EditChart.textRightOverlay": "Sobreposição direita", - "SSE.Controllers.EditChart.textRotated": "Girado", - "SSE.Controllers.EditChart.textTenMillions": "10.000.000 ", - "SSE.Controllers.EditChart.textTenThousands": "10.000 ", - "SSE.Controllers.EditChart.textThousands": "Milhares", - "SSE.Controllers.EditChart.textTop": "Parte superior", - "SSE.Controllers.EditChart.textTrillions": "Trilhões", - "SSE.Controllers.EditChart.textValue": "Valor", - "SSE.Controllers.EditContainer.textCell": "Célula", - "SSE.Controllers.EditContainer.textChart": "Gráfico", - "SSE.Controllers.EditContainer.textHyperlink": "Hiperlink", - "SSE.Controllers.EditContainer.textImage": "Imagem", - "SSE.Controllers.EditContainer.textSettings": "Configurações", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Tabela", - "SSE.Controllers.EditContainer.textText": "Тexto", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.EditHyperlink.textDefault": "Intervalo selecionado", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Link externo", - "SSE.Controllers.EditHyperlink.textInternalLink": "Intervalo de dados interno", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Intervalo de células inválido", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "SSE.Controllers.EditImage.txtNotUrl": "Este campo deve ser um URL no formato 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Vazio}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Deve ser escolhido ao menos um valor.", - "SSE.Controllers.FilterOptions.textErrorTitle": "Aviso", - "SSE.Controllers.FilterOptions.textSelectAll": "Selecionar todos", - "SSE.Controllers.Main.advCSVOptions": "Escolher opções CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Digite sua senha:", - "SSE.Controllers.Main.advDRMOptions": "Arquivo protegido", - "SSE.Controllers.Main.advDRMPassword": "Senha", - "SSE.Controllers.Main.applyChangesTextText": "Carregando dados...", - "SSE.Controllers.Main.applyChangesTitleText": "Carregando dados", - "SSE.Controllers.Main.closeButtonText": "Fechar Arquivo", - "SSE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.", - "SSE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documento.", - "SSE.Controllers.Main.criticalErrorTitle": "Erro", - "SSE.Controllers.Main.downloadErrorText": "Transferência falhou.", - "SSE.Controllers.Main.downloadMergeText": "Transferindo...", - "SSE.Controllers.Main.downloadMergeTitle": "Transferindo", - "SSE.Controllers.Main.downloadTextText": "Transferindo planilha...", - "SSE.Controllers.Main.downloadTitleText": "Transferindo planilha", - "SSE.Controllers.Main.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.
    Entre em contato com o administrador do Document Server.", - "SSE.Controllers.Main.errorArgsRange": "Um erro na fórmula inserida.
    Intervalo de argumento incorreto está sendo usado.", - "SSE.Controllers.Main.errorAutoFilterChange": "A operação não é permitida, uma vez que ela está tentando deslocar células na tabela em sua folha de trabalho.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "A operação não pode ser feita para as células selecionadas, uma vez que você não pode mover uma parte da tabela.
    Selecione outra faixa de dados de modo que toda a tabela seja deslocada e tente novamente.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Não foi possível concluir a operação para o intervalo de células selecionado.
    Selecione um intervalo de dados uniforme interno ou externo à tabela e tente novamente.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "A operação não pode ser realizada por que a área contém células filtrads.
    Torne visíveis os elementos fritados e tente novamente.", - "SSE.Controllers.Main.errorBadImageUrl": "URL da imagem está incorreta", - "SSE.Controllers.Main.errorChangeArray": "Você não pode mudar parte de uma matriz.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.", - "SSE.Controllers.Main.errorConnectToServer": "O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.
    Quando você clicar no botão 'OK', você será solicitado a transferir o documento.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Este comando não pode ser usado com várias seleções.
    Selecione um intervalo único e tente novamente.", - "SSE.Controllers.Main.errorCountArg": "Um erro na fórmula inserida.
    Número incorreto de argumentos está sendo usado.", - "SSE.Controllers.Main.errorCountArgExceed": "Um erro na fórmula inserida.
    Número de argumentos foi excedido.", - "SSE.Controllers.Main.errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e nos novos não podem ser criados
    no momento, uma vez que alguns deles estão sendo editados.", - "SSE.Controllers.Main.errorDatabaseConnection": "Erro externo.
    Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorDataEncrypted": "Alterações criptografadas foram recebidas, e não podem ser decifradas.", - "SSE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.", - "SSE.Controllers.Main.errorDataValidate": "O valor que você digitou não é válido.
    Um usuário restringiu valores que podem ser inseridos nesta célula.", - "SSE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro.
    Use a opção 'Transferir' para gravar a cópia de backup do arquivo em seu computador.", - "SSE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", - "SSE.Controllers.Main.errorFileRequest": "Erro externo.
    Erro de solicitação de arquivo. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor.
    Por favor, contate seu administrador de Servidor de Documentos para detalhes.", - "SSE.Controllers.Main.errorFileVKey": "Erro externo.
    Chave de segurança incorreta. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorFillRange": "Não foi possível preencher o intervalo selecionado de células.
    Todas as células mescladas precisam ser do mesmo tamanho.", - "SSE.Controllers.Main.errorFormulaName": "Um erro na fórmula inserida.
    Nome da fórmula incorreto está sendo usado.", - "SSE.Controllers.Main.errorFormulaParsing": "Erro interno ao analisar a fórmula.", - "SSE.Controllers.Main.errorFrmlMaxLength": "O comprimento de sua fórmula excede o limite de 8192 caracteres.
    Por favor, edite-a e tente novamente.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Você não pode inserir esta fórmula porque ela tem muitos valores,
    referências de células, e/ou nomes.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Os valores de texto em fórmula são limitados a 255 caracteres.
    Use a função CONCATENAR ou o operador de concatenação (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "A função se refere a uma folha que não existe.
    Verifique os dados e tente novamente.", - "SSE.Controllers.Main.errorInvalidRef": "Inserir um nome correto para a seleção ou referência válida para ir para.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", - "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", - "SSE.Controllers.Main.errorLockedAll": "A operação não pode ser concluída uma vez que a folha foi bloqueada por outro usuário.", - "SSE.Controllers.Main.errorLockedCellPivot": "Você não pode alterar os dados dentro de uma tabela dinâmica. ", - "SSE.Controllers.Main.errorLockedWorksheetRename": "A folha não pode ser renomeada no momento uma vez que está sendo renomeada por outro usuário", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Carregamento falhou. Por favor, selecione um arquivo diferente.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Mesclagem falhou.", - "SSE.Controllers.Main.errorMaxPoints": "O máximo número de pontos em séries por gráfico é 4096.", - "SSE.Controllers.Main.errorMoveRange": "Não é possível alterar parte de uma célula mesclada", - "SSE.Controllers.Main.errorMultiCellFormula": "Não são permitidas fórmulas de matriz multicélulas em tabelas.", - "SSE.Controllers.Main.errorOpensource": "Usando a versão comunitária gratuita, você pode abrir documentos apenas para visualização. Para acessar editores web móveis, é necessária uma licença comercial.", - "SSE.Controllers.Main.errorOpenWarning": "Uma das fórmulas do arquivo excede o limite de 8192 caracteres.
    A fórmula foi removida.", - "SSE.Controllers.Main.errorOperandExpected": "A sintaxe de função inserida não está correta. Verifique se você se esqueceu de um dos parênteses - '(' ou ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "A área de copiar e colar não combina.
    Selecione uma área com o mesmo tamanho ou clique na primeira célula em uma linha para colar as células copiadas.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais de 1500 páginas de uma vez na versão de programa atual.
    Esta restrição será removida nos lançamentos futuros.", - "SSE.Controllers.Main.errorProcessSaveResult": "Salvamento falhou", - "SSE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", - "SSE.Controllers.Main.errorSessionAbsolute": "A sessão de edição de documentos expirou. Atualize a página.", - "SSE.Controllers.Main.errorSessionIdle": "O documento ficou sem edição por muito tempo. Atualize a página.", - "SSE.Controllers.Main.errorSessionToken": "A conexão com o servidor foi interrompida. Atualize a página.", - "SSE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", - "SSE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente.
    Entre em contato com o administrador do Document Server.", - "SSE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
    Entre em contato com o administrador do Document Server.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Erro externo.
    GUID inesperado. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
    Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", - "SSE.Controllers.Main.errorUserDrop": "O arquivo não pode ser acessado agora.", - "SSE.Controllers.Main.errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", - "SSE.Controllers.Main.errorViewerDisconnect": "Conexão perdida. Você ainda pode exibir o documento,
    mas não poderá transferir o arquivo até que a conexão seja restaurada e a página recarregada.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Um erro na fórmula inserida.
    Número errado de parênteses está sendo usado.", - "SSE.Controllers.Main.errorWrongOperator": "Um erro na fórmula inserida. Operador errado está sendo usado.
    Corrija o erro.", - "SSE.Controllers.Main.leavePageText": "Você tem alterações não salvas neste documento. Clique em \"Ficar nesta Página\" para aguardar o salvamento automático do documento. Clique em \"Sair desta página\" para descartar as alterações não salvas.", - "SSE.Controllers.Main.loadFontsTextText": "Carregando dados...", - "SSE.Controllers.Main.loadFontsTitleText": "Carregando dados", - "SSE.Controllers.Main.loadFontTextText": "Carregando dados...", - "SSE.Controllers.Main.loadFontTitleText": "Carregando dados", - "SSE.Controllers.Main.loadImagesTextText": "Carregando imagens...", - "SSE.Controllers.Main.loadImagesTitleText": "Carregando imagens", - "SSE.Controllers.Main.loadImageTextText": "Carregando imagem...", - "SSE.Controllers.Main.loadImageTitleText": "Carregando imagem", - "SSE.Controllers.Main.loadingDocumentTextText": "Carregando planilha...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Carregando planilha", - "SSE.Controllers.Main.mailMergeLoadFileText": "Carregando fonte de dados...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Carregando fonte de dados", - "SSE.Controllers.Main.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Main.openErrorText": "Ocorreu um erro ao abrir o arquivo.", - "SSE.Controllers.Main.openTextText": "Abrindo documento...", - "SSE.Controllers.Main.openTitleText": "Abrindo documento", - "SSE.Controllers.Main.pastInMergeAreaError": "Não é possível alterar parte de uma célula mesclada.", - "SSE.Controllers.Main.printTextText": "Imprimindo documento...", - "SSE.Controllers.Main.printTitleText": "Imprimindo documento", - "SSE.Controllers.Main.reloadButtonText": "Recarregar página", - "SSE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando este documento neste momento. Tente novamente mais tarde.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Acesso negado", - "SSE.Controllers.Main.saveErrorText": "Ocorreu um erro ao gravar o arquivo.", - "SSE.Controllers.Main.savePreparingText": "Preparando para gravar", - "SSE.Controllers.Main.savePreparingTitle": "Preparando para gravar. Aguarde...", - "SSE.Controllers.Main.saveTextText": "Salvando documento...", - "SSE.Controllers.Main.saveTitleText": "Salvando documento", - "SSE.Controllers.Main.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", - "SSE.Controllers.Main.sendMergeText": "Enviando mesclar...", - "SSE.Controllers.Main.sendMergeTitle": "Enviando Mesclar", - "SSE.Controllers.Main.textAnonymous": "Anônimo", - "SSE.Controllers.Main.textBack": "Voltar", - "SSE.Controllers.Main.textBuyNow": "Visitar site", - "SSE.Controllers.Main.textCancel": "Cancelar", - "SSE.Controllers.Main.textClose": "Fechar", - "SSE.Controllers.Main.textContactUs": "Contate as vendas", - "SSE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
    Por favor, contate o Departamento de Vendas para fazer cotação.", - "SSE.Controllers.Main.textDone": "Concluído", - "SSE.Controllers.Main.textGuest": "Convidado", - "SSE.Controllers.Main.textHasMacros": "O arquivo contém macros automáticas.
    Você quer executar macros?", - "SSE.Controllers.Main.textLoadingDocument": "Carregando planilha", - "SSE.Controllers.Main.textNo": "Não", - "SSE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Recurso pago", - "SSE.Controllers.Main.textPassword": "Senha", - "SSE.Controllers.Main.textPreloader": "Carregando...", - "SSE.Controllers.Main.textRemember": "Lembre-se da minha escolha", - "SSE.Controllers.Main.textShape": "Forma", - "SSE.Controllers.Main.textStrict": "Modo estrito", - "SSE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo Coedição Rápida.
    Clique no botão \"Modo Estrito\" para alternar para o modo de Coedição Estrita para editar o arquivo sem interferência de outros usuários e enviar suas alterações apenas após você gravá-las. Você pode alternar entre os modos de coedição usando o editor Configurações Avançadas.", - "SSE.Controllers.Main.textUsername": "Nome de usuário", - "SSE.Controllers.Main.textYes": "Sim", - "SSE.Controllers.Main.titleLicenseExp": "Licença expirada", - "SSE.Controllers.Main.titleServerVersion": "Editor atualizado", - "SSE.Controllers.Main.titleUpdateVersion": "Versão alterada", - "SSE.Controllers.Main.txtAccent": "Destacar", - "SSE.Controllers.Main.txtArt": "Seu texto aqui", - "SSE.Controllers.Main.txtBasicShapes": "Formas básicas", - "SSE.Controllers.Main.txtButtons": "Botões", - "SSE.Controllers.Main.txtCallouts": "Textos explicativos", - "SSE.Controllers.Main.txtCharts": "Gráficos", - "SSE.Controllers.Main.txtDelimiter": "Delimitador", - "SSE.Controllers.Main.txtDiagramTitle": "Título do Gráfico", - "SSE.Controllers.Main.txtEditingMode": "Definir modo de edição...", - "SSE.Controllers.Main.txtEncoding": "Codificação", - "SSE.Controllers.Main.txtErrorLoadHistory": "Histórico de carregamento falhou", - "SSE.Controllers.Main.txtFiguredArrows": "Setas figuradas", - "SSE.Controllers.Main.txtLines": "Linhas", - "SSE.Controllers.Main.txtMath": "Matemática", - "SSE.Controllers.Main.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.", - "SSE.Controllers.Main.txtRectangles": "Retângulos", - "SSE.Controllers.Main.txtSeries": "Série", - "SSE.Controllers.Main.txtSpace": "Espaço", - "SSE.Controllers.Main.txtStarsRibbons": "Estrelas e arco-íris", - "SSE.Controllers.Main.txtStyle_Bad": "Mau", - "SSE.Controllers.Main.txtStyle_Calculation": "Cálculo", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Verificar célula", - "SSE.Controllers.Main.txtStyle_Comma": "Vírgula", - "SSE.Controllers.Main.txtStyle_Currency": "Moeda", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texto explicativo", - "SSE.Controllers.Main.txtStyle_Good": "Bom", - "SSE.Controllers.Main.txtStyle_Heading_1": "Cabeçalho 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Cabeçalho 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Cabeçalho 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Cabeçalho 4", - "SSE.Controllers.Main.txtStyle_Input": "Entrada", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Célula vinculada", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutro", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Nota", - "SSE.Controllers.Main.txtStyle_Output": "Saída", - "SSE.Controllers.Main.txtStyle_Percent": "Por cento", - "SSE.Controllers.Main.txtStyle_Title": "Título", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Texto de aviso", - "SSE.Controllers.Main.txtTab": "Aba", - "SSE.Controllers.Main.txtXAxis": "Eixo X", - "SSE.Controllers.Main.txtYAxis": "Eixo Y", - "SSE.Controllers.Main.unknownErrorText": "Erro desconhecido.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Seu navegador não é suportado.", - "SSE.Controllers.Main.uploadImageExtMessage": "Formato de imagem desconhecido.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Sem imagens carregadas.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Limite máximo do tamanho da imagem excedido.", - "SSE.Controllers.Main.uploadImageTextText": "Carregando imagem...", - "SSE.Controllers.Main.uploadImageTitleText": "Carregando imagem", - "SSE.Controllers.Main.waitText": "Aguarde...", - "SSE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
    Entre em contato com seu administrador para saber mais.", - "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
    Atualize sua licença e atualize a página.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "A licença expirou.
    Você não tem acesso à funcionalidade de edição de documentos.
    Por favor, contate seu administrador.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "A licença precisa ser renovada.
    Você tem acesso limitado à funcionalidade de edição de documentos.
    Entre em contato com o administrador para obter acesso total.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", - "SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "SSE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", - "SSE.Controllers.Search.textNoTextFound": "Texto não encontrado", - "SSE.Controllers.Search.textReplaceAll": "Substituir tudo", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Settings.txtDe": "Deutsch", - "SSE.Controllers.Settings.txtEn": "English", - "SSE.Controllers.Settings.txtEs": "Espanhol", - "SSE.Controllers.Settings.txtFr": "Francês", - "SSE.Controllers.Settings.txtIt": "Italiano", - "SSE.Controllers.Settings.txtPl": "Polonês", - "SSE.Controllers.Settings.txtRu": "Russian", - "SSE.Controllers.Settings.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
    Você tem certeza que quer continuar?", - "SSE.Controllers.Statusbar.cancelButtonText": "Cancelar", - "SSE.Controllers.Statusbar.errNameExists": "Folha de trabalho com este nome já existe.", - "SSE.Controllers.Statusbar.errNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Nome da folha não deve estar vazio", - "SSE.Controllers.Statusbar.errorLastSheet": "Pasta de trabalho deve ter no mínimo uma planilha visível.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Não é possível excluir a folha de trabalho.", - "SSE.Controllers.Statusbar.menuDelete": "Excluir", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplicado", - "SSE.Controllers.Statusbar.menuHide": "Ocultar", - "SSE.Controllers.Statusbar.menuMore": "Mais", - "SSE.Controllers.Statusbar.menuRename": "Renomear", - "SSE.Controllers.Statusbar.menuUnhide": "Reexibir", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Statusbar.strRenameSheet": "Renomear Folha", - "SSE.Controllers.Statusbar.strSheet": "Folha", - "SSE.Controllers.Statusbar.strSheetName": "Nome da folha", - "SSE.Controllers.Statusbar.textExternalLink": "Link externo", - "SSE.Controllers.Statusbar.warnDeleteSheet": "A folha de trabalho talvez tenha dados. Continuar a operação?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Há alterações não gravadas neste documento. Clique em 'Ficar nesta Página' para aguardar o salvamento automático do documento. Clique em 'Sair desta página' para descartar as alterações não gravadas.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Você saiu do aplicativo", - "SSE.Controllers.Toolbar.leaveButtonText": "Sair desta página", - "SSE.Controllers.Toolbar.stayButtonText": "Ficar nesta página", - "SSE.Views.AddFunction.sCatDateAndTime": "Data e Hora", - "SSE.Views.AddFunction.sCatEngineering": "Engenharia", - "SSE.Views.AddFunction.sCatFinancial": "Financeiro", - "SSE.Views.AddFunction.sCatInformation": "Informações", - "SSE.Views.AddFunction.sCatLogical": "Lógica", - "SSE.Views.AddFunction.sCatLookupAndReference": "Pesquisa e referência", - "SSE.Views.AddFunction.sCatMathematic": "Matemática e trigonometria", - "SSE.Views.AddFunction.sCatStatistical": "Estatística", - "SSE.Views.AddFunction.sCatTextAndData": "Texto e Dados", - "SSE.Views.AddFunction.textBack": "Voltar", - "SSE.Views.AddFunction.textGroups": "Categorias", - "SSE.Views.AddLink.textAddLink": "Adicionar Link", - "SSE.Views.AddLink.textAddress": "endereço", - "SSE.Views.AddLink.textDisplay": "Exibir", - "SSE.Views.AddLink.textExternalLink": "Link externo", - "SSE.Views.AddLink.textInsert": "Inserir", - "SSE.Views.AddLink.textInternalLink": "Intervalo de dados interno", - "SSE.Views.AddLink.textLink": "Link", - "SSE.Views.AddLink.textLinkType": "Tipo de link", - "SSE.Views.AddLink.textRange": "Intervalo", - "SSE.Views.AddLink.textRequired": "Necessário", - "SSE.Views.AddLink.textSelectedRange": "Intervalo selecionado", - "SSE.Views.AddLink.textSheet": "Folha", - "SSE.Views.AddLink.textTip": "Dica de tela", - "SSE.Views.AddOther.textAddComment": "Adicionar comentário", - "SSE.Views.AddOther.textAddress": "endereço", - "SSE.Views.AddOther.textBack": "Voltar", - "SSE.Views.AddOther.textComment": "Comentário", - "SSE.Views.AddOther.textDone": "Concluído", - "SSE.Views.AddOther.textFilter": "Filtro", - "SSE.Views.AddOther.textFromLibrary": "Imagem da biblioteca", - "SSE.Views.AddOther.textFromURL": "Imagem da URL", - "SSE.Views.AddOther.textImageURL": "URL da imagem", - "SSE.Views.AddOther.textInsert": "Inserir", - "SSE.Views.AddOther.textInsertImage": "Inserir imagem", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textLinkSettings": "Configurações de link", - "SSE.Views.AddOther.textSort": "Classificar e Filtrar", - "SSE.Views.EditCell.textAccounting": "Contabilidade", - "SSE.Views.EditCell.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditCell.textAlignBottom": "Alinhar à parte inferior", - "SSE.Views.EditCell.textAlignCenter": "Alinhar ao centro", - "SSE.Views.EditCell.textAlignLeft": "Alinhar à esquerda", - "SSE.Views.EditCell.textAlignMiddle": "Alinhar ao meio", - "SSE.Views.EditCell.textAlignRight": "Alinhar à direita", - "SSE.Views.EditCell.textAlignTop": "Alinhar à parte superior", - "SSE.Views.EditCell.textAllBorders": "Todas as bordas", - "SSE.Views.EditCell.textAngleClockwise": "Ângulo no sentido horário", - "SSE.Views.EditCell.textAngleCounterclockwise": "Ângulo no sentido antihorário", - "SSE.Views.EditCell.textBack": "Voltar", - "SSE.Views.EditCell.textBorderStyle": "Estilo de borda", - "SSE.Views.EditCell.textBottomBorder": "Limite inferior", - "SSE.Views.EditCell.textCellStyle": "Estilos de célula", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Cor", - "SSE.Views.EditCell.textCurrency": "Moeda", - "SSE.Views.EditCell.textCustomColor": "Cor personalizada", - "SSE.Views.EditCell.textDate": "Data", - "SSE.Views.EditCell.textDiagDownBorder": "Borda inferior diagonal", - "SSE.Views.EditCell.textDiagUpBorder": "Borda superior diagonal", - "SSE.Views.EditCell.textDollar": "Dólar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Cor de preenchimento", - "SSE.Views.EditCell.textFonts": "Fontes", - "SSE.Views.EditCell.textFormat": "Formato", - "SSE.Views.EditCell.textGeneral": "Geral", - "SSE.Views.EditCell.textHorizontalText": "Texto horizontal", - "SSE.Views.EditCell.textInBorders": "Bordas interiores", - "SSE.Views.EditCell.textInHorBorder": "Limite horizontal interior", - "SSE.Views.EditCell.textInteger": "Integral", - "SSE.Views.EditCell.textInVertBorder": "Limite vertical interior", - "SSE.Views.EditCell.textJustified": "Justificado", - "SSE.Views.EditCell.textLeftBorder": "Limite esquerdo", - "SSE.Views.EditCell.textMedium": "Médio", - "SSE.Views.EditCell.textNoBorder": "Sem limite", - "SSE.Views.EditCell.textNumber": "Número", - "SSE.Views.EditCell.textPercentage": "Porcentagem", - "SSE.Views.EditCell.textPound": "Libra", - "SSE.Views.EditCell.textRightBorder": "Limite direito", - "SSE.Views.EditCell.textRotateTextDown": "Girar Texto para Baixo", - "SSE.Views.EditCell.textRotateTextUp": "Girar Texto para Cima", - "SSE.Views.EditCell.textRouble": "Rublo", - "SSE.Views.EditCell.textScientific": "Científico", - "SSE.Views.EditCell.textSize": "Tamanho", - "SSE.Views.EditCell.textText": "Тexto", - "SSE.Views.EditCell.textTextColor": "Cor do texto", - "SSE.Views.EditCell.textTextFormat": "Formato do texto", - "SSE.Views.EditCell.textTextOrientation": "Orientação do texto", - "SSE.Views.EditCell.textThick": "Espesso", - "SSE.Views.EditCell.textThin": "Fino", - "SSE.Views.EditCell.textTime": "Hora", - "SSE.Views.EditCell.textTopBorder": "Limite superior", - "SSE.Views.EditCell.textVerticalText": "Texto vertical", - "SSE.Views.EditCell.textWrapText": "Quebrar texto automaticamente", - "SSE.Views.EditCell.textYen": "Iene", - "SSE.Views.EditChart.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditChart.textAuto": "Automático", - "SSE.Views.EditChart.textAxisCrosses": "Eixo cruza", - "SSE.Views.EditChart.textAxisOptions": "Opções de eixo", - "SSE.Views.EditChart.textAxisPosition": "Posição de eixo", - "SSE.Views.EditChart.textAxisTitle": "Título do eixo", - "SSE.Views.EditChart.textBack": "Voltar", - "SSE.Views.EditChart.textBackward": "Mover para trás", - "SSE.Views.EditChart.textBorder": "Limite", - "SSE.Views.EditChart.textBottom": "Inferior", - "SSE.Views.EditChart.textChart": "Gráfico", - "SSE.Views.EditChart.textChartTitle": "Título do Gráfico", - "SSE.Views.EditChart.textColor": "Cor", - "SSE.Views.EditChart.textCrossesValue": "Valor cruzado", - "SSE.Views.EditChart.textCustomColor": "Cor personalizada", - "SSE.Views.EditChart.textDataLabels": "Rótulos de dados", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Exibir unidades", - "SSE.Views.EditChart.textFill": "Preencher", - "SSE.Views.EditChart.textForward": "Mover para frente", - "SSE.Views.EditChart.textGridlines": "Linhas de grade", - "SSE.Views.EditChart.textHorAxis": "Eixo horizontal", - "SSE.Views.EditChart.textHorizontal": "Horizontal", - "SSE.Views.EditChart.textLabelOptions": "Opções de etiqueta", - "SSE.Views.EditChart.textLabelPos": "Posição da etiqueta", - "SSE.Views.EditChart.textLayout": "Layout", - "SSE.Views.EditChart.textLeft": "Esquerda", - "SSE.Views.EditChart.textLeftOverlay": "Sobreposição esquerda", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Principal", - "SSE.Views.EditChart.textMajorMinor": "Maior e Menor", - "SSE.Views.EditChart.textMajorType": "Tipo principal", - "SSE.Views.EditChart.textMaxValue": "Valor máximo", - "SSE.Views.EditChart.textMinor": "Menor", - "SSE.Views.EditChart.textMinorType": "Tipo menor", - "SSE.Views.EditChart.textMinValue": "Valor mínimo", - "SSE.Views.EditChart.textNone": "Nenhum", - "SSE.Views.EditChart.textNoOverlay": "Sem sobreposição", - "SSE.Views.EditChart.textOverlay": "Sobreposição", - "SSE.Views.EditChart.textRemoveChart": "Remover gráfico", - "SSE.Views.EditChart.textReorder": "Reordenar", - "SSE.Views.EditChart.textRight": "Direita", - "SSE.Views.EditChart.textRightOverlay": "Sobreposição direita", - "SSE.Views.EditChart.textRotated": "Girado", - "SSE.Views.EditChart.textSize": "Tamanho", - "SSE.Views.EditChart.textStyle": "Estilo", - "SSE.Views.EditChart.textTickOptions": "Opções de escala", - "SSE.Views.EditChart.textToBackground": "Enviar para plano de fundo", - "SSE.Views.EditChart.textToForeground": "Trazer para primeiro plano", - "SSE.Views.EditChart.textTop": "Parte superior", - "SSE.Views.EditChart.textType": "Tipo", - "SSE.Views.EditChart.textValReverseOrder": "Valores na ordem reversa", - "SSE.Views.EditChart.textVerAxis": "Eixo vertical", - "SSE.Views.EditChart.textVertical": "Vertical", - "SSE.Views.EditHyperlink.textBack": "Voltar", - "SSE.Views.EditHyperlink.textDisplay": "Exibir", - "SSE.Views.EditHyperlink.textEditLink": "Editar Link", - "SSE.Views.EditHyperlink.textExternalLink": "Link externo", - "SSE.Views.EditHyperlink.textInternalLink": "Intervalo de dados interno", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Tipo de link", - "SSE.Views.EditHyperlink.textRange": "Intervalo", - "SSE.Views.EditHyperlink.textRemoveLink": "Remover link", - "SSE.Views.EditHyperlink.textScreenTip": "Dica de tela", - "SSE.Views.EditHyperlink.textSheet": "Folha", - "SSE.Views.EditImage.textAddress": "endereço", - "SSE.Views.EditImage.textBack": "Voltar", - "SSE.Views.EditImage.textBackward": "Mover para trás", - "SSE.Views.EditImage.textDefault": "Tamanho real", - "SSE.Views.EditImage.textForward": "Mover para frente", - "SSE.Views.EditImage.textFromLibrary": "Imagem da biblioteca", - "SSE.Views.EditImage.textFromURL": "Imagem da URL", - "SSE.Views.EditImage.textImageURL": "URL da imagem", - "SSE.Views.EditImage.textLinkSettings": "Configurações de link", - "SSE.Views.EditImage.textRemove": "Remover imagem", - "SSE.Views.EditImage.textReorder": "Reordenar", - "SSE.Views.EditImage.textReplace": "Substituir", - "SSE.Views.EditImage.textReplaceImg": "Substituir imagem", - "SSE.Views.EditImage.textToBackground": "Enviar para plano de fundo", - "SSE.Views.EditImage.textToForeground": "Trazer para primeiro plano", - "SSE.Views.EditShape.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditShape.textBack": "Voltar", - "SSE.Views.EditShape.textBackward": "Mover para trás", - "SSE.Views.EditShape.textBorder": "Limite", - "SSE.Views.EditShape.textColor": "Cor", - "SSE.Views.EditShape.textCustomColor": "Cor personalizada", - "SSE.Views.EditShape.textEffects": "Efeitos", - "SSE.Views.EditShape.textFill": "Preencher", - "SSE.Views.EditShape.textForward": "Mover para frente", - "SSE.Views.EditShape.textOpacity": "Opacidade", - "SSE.Views.EditShape.textRemoveShape": "Remover forma", - "SSE.Views.EditShape.textReorder": "Reordenar", - "SSE.Views.EditShape.textReplace": "Substituir", - "SSE.Views.EditShape.textSize": "Tamanho", - "SSE.Views.EditShape.textStyle": "Estilo", - "SSE.Views.EditShape.textToBackground": "Enviar para plano de fundo", - "SSE.Views.EditShape.textToForeground": "Trazer para primeiro plano", - "SSE.Views.EditText.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditText.textBack": "Voltar", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Cor personalizada", - "SSE.Views.EditText.textFillColor": "Cor de preenchimento", - "SSE.Views.EditText.textFonts": "Fontes", - "SSE.Views.EditText.textSize": "Tamanho", - "SSE.Views.EditText.textTextColor": "Cor do texto", - "SSE.Views.FilterOptions.textClearFilter": "Limpar filtro", - "SSE.Views.FilterOptions.textDeleteFilter": "Excluir Filtro", - "SSE.Views.FilterOptions.textFilter": "Opções de Filtro", - "SSE.Views.Search.textByColumns": "Por colunas", - "SSE.Views.Search.textByRows": "Por linhas", - "SSE.Views.Search.textDone": "Concluído", - "SSE.Views.Search.textFind": "Localizar", - "SSE.Views.Search.textFindAndReplace": "Localizar e substituir", - "SSE.Views.Search.textFormulas": "Fórmulas", - "SSE.Views.Search.textHighlightRes": "Destacar resultados", - "SSE.Views.Search.textLookIn": "Olhar em", - "SSE.Views.Search.textMatchCase": "Diferenciar maiúsculas/minúsculas", - "SSE.Views.Search.textMatchCell": "Corresponder célula", - "SSE.Views.Search.textReplace": "Substituir", - "SSE.Views.Search.textSearch": "Pesquisar", - "SSE.Views.Search.textSearchBy": "Pesquisar", - "SSE.Views.Search.textSearchIn": "Pesquisar em", - "SSE.Views.Search.textSheet": "Folha", - "SSE.Views.Search.textValues": "Valores", - "SSE.Views.Search.textWorkbook": "Pasta de trabalho", - "SSE.Views.Settings.textAbout": "Sobre", - "SSE.Views.Settings.textAddress": "endereço", - "SSE.Views.Settings.textApplication": "Aplicativo", - "SSE.Views.Settings.textApplicationSettings": "Configurações de Aplicativo", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Voltar", - "SSE.Views.Settings.textBottom": "Inferior", - "SSE.Views.Settings.textCentimeter": "Centímetro", - "SSE.Views.Settings.textCollaboration": "Colaboração", - "SSE.Views.Settings.textColorSchemes": "Esquemas de cor", - "SSE.Views.Settings.textComment": "Comentário", - "SSE.Views.Settings.textCommentingDisplay": "Tela de comentários", - "SSE.Views.Settings.textCreated": "Criado", - "SSE.Views.Settings.textCreateDate": "Data de criação", - "SSE.Views.Settings.textCustom": "Personalizar", - "SSE.Views.Settings.textCustomSize": "Tamanho personalizado", - "SSE.Views.Settings.textDisableAll": "Desabilitar tudo", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Desativar todas as macros com uma notificação", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem uma notificação", - "SSE.Views.Settings.textDisplayComments": "Comentários", - "SSE.Views.Settings.textDisplayResolvedComments": "Comentários Solucionados", - "SSE.Views.Settings.textDocInfo": "Informações da planilha", - "SSE.Views.Settings.textDocTitle": "Título da planilha", - "SSE.Views.Settings.textDone": "Concluído", - "SSE.Views.Settings.textDownload": "Transferir", - "SSE.Views.Settings.textDownloadAs": "Transferir como...", - "SSE.Views.Settings.textEditDoc": "Editar documento", - "SSE.Views.Settings.textEmail": "e-mail", - "SSE.Views.Settings.textEnableAll": "Habilitar todos", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem uma notificação", - "SSE.Views.Settings.textExample": "Exemplo", - "SSE.Views.Settings.textFind": "Localizar", - "SSE.Views.Settings.textFindAndReplace": "Localizar e substituir", - "SSE.Views.Settings.textFormat": "Formatar", - "SSE.Views.Settings.textFormulaLanguage": "Linguagem de fórmula", - "SSE.Views.Settings.textHelp": "Ajuda", - "SSE.Views.Settings.textHideGridlines": "Ocultar linhas de grade", - "SSE.Views.Settings.textHideHeadings": "Ocultar Cabeçalhos", - "SSE.Views.Settings.textInch": "Polegada", - "SSE.Views.Settings.textLandscape": "Paisagem", - "SSE.Views.Settings.textLastModified": "Última modificação", - "SSE.Views.Settings.textLastModifiedBy": "Última Modificação Por", - "SSE.Views.Settings.textLeft": "Esquerda", - "SSE.Views.Settings.textLoading": "Carregando...", - "SSE.Views.Settings.textLocation": "Localização", - "SSE.Views.Settings.textMacrosSettings": "Configurações de macros", - "SSE.Views.Settings.textMargins": "Margens", - "SSE.Views.Settings.textOrientation": "Orientação", - "SSE.Views.Settings.textOwner": "Proprietário", - "SSE.Views.Settings.textPoint": "Ponto", - "SSE.Views.Settings.textPortrait": "Retrato ", - "SSE.Views.Settings.textPoweredBy": "Desenvolvido por", - "SSE.Views.Settings.textPrint": "Imprimir", - "SSE.Views.Settings.textR1C1Style": "Estilo de Referência R1C1", - "SSE.Views.Settings.textRegionalSettings": "Configurações Regionais", - "SSE.Views.Settings.textRight": "Direita", - "SSE.Views.Settings.textSettings": "Configurações", - "SSE.Views.Settings.textShowNotification": "Mostrar notificação", - "SSE.Views.Settings.textSpreadsheetFormats": "Formatos da Planilha", - "SSE.Views.Settings.textSpreadsheetSettings": "Configurações da Planilha", - "SSE.Views.Settings.textSubject": "Assunto", - "SSE.Views.Settings.textTel": "Tel", - "SSE.Views.Settings.textTitle": "Titulo", - "SSE.Views.Settings.textTop": "Parte superior", - "SSE.Views.Settings.textUnitOfMeasurement": "Unidade de medida", - "SSE.Views.Settings.textUploaded": "Carregado", - "SSE.Views.Settings.textVersion": "Versão", - "SSE.Views.Settings.unknownText": "Desconhecido", - "SSE.Views.Toolbar.textBack": "Voltar" + "About": { + "textAbout": "Sobre", + "textAddress": "Endereço", + "textBack": "Voltar" + }, + "Common": { + "Collaboration": { + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textCollaboration": "Colaboração" + } + }, + "ContextMenu": { + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar Link", + "menuCancel": "Cancelar", + "menuCell": "Célula" + }, + "Controller": { + "Main": { + "SDK": { + "txtAccent": "Acentuação", + "txtAll": "(Todos)", + "txtBlank": "Em branco", + "txtByField": "%1 de %2", + "txtClearFilter": "Limpar Filtro", + "txtDiagramTitle": "Título do Gráfico", + "txtOr": "%1 ou %2", + "txtStyle_Bad": "Mau", + "txtStyle_Calculation": "Cálculo", + "txtStyle_Check_Cell": "Verificar célula" + }, + "textAnonymous": "Anônimo", + "textClose": "Fechar" + } + }, + "Error": { + "errorArgsRange": "Um erro na fórmula.
    Intervalo de argumentos incorreto.", + "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
    Ao clicar no botão 'OK', você será solicitado a baixar o documento.", + "errorCountArg": "Um erro na fórmula.
    Número inválido de argumentos.", + "errorCountArgExceed": "Um erro na fórmula.
    Número máximo de argumentos excedido.", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Use a opção 'Download' para salvar a cópia de backup do arquivo localmente.", + "errorFormulaName": "Um erro na fórmula.
    Nome da fórmula incorreto.", + "errorMoveRange": "Não é possível alterar uma parte de uma célula mesclada", + "errorWrongBracketsCount": "Erro na fórmula.
    Número incorreto de colchetes.", + "errorWrongOperator": "Um erro na fórmula inserida. O operador errado é usado.
    Corrija o erro ou use o botão Esc para cancelar a edição da fórmula.", + "openErrorText": "Ocorreu um erro ao abrir o arquivo", + "pastInMergeAreaError": "Não é possível alterar uma parte de uma célula mesclada", + "saveErrorText": "Ocorreu um erro ao gravar o arquivo" + }, + "Statusbar": { + "textCancel": "Cancelar", + "textErrNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :", + "textErrorRemoveSheet": "Não é possível excluir a folha de trabalho." + }, + "View": { + "Add": { + "textAddLink": "Adicionar Link", + "textAddress": "Endereço", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textChart": "Gráfico", + "textGroups": "Categorias" + }, + "Edit": { + "textAccounting": "Contabilidade", + "textActualSize": "Tamanho atual", + "textAddCustomColor": "Adicionar Cor Personalizada", + "textAddress": "Endereço", + "textAlign": "Alinhar", + "textAlignBottom": "Alinhar à parte inferior", + "textAlignCenter": "Alinhar ao centro", + "textAlignLeft": "Alinhar à esquerda", + "textAlignMiddle": "Alinhar ao centro", + "textAlignRight": "Alinhar à direita", + "textAlignTop": "Alinhar em cima", + "textAllBorders": "Todas as bordas", + "textAngleClockwise": "Ângulo no sentido horário", + "textAngleCounterclockwise": "Ângulo no sentido antihorário", + "textAuto": "Automático", + "textAxisCrosses": "Eixos cruzam", + "textAxisOptions": "Opções de eixo", + "textAxisPosition": "Posição de eixo", + "textAxisTitle": "Título do eixo", + "textBack": "Voltar", + "textBetweenTickMarks": "Entre marcas de escala", + "textBillions": "Bilhões", + "textBorder": "Borda", + "textBorderStyle": "Estilo de borda", + "textBottom": "Inferior", + "textBottomBorder": "Limite inferior", + "textBringToForeground": "Trazer para primeiro plano", + "textCell": "Célula", + "textCellStyles": "Estilos de célula", + "textCenter": "Centro", + "textChart": "Gráfico", + "textChartTitle": "Título do Gráfico", + "textClearFilter": "Limpar filtro", + "textEmptyItem": "{Vazio}", + "textHundredMil": "100.000.000 ", + "textHundredThousands": "100.000 ", + "textTenMillions": "10.000.000 ", + "textTenThousands": "10.000 " + }, + "Settings": { + "advCSVOptions": "Escolher opções CSV", + "closeButtonText": "Fechar Arquivo", + "textAbout": "Sobre", + "textAddress": "Endereço", + "textApplication": "Aplicativo", + "textApplicationSettings": "Configurações de Aplicativo", + "textAuthor": "Autor", + "textBack": "Voltar", + "textBottom": "Inferior", + "textByColumns": "Por colunas", + "textByRows": "Por linhas", + "textCancel": "Cancelar", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme5": "Cívico" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index d7a76846ed..58414d6b9d 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -1,34 +1,342 @@ { "About": { "textAbout": "Despre", - "textAddress": "Adresă" + "textAddress": "Adresă", + "textBack": "Înapoi", + "textEmail": "Email", + "textPoweredBy": "Dezvoltat de", + "textTel": "Tel", + "textVersion": "Versiune" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Avertisment", "textAddComment": "Adaugă comentariu", - "textAddReply": "Adăugare răspuns" + "textAddReply": "Adăugare răspuns", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textCollaboration": "Colaborare", + "textComments": "Comentarii", + "textDeleteComment": "Ștergere comentariu", + "textDeleteReply": "Ștergere răspuns", + "textDone": "Gata", + "textEdit": "Editare", + "textEditComment": "Editare comentariu", + "textEditReply": "Editare răspuns", + "textEditUser": "Fișierul este editat de către:", + "textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", + "textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", + "textNoComments": "Documentul nu cuprinde comentarii", + "textReopen": "Redeschidere", + "textResolve": "Rezolvare", + "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "textUsers": "Utilizatori" + }, + "ThemeColorPalette": { + "textCustomColors": "Culori particularizate", + "textStandartColors": "Culori standard", + "textThemeColors": "Culori temă" } }, "ContextMenu": { + "errorCopyCutPaste": "Operațiuni de copiere, decupare și lipire din meniul contextual se execută numai în fișierul curent.", "menuAddComment": "Adaugă comentariu", - "menuAddLink": "Adăugare link" + "menuAddLink": "Adăugare link", + "menuCancel": "Anulează", + "menuCell": "Celula", + "menuDelete": "Ștergere", + "menuEdit": "Editare", + "menuFreezePanes": "Înghețare panouri", + "menuHide": "Ascunde", + "menuMerge": "Îmbinare", + "menuMore": "Mai multe", + "menuOpenLink": "Deschidere link", + "menuShow": "Afișează", + "menuUnfreezePanes": "Dezghețare panouri", + "menuUnmerge": "Anulare îmbinării", + "menuUnwrap": "Anulare încadrare", + "menuViewComment": "Vizualizarea comentariilor", + "menuWrap": "Încadrare", + "notcriticalErrorTitle": "Avertisment", + "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", + "textDoNotShowAgain": "Nu mai afișa", + "warnMergeLostData": "Operațiunea poate rezulta în distrugerea datelor din celule selectate. Doriți să continuați?" }, "Controller": { "Main": { + "criticalErrorTitle": "Eroare", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorProcessSaveResult": "Salvarea a eșuat.", + "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", + "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", + "leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "notcriticalErrorTitle": "Avertisment", "SDK": { - "txtAccent": "Accent" - } + "txtAccent": "Accent", + "txtAll": "(Toate)", + "txtArt": "Textul dvs. aici", + "txtBlank": "(necompletat)", + "txtByField": "%1 din %2", + "txtClearFilter": "Golire filtru (Alt+C)", + "txtColLbls": "Etichete coloană", + "txtColumn": "Coloană", + "txtConfidential": "Confidențial", + "txtDate": "Dată", + "txtDays": "Zile", + "txtDiagramTitle": "Titlu diagramă", + "txtFile": "Fişier", + "txtGrandTotal": "Totaluri generale", + "txtGroup": "Grupare", + "txtHours": "Oră", + "txtMinutes": "minute", + "txtMonths": "Lună", + "txtMultiSelect": "Selecții multiple (Alt+S)", + "txtOr": "%1 sau %2", + "txtPage": "Pagina", + "txtPageOf": "Pagina %1 din %2", + "txtPages": "Pagini", + "txtPreparedBy": "Pregătit de către", + "txtPrintArea": "Zonă_Imprimare", + "txtQuarter": "Trim", + "txtQuarters": "Trimestre", + "txtRow": "Rând", + "txtRowLbls": "Etichete de rând", + "txtSeconds": "Secunde", + "txtSeries": "Serie", + "txtStyle_Bad": "Eronat", + "txtStyle_Calculation": "Calculare", + "txtStyle_Check_Cell": "Verificarea celulei", + "txtStyle_Comma": "Virgulă", + "txtStyle_Currency": "Monedă", + "txtStyle_Explanatory_Text": "Text explicativ", + "txtStyle_Good": "Bun", + "txtStyle_Heading_1": "Titlu 1", + "txtStyle_Heading_2": "Titlu 2", + "txtStyle_Heading_3": "Titlu 3", + "txtStyle_Heading_4": "Titlu 4", + "txtStyle_Input": "Intrare", + "txtStyle_Linked_Cell": "Celulă legată", + "txtStyle_Neutral": "Neutru", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Notă", + "txtStyle_Output": "Ieșirea", + "txtStyle_Percent": "Procent", + "txtStyle_Title": "Titlu", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Mesaj de avertisment", + "txtTab": "Fila", + "txtTable": "Tabel", + "txtTime": "Oră", + "txtValues": "Valori", + "txtXAxis": "Axa X", + "txtYAxis": "Axa Y", + "txtYears": "Ani" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Vizitarea site-ul Web", + "textClose": "Închidere", + "textContactUs": "Contactați Departamentul de Vânzări", + "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textGuest": "Invitat", + "textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", + "textNo": "Nu", + "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textPaidFeature": "Funcția contra plată", + "textRemember": "Reține opțiunea mea", + "textYes": "Da", + "titleServerVersion": "Editorul a fost actualizat", + "titleUpdateVersion": "Versiunea s-a modificat", + "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", + "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", + "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
    Funcțiile de editare sunt cu acces limitat.
    Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.", + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." } }, + "Error": { + "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", + "criticalErrorExtText": "Faceți clic pe OK pentru a reveni la lista de documente.", + "criticalErrorTitle": "Eroare", + "downloadErrorText": "Descărcare eșuată.", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorArgsRange": "Eroare în formulă.
    Zonă argument incorectă.", + "errorAutoFilterChange": "Operațiunea nu este permisă deoarece este o încercare de a deplasa celulele în tabel din foaia de calcul dvs.", + "errorAutoFilterChangeFormatTable": "Operațiunea nu poate fi efectuată pentru celulele selectate deaorece nu puteți deplasa o parte din tabel.
    Selectați o altă zonă de date pentru mutarea întregului tabel și încercați din nou.", + "errorAutoFilterDataRange": "Operațiunea nu poare fi efectuată pentru celulele selectate.
    Selectați o altă zonă de date uniformă din tabel sau în afara tabelului și încercați din nou.", + "errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
    Reafișați elementele filtrate și încercați din nou.", + "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", + "errorConnectToServer": "Salvarea documentului nu este posibilă. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", + "errorCopyMultiselectArea": "Această comandă nu poate fi aplicată la selecții multiple
    Selectați o singură zonă și încercați din nou.", + "errorCountArg": "Eroare în formulă.
    Număr incorect de argumente.", + "errorCountArgExceed": "Eroare în formulă.
    Numărul maxim de argumente a fost depășit.", + "errorCreateDefName": "Zone denumite existente nu pot fi editate, dar nici cele noi nu pot fi create
    deoarece unele dintre acestea sunt editate în momentul de față.", + "errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", + "errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", + "errorDataRange": "Zonă de date incorectă.", + "errorDataValidate": "Valoarea introdusă nu este validă
    Unul dintre utilizatori a restricționat valorile pe care utilizatorii le introduc într-o celulă. ", + "errorDefaultMessage": "Codul de eroare: %1", + "errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Pentru copierea de rezervă locală utilizați opțiunea de Descărcare.", + "errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", + "errorFileRequest": "Eroare externă.
    Eroare la trimiterea solicitării de fișier. Contactați Serviciul de Asistență Clienți.", + "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră.", + "errorFileVKey": "Eroare externă.
    Cheia de securitate incorectă. Contactați Seviciul de Asistență Clienți.", + "errorFillRange": "Completarea celulelor selectate nu este posibilă.
    Configurați toate coloanele îmbinate la aceeași dimensiune.", + "errorFormulaName": "Eroare în formulă.
    Numele formulei incorect.", + "errorFormulaParsing": "Eroare internă de parsare cu formulă.", + "errorFrmlMaxLength": "Nu puteți adăuga aceată formulă deaorece lungimea conținutului formulei depășește limita maximă de caractere.
    Editați-o și încercați din nou.", + "errorFrmlMaxReference": "Nu puteți introduce acestă formula deoarece are prea multe valori,
    referințe de celulă, și/sau nume.", + "errorFrmlMaxTextLength": "Valorile de tip text în o formulă pot conține maxim 255 caractere.
    Utilizați funcția CONCATENATE sau operatorul de concentrare text (&).", + "errorFrmlWrongReferences": "Funcția se referă la o foaie inexistentă.
    Verificați datele și încercați din nou.", + "errorInvalidRef": "Introduceți numele din selecție corect sau o referință validă de accesat.", + "errorKeyEncrypt": "Descriptor cheie nerecunoscut", + "errorKeyExpire": "Descriptor cheie a expirat", + "errorLockedAll": "Operațiunea nu poate fi efectuată deoarece foaia a fost blocată de către un alt utilizator.", + "errorLockedCellPivot": "Nu puteți modifica datele manipulând tabel Pivot.", + "errorLockedWorksheetRename": "Deocamdată, nu puteți redenumi foaia deoarece foaia este redenumită de către un alt utilizator", + "errorMaxPoints": "Numărul maxim de puncte de date pe serie în diagramă este limitat la 4096.", + "errorMoveRange": "O parte din celulă îmbinată nu poate fi modificată ", + "errorMultiCellFormula": "Formule de matrice cu mai multe celule nu sunt permise în tabele.", + "errorOpenWarning": "Lungimea conținutului unei formule din foie a depășit
    limita maximă de caractere și a fost eliminată. ", + "errorOperandExpected": "Sintaxa funcției incorectă. Verificați încadrarea în paranteze - '(' sau ')'.", + "errorPasteMaxRange": "Zona de copiere nu corespunde zonei de lipire. Pentru lipirea celulelor copiate, selectați o zonă de aceeași demensiune sau faceți clic pe prima celula din rând.", + "errorPrintMaxPagesCount": "Din păcate, imprimarea a 1500 de pagini deodată nu este posibilă la versiunea curentă a aplicației
    Această restricție va fi eliminată într-o versiunea nouă.", + "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", + "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", + "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "errorUnexpectedGuid": "Eroare externă.
    GUID neașteptat. Contactați Seviciul de Asistență Clienți.", + "errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", + "errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", + "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", + "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
    dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", + "errorWrongBracketsCount": "Eroare în formulă.
    Numărul de paranteze incorect.", + "errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
    Corectați eroarea sau apăsați Esc pentru anularea editărilor formulei.", + "notcriticalErrorTitle": "Avertisment", + "openErrorText": "Eroare la deschiderea fișierului", + "pastInMergeAreaError": "O parte din celulă îmbinată nu poate fi modificată ", + "saveErrorText": "Eroare la salvarea fișierului", + "scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "unknownErrorText": "Eroare necunoscută.", + "uploadImageExtMessage": "Format de imagine nerecunoscut.", + "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Încărcarea datelor...", + "applyChangesTitleText": "Încărcare date", + "confirmMoveCellRange": "Celulele din zonă de destinație pot conține datele. Doriți să continuați?", + "confirmPutMergeRange": "Datele sursă conțin celule imbinate.
    Celulele for fi scindate înainte de lipire în tabel.", + "confirmReplaceFormulaInTable": "Formile din rând antet vor fi eliminate și transfomate în text static.
    Sigur doriți să continuați?", + "downloadTextText": "Descărcarea documentului...", + "downloadTitleText": "Descărcarea fișierului", + "loadFontsTextText": "Încărcarea datelor...", + "loadFontsTitleText": "Încărcare date", + "loadFontTextText": "Încărcarea datelor...", + "loadFontTitleText": "Încărcare date", + "loadImagesTextText": "Încărcarea imaginilor...", + "loadImagesTitleText": "Încărcare imagini", + "loadImageTextText": "Încărcarea imaginii...", + "loadImageTitleText": "Încărcare imagine", + "loadingDocumentTextText": "Încărcarea documentului...", + "loadingDocumentTitleText": "Încărcare document", + "notcriticalErrorTitle": "Avertisment", + "openTextText": "Deschiderea fișierului...", + "openTitleText": "Deschiderea fișierului ", + "printTextText": "Imprimarea documentului...", + "printTitleText": "Imprimarea documentului", + "savePreparingText": "Pregătire pentru salvare", + "savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", + "saveTextText": "Salvarea documentului...", + "saveTitleText": "Salvare document", + "textLoadingDocument": "Încărcare document", + "textNo": "Nu", + "textOk": "OK", + "textYes": "Da", + "txtEditingMode": "Setare modul de editare...", + "uploadImageTextText": "Încărcarea imaginii...", + "uploadImageTitleText": "Încărcarea imaginii", + "waitText": "Vă rugăm să așteptați..." + }, "Statusbar": { - "textErrNameWrongChar": "Numele foilor de calcul nu pot să conțină următoarele caractere: \\, /, *, ?, [, ], :" + "notcriticalErrorTitle": "Avertisment", + "textCancel": "Anulează", + "textDelete": "Ștergere", + "textDuplicate": "Dubluri", + "textErrNameExists": "O foaie de calcul cu același nume există deja.", + "textErrNameWrongChar": "Numele foilor de calcul nu pot să conțină următoarele caractere: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Nu lăsați numele foii necompletat", + "textErrorLastSheet": "În registrul de calcul trebuie să fie vizibilă cel puțin o foie de lucru. ", + "textErrorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", + "textHide": "Ascunde", + "textMore": "Mai multe", + "textRename": "Redenumire", + "textRenameSheet": "Redenumire foaie", + "textSheet": "Foaie", + "textSheetName": "Numele foii", + "textUnhide": "Reafișare", + "textWarnDeleteSheet": "Foaie de calcul poate conține datele. Sigur doriți să continuați?" + }, + "Toolbar": { + "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", + "leaveButtonText": "Părăsește această pagina", + "stayButtonText": "Rămâi în pagină" }, "View": { "Add": { + "errorMaxRows": "EROARE! Număr maxim serii de date în diagramă este 225.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "notcriticalErrorTitle": "Avertisment", + "sCatDateAndTime": "Dată și oră", + "sCatEngineering": "Inginerie", + "sCatFinancial": "Financiar", + "sCatInformation": "Informații", + "sCatLogical": "Logic", + "sCatLookupAndReference": "Căutare și referință", + "sCatMathematic": "Funcții matematice și trigonometrice", + "sCatStatistical": "Funcții statistice", + "sCatTextAndData": "Text și date", "textAddLink": "Adăugare link", - "textAddress": "Adresă" + "textAddress": "Adresă", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textChart": "Diagramă", + "textComment": "Comentariu", + "textDisplay": "Afișare", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textExternalLink": "Link extern", + "textFilter": "Filtrare", + "textFunction": "Funcție", + "textGroups": "CATEGORII", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInsert": "Inserare", + "textInsertImage": "Inserare imagine", + "textInternalDataRange": "Zonă de date internă", + "textInvalidRange": "EROARE! Zonă de celule nu este validă", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkType": "Tip link", + "textOther": "Altele", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textRange": "Zona", + "textRequired": "Obligatoriu", + "textScreenTip": "Sfaturi ecran", + "textShape": "Forma", + "textSheet": "Foaie", + "textSortAndFilter": "Sortare și filtrare", + "txtExpand": "Extindere și sortare", + "txtExpandSort": "Datele lângă selecție vor fi sortate. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "txtSorting": "Sortare", + "txtSortSelected": "Sortarea selecției" }, "Edit": { + "notcriticalErrorTitle": "Avertisment", "textAccounting": "Contabilitate", "textActualSize": "Dimensiunea reală", "textAddCustomColor": "Adăugarea unei culori particularizate", @@ -41,16 +349,287 @@ "textAlignRight": "Aliniere la dreapta", "textAlignTop": "Aliniere sus", "textAllBorders": "Toate borduri", + "textAngleClockwise": "Unghi de rotație în sens orar", + "textAngleCounterclockwise": "Unghi de rotație în sens antiorar", + "textAuto": "Auto", + "textAxisCrosses": "Intersecția cu axă", + "textAxisOptions": "Opțiuni axă", + "textAxisPosition": "Poziție axă", + "textAxisTitle": "Titlu axă", + "textBack": "Înapoi", + "textBetweenTickMarks": "Între gradații", + "textBillions": "Miliarde", + "textBorder": "Bordura", + "textBorderStyle": "Stil bordură", + "textBottom": "Jos", + "textBottomBorder": "Bordura de jos", + "textBringToForeground": "Aducere în prim plan", + "textCell": "Celula", + "textCellStyles": "Stil celula", + "textCenter": "La centru", + "textChart": "Diagramă", + "textChartTitle": "Titlu diagramă", + "textClearFilter": "Golire filtru", + "textColor": "Culoare", + "textCross": "Traversare", + "textCrossesValue": "Punct de traversare", + "textCurrency": "Monedă", + "textCustomColor": "Culoare particularizată", + "textDataLabels": "Etichetele de date", + "textDate": "Dată", + "textDefault": "Zona selectată", + "textDeleteFilter": "Eliminare filtru", + "textDesign": "Proiectare", + "textDiagonalDownBorder": "Bordură diagonală descendentă", + "textDiagonalUpBorder": "Bordură diagonală ascendentă", + "textDisplay": "Afișare", + "textDisplayUnits": "Unități de afișare", + "textDollar": "Dolar", + "textEditLink": "Editare link", + "textEffects": "Efecte", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", "textEmptyItem": "{Necompletat}", + "textErrorMsg": "Selectați cel puțin o valoare", + "textErrorTitle": "Avertisment", + "textEuro": "Euro", + "textExternalLink": "Link extern", + "textFill": "Umplere", + "textFillColor": "Culoare de umplere", + "textFilterOptions": "Opțiuni filtrare", + "textFit": "Potrivire lățime", + "textFonts": "Fonturi", + "textFormat": "Format", + "textFraction": "Fracție", + "textFromLibrary": "Imagine dintr-o bibliotecă ", + "textFromURL": "Imaginea prin URL", + "textGeneral": "General", + "textGridlines": "Linii de grilă", + "textHigh": "Ridicată", + "textHorizontal": "Orizontală", + "textHorizontalAxis": "Axă orizontală", + "textHorizontalText": "Text orizontal", "textHundredMil": "100 000 000", + "textHundreds": "Sute", "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textIn": "În", + "textInnerBottom": "În interior în jos", + "textInnerTop": "În interor în sus", + "textInsideBorders": "Borduri în interiorul ", + "textInsideHorizontalBorder": "Bordură orizontală în interiorul ", + "textInsideVerticalBorder": "Bordură verticală în interiorul ", + "textInteger": "Număr întreg", + "textInternalDataRange": "Zonă de date internă", + "textInvalidRange": "Zona de celule nu este validă", + "textJustified": "Aliniat stânga-dreapta", + "textLabelOptions": "Opțiuni etichetă", + "textLabelPosition": "Amplasare etichetă", + "textLayout": "Aspect", + "textLeft": "Stânga", + "textLeftBorder": "Bordură din stânga", + "textLeftOverlay": "Suprapunere din stânga", + "textLegend": "Legenda", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkType": "Tip link", + "textLow": "Scăzută", + "textMajor": "Major", + "textMajorAndMinor": "Major și minor", + "textMajorType": "Tip major", + "textMaximumValue": "Limita maximă", + "textMedium": "Mediu", + "textMillions": "Milioane", + "textMinimumValue": "Limita minimă", + "textMinor": "Minor", + "textMinorType": "Tip minor", + "textMoveBackward": "Mutare în ultimul plan", + "textMoveForward": "Mutare înainte", + "textNextToAxis": "Lângă axă", + "textNoBorder": "Fără bordură", + "textNone": "Niciunul", + "textNoOverlay": "Fără suprapunere", + "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNumber": "Număr", + "textOnTickMarks": "Pe gradații", + "textOpacity": "Transparență", + "textOut": "Din", + "textOuterTop": "În exterior în sus", + "textOutsideBorders": "Borduri în exteriorul", + "textOverlay": "Suprapunere", + "textPercentage": "Procentaj", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Zona", + "textRemoveChart": "Ștergere diagrama", + "textRemoveImage": "Ștergere imagine", + "textRemoveLink": "Ștergere link", + "textRemoveShape": "Stergere forma", + "textReorder": "Reordonare", + "textReplace": "Înlocuire", + "textReplaceImage": "Înlocuire imagine", + "textRequired": "Obligatoriu", + "textRight": "Dreapta", "textRightBorder": "Bordură din dreapta", + "textRightOverlay": "Suprapunerea din dreapta", + "textRotated": "Rotit", + "textRotateTextDown": "Rotirea textului în jos", + "textRotateTextUp": "Rotirea textului în sus", + "textRouble": "Rublă", + "textScientific": "Științific ", + "textScreenTip": "Sfaturi ecran", + "textSelectAll": "Selectare totală", + "textSelectObjectToEdit": "Selectați obiectul pentru editare", + "textSendToBackground": "Trimitere în plan secundar", + "textSettings": "Setări", + "textShape": "Forma", + "textSheet": "Foaie", + "textSize": "Dimensiune", + "textStyle": "Stil", "textTenMillions": "10 000 000", - "textTenThousands": "10 000" + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Culoare text", + "textTextFormat": "Format text", + "textTextOrientation": "Orientarea textului", + "textThick": "Groasă", + "textThin": "Subțire", + "textThousands": "Mii", + "textTickOptions": "Opțiuni gradație", + "textTime": "Oră", + "textTop": "Sus", + "textTopBorder": "Bordură de sus", + "textTrillions": "Trilioane", + "textType": "Tip", + "textValue": "Valoare", + "textValuesInReverseOrder": "Valori în ordine inversă ", + "textVertical": "Verticală", + "textVerticalAxis": "Axa verticală", + "textVerticalText": "Text vertical", + "textWrapText": "Incadrarea textului", + "textYen": "Yen", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "txtSortHigh2Low": "Sortare de la cea mai mare la cea mai mică valoare", + "txtSortLow2High": "Sortare de la cea mai mică la cea mai mare valoare" }, "Settings": { + "advCSVOptions": "Alegerea opțiunilor CSV", + "advDRMEnterPassword": "Va rugam sa introduceti parola:", + "advDRMOptions": "Fișierul protejat", + "advDRMPassword": "Parola", + "closeButtonText": "Închide fișierul", + "notcriticalErrorTitle": "Avertisment", "textAbout": "Despre", - "textAddress": "Adresă" + "textAddress": "Adresă", + "textApplication": "Aplicația", + "textApplicationSettings": "Setări Aplicație", + "textAuthor": "Autor", + "textBack": "Înapoi", + "textBottom": "Jos", + "textByColumns": "După coloană", + "textByRows": "După rând", + "textCancel": "Anulează", + "textCentimeter": "Centimetru", + "textCollaboration": "Colaborare", + "textColorSchemes": "Scheme de culori", + "textComment": "Comentariu", + "textCommentingDisplay": "Afișare comentarii", + "textComments": "Comentarii", + "textCreated": "A fost creat la", + "textCustomSize": "Dimensiunea particularizată", + "textDisableAll": "Se dezactivează toate", + "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", + "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", + "textDone": "Gata", + "textDownload": "Descărcare", + "textDownloadAs": "Descărcare ca", + "textEmail": "Email", + "textEnableAll": "Se activează toate", + "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFindAndReplaceAll": "Găsire și înlocuire totală", + "textFormat": "Format", + "textFormulaLanguage": "Limba formulă", + "textFormulas": "Formule", + "textHelp": "Ajutor", + "textHideGridlines": "Ascundere linii de grilă", + "textHideHeadings": "Ascundere titluri", + "textHighlightRes": "Evidențierea rezultatelor", + "textInch": "Inch", + "textLandscape": "Vedere", + "textLastModified": "Data ultimei modificări", + "textLastModifiedBy": "Modificat ultima dată de către", + "textLeft": "Stânga", + "textLocation": "Locația", + "textLookIn": "Domenii de căutare", + "textMacrosSettings": "Setări macrocomandă", + "textMargins": "Margini", + "textMatchCase": "Potrivire litere mari și mici", + "textMatchCell": "Potrivire celulă", + "textNoTextFound": "Textul nu a fost găsit", + "textOpenFile": "Introduceți parola pentru deschidere fișier", + "textOrientation": "Orientare", + "textOwner": "Proprietar", + "textPoint": "Punct", + "textPortrait": "Portret", + "textPoweredBy": "Dezvoltat de", + "textPrint": "Imprimare", + "textR1C1Style": "Stilul de referință R1C1", + "textRegionalSettings": "Setări regionale", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textResolvedComments": "Comentarii rezolvate", + "textRight": "Dreapta", + "textSearch": "Căutare", + "textSearchBy": "Căutare", + "textSearchIn": "Caută în", + "textSettings": "Setări", + "textSheet": "Foaie", + "textShowNotification": "Afișare notificări", + "textSpreadsheetFormats": "Formate foii de calcul", + "textSpreadsheetInfo": "Informații despre foaie de calcul", + "textSpreadsheetSettings": "Setări foaie de calcul", + "textSpreadsheetTitle": "Titlu foaie de calcul", + "textSubject": "Subiect", + "textTel": "Tel", + "textTitle": "Titlu", + "textTop": "Sus", + "textUnitOfMeasurement": "Unitate de măsură ", + "textUploaded": "S-a încărcat", + "textValues": "Valori", + "textVersion": "Versiune", + "textWorkbook": "Registru de calcul", + "txtDelimiter": "Delimitator", + "txtEncoding": "Codificare", + "txtIncorrectPwd": "Parolă incorectă", + "txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metrou", + "txtScheme12": "Modul", + "txtScheme13": "Opulent", + "txtScheme14": "Foișor", + "txtScheme15": "Origine", + "txtScheme16": "Hârtie", + "txtScheme17": "Solstițiu", + "txtScheme18": "Tehnic", + "txtScheme19": "Turist", + "txtScheme2": "Tonuri de gri", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concurență", + "txtScheme7": "Echilibru", + "txtScheme8": "Flux", + "txtScheme9": "Forjă", + "txtSpace": "Spațiu", + "txtTab": "Fila", + "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
    Sunteți sigur că doriți să continuați?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 168af564d9..1bc30bbd9e 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -73,8 +73,35 @@ "notcriticalErrorTitle": "Внимание", "SDK": { "txtAccent": "Акцент", + "txtAll": "(Все)", "txtArt": "Введите ваш текст", + "txtBlank": "(пусто)", + "txtByField": "%1 из %2", + "txtClearFilter": "Очистить фильтр (Alt+C)", + "txtColLbls": "Названия столбцов", + "txtColumn": "Столбец", + "txtConfidential": "Конфиденциально", + "txtDate": "Дата", + "txtDays": "Дни", "txtDiagramTitle": "Заголовок диаграммы", + "txtFile": "Файл", + "txtGrandTotal": "Общий итог", + "txtGroup": "Сгруппировать", + "txtHours": "Часы", + "txtMinutes": "Минуты", + "txtMonths": "Месяцы", + "txtMultiSelect": "Множественный выбор (Alt+S)", + "txtOr": "%1 или %2", + "txtPage": "Страница", + "txtPageOf": "Страница %1 из %2", + "txtPages": "Страницы", + "txtPreparedBy": "Подготовил:", + "txtPrintArea": "Область_печати", + "txtQuarter": "Кв-л", + "txtQuarters": "Кварталы", + "txtRow": "Строка", + "txtRowLbls": "Названия строк", + "txtSeconds": "Секунды", "txtSeries": "Ряд", "txtStyle_Bad": "Плохой", "txtStyle_Calculation": "Пересчет", @@ -97,8 +124,13 @@ "txtStyle_Title": "Название", "txtStyle_Total": "Итог", "txtStyle_Warning_Text": "Текст предупреждения", + "txtTab": "Табуляция", + "txtTable": "Таблица", + "txtTime": "Время", + "txtValues": "Значения", "txtXAxis": "Ось X", - "txtYAxis": "Ось Y" + "txtYAxis": "Ось Y", + "txtYears": "Годы" }, "textAnonymous": "Анонимный пользователь", "textBuyNow": "Перейти на сайт", @@ -270,6 +302,7 @@ "textAddLink": "Добавить ссылку", "textAddress": "Адрес", "textBack": "Назад", + "textCancel": "Отмена", "textChart": "Диаграмма", "textComment": "Комментарий", "textDisplay": "Отображать", @@ -296,7 +329,11 @@ "textShape": "Фигура", "textSheet": "Лист", "textSortAndFilter": "Сортировка и фильтрация", - "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"" + "txtExpand": "Расширить и сортировать", + "txtExpandSort": "Данные рядом с выделенным диапазоном не будут отсортированы. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить сортировку только выделенного диапазона?", + "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "txtSorting": "Сортировка", + "txtSortSelected": "Сортировать выделенное" }, "Edit": { "notcriticalErrorTitle": "Внимание", @@ -474,7 +511,9 @@ "textVerticalText": "Вертикальный текст", "textWrapText": "Перенос текста", "textYen": "Йена", - "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"" + "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "txtSortHigh2Low": "Сортировка по убыванию", + "txtSortLow2High": "Сортировка по возрастанию" }, "Settings": { "advCSVOptions": "Выбрать параметры CSV", @@ -568,6 +607,26 @@ "txtEncoding": "Кодировка", "txtIncorrectPwd": "Неверный пароль", "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен", + "txtScheme1": "Стандартная", + "txtScheme10": "Обычная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Изящная", + "txtScheme14": "Эркер", + "txtScheme15": "Начальная", + "txtScheme16": "Бумажная", + "txtScheme17": "Солнцестояние", + "txtScheme18": "Техническая", + "txtScheme19": "Трек", + "txtScheme2": "Оттенки серого", + "txtScheme22": "Новая офисная", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Официальная", + "txtScheme6": "Открытая", + "txtScheme7": "Справедливость", + "txtScheme8": "Поток", + "txtScheme9": "Литейная", "txtSpace": "Пробел", "txtTab": "Табуляция", "warnDownloadAs": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
    Вы действительно хотите продолжить?" diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 6c3c1a04bf..fe133e34e6 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -483,6 +483,7 @@ "advDRMPassword": "密码", "closeButtonText": "关闭文件", "notcriticalErrorTitle": "警告", + "textAbout": "关于", "textAddress": "地址", "textApplication": "应用", "textApplicationSettings": "应用设置", From ae7767de668b9597f9d17aad26146d5f12bbcae8 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 27 Jul 2021 16:58:54 +0300 Subject: [PATCH 17/21] [mobile] Fix bug 51532 --- apps/documenteditor/mobile/src/page/main.jsx | 61 +++++++++++------- .../mobile/src/page/main.jsx | 62 ++++++++++++------- .../mobile/src/page/main.jsx | 55 ++++++++++------ 3 files changed, 114 insertions(+), 64 deletions(-) diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index a502fca1a8..371c3fa275 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -28,35 +28,49 @@ class MainPage extends Component { handleClickToOpenOptions = (opts, showOpts) => { ContextMenu.closeContextMenu(); - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: true}; - else if ( opts == 'add' ) - return { - addOptionsVisible: true, - addShowOptions: showOpts - }; - else if ( opts == 'settings' ) - return {settingsVisible: true}; - else if ( opts == 'coauth' ) - return { - collaborationVisible: true, - collaborationPage: showOpts - }; - }); + setTimeout(() => { + let opened = false; + const newState = {}; + if ( opts === 'edit' ) { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if ( opts === 'add' ) { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if ( opts === 'settings' ) { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if ( opts === 'coauth' ) { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } + for (let key in this.state) { + if (this.state[key] && !opened) { + setTimeout(() => { + this.handleClickToOpenOptions(opts, showOpts); + }, 10); + return; + } + } + + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); + } + } + }, 10); }; handleOptionsViewClosed = opts => { - (async () => { - await 1 && this.setState(state => { + setTimeout(() => { + this.setState(state => { if ( opts == 'edit' ) return {editOptionsVisible: false}; else if ( opts == 'add' ) - return {addOptionsVisible: false}; + return {addOptionsVisible: false, addShowOptions: null}; else if ( opts == 'settings' ) return {settingsVisible: false}; else if ( opts == 'coauth' ) @@ -65,7 +79,8 @@ class MainPage extends Component { if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); } - })(); + }, 1); + }; render() { diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index 2727a2b4c7..690cb6f4d0 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -30,34 +30,52 @@ class MainPage extends Component { handleClickToOpenOptions = (opts, showOpts) => { ContextMenu.closeContextMenu(); - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: true}; - else if ( opts == 'add' ) - return { - addOptionsVisible: true, - addShowOptions: showOpts - }; - else if ( opts == 'settings' ) - return {settingsVisible: true}; - else if ( opts == 'coauth' ) - return {collaborationVisible: true}; - else if ( opts == 'preview' ) - return {previewVisible: true}; - }); + setTimeout(() => { + let opened = false; + const newState = {}; + if ( opts === 'edit' ) { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if ( opts === 'add' ) { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if ( opts === 'settings' ) { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if ( opts === 'coauth' ) { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } else if ( opts === 'preview' ) { + this.state.previewVisible && (opened = true); + newState.previewVisible = true; + } - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } + for (let key in this.state) { + if (this.state[key] && !opened) { + setTimeout(() => { + this.handleClickToOpenOptions(opts, showOpts); + }, 10); + return; + } + } + + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); + } + } + }, 10); }; handleOptionsViewClosed = opts => { - (async () => { - await 1 && this.setState(state => { + setTimeout(() => { + this.setState(state => { if ( opts == 'edit' ) return {editOptionsVisible: false}; else if ( opts == 'add' ) - return {addOptionsVisible: false}; + return {addOptionsVisible: false, addShowOptions: null}; else if ( opts == 'settings' ) return {settingsVisible: false}; else if ( opts == 'coauth' ) @@ -68,7 +86,7 @@ class MainPage extends Component { if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); } - })(); + }); }; render() { diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index 9c316b562d..ad19718e7c 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -32,28 +32,45 @@ class MainPage extends Component { handleClickToOpenOptions = (opts, showOpts) => { f7.popover.close('.document-menu.modal-in', false); - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: true}; - else if ( opts == 'add' ) - return { - addOptionsVisible: true, - addShowOptions: showOpts - }; - else if ( opts == 'settings' ) - return {settingsVisible: true}; - else if ( opts == 'coauth' ) - return {collaborationVisible: true}; - }); + setTimeout(() => { + let opened = false; + const newState = {}; + if ( opts === 'edit' ) { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if ( opts === 'add' ) { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if ( opts === 'settings' ) { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if ( opts === 'coauth' ) { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } + for (let key in this.state) { + if (this.state[key] && !opened) { + setTimeout(() => { + this.handleClickToOpenOptions(opts, showOpts); + }, 10); + return; + } + } + + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); + } + } + }, 10); }; handleOptionsViewClosed = opts => { - (async () => { - await 1 && this.setState(state => { + setTimeout(() => { + this.setState(state => { if ( opts == 'edit' ) return {editOptionsVisible: false}; else if ( opts == 'add' ) @@ -66,7 +83,7 @@ class MainPage extends Component { if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); } - })(); + }, 1); }; render() { From c8e30ead121d91e12322a08ebe1efc0caaf192a7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 27 Jul 2021 18:20:52 +0300 Subject: [PATCH 18/21] Fix Bug 51343 --- apps/documenteditor/embed/index.html | 3 +-- apps/documenteditor/embed/index.html.deploy | 3 +-- apps/documenteditor/embed/index_loader.html | 3 +-- apps/documenteditor/embed/index_loader.html.deploy | 3 +-- apps/documenteditor/main/index.html | 3 +-- apps/documenteditor/main/index.html.deploy | 3 +-- apps/documenteditor/main/index_loader.html | 3 +-- apps/documenteditor/main/index_loader.html.deploy | 3 +-- apps/presentationeditor/embed/index.html | 3 +-- apps/presentationeditor/embed/index.html.deploy | 3 +-- apps/presentationeditor/embed/index_loader.html | 3 +-- apps/presentationeditor/embed/index_loader.html.deploy | 3 +-- apps/presentationeditor/main/index.html | 3 +-- apps/presentationeditor/main/index.html.deploy | 3 +-- apps/presentationeditor/main/index_loader.html | 3 +-- apps/presentationeditor/main/index_loader.html.deploy | 3 +-- apps/spreadsheeteditor/embed/index.html | 3 +-- apps/spreadsheeteditor/embed/index.html.deploy | 3 +-- apps/spreadsheeteditor/embed/index_loader.html | 3 +-- apps/spreadsheeteditor/embed/index_loader.html.deploy | 3 +-- apps/spreadsheeteditor/main/index.html | 3 +-- apps/spreadsheeteditor/main/index.html.deploy | 3 +-- apps/spreadsheeteditor/main/index_loader.html | 3 +-- apps/spreadsheeteditor/main/index_loader.html.deploy | 3 +-- 24 files changed, 24 insertions(+), 48 deletions(-) diff --git a/apps/documenteditor/embed/index.html b/apps/documenteditor/embed/index.html index ab20ccc1f2..78f2bd0c64 100644 --- a/apps/documenteditor/embed/index.html +++ b/apps/documenteditor/embed/index.html @@ -155,8 +155,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/embed/index.html.deploy b/apps/documenteditor/embed/index.html.deploy index c6c09db65d..75f228d984 100644 --- a/apps/documenteditor/embed/index.html.deploy +++ b/apps/documenteditor/embed/index.html.deploy @@ -148,8 +148,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/embed/index_loader.html b/apps/documenteditor/embed/index_loader.html index 938ddb42f0..0d25bab6b1 100644 --- a/apps/documenteditor/embed/index_loader.html +++ b/apps/documenteditor/embed/index_loader.html @@ -225,8 +225,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/embed/index_loader.html.deploy b/apps/documenteditor/embed/index_loader.html.deploy index 29f7ab10ce..ec68112af3 100644 --- a/apps/documenteditor/embed/index_loader.html.deploy +++ b/apps/documenteditor/embed/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index 71bc2810b0..830da09be6 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -225,8 +225,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy index 6387529ff2..b8e2aababe 100644 --- a/apps/documenteditor/main/index.html.deploy +++ b/apps/documenteditor/main/index.html.deploy @@ -197,8 +197,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html index f1fe2ae1bf..ec8d053405 100644 --- a/apps/documenteditor/main/index_loader.html +++ b/apps/documenteditor/main/index_loader.html @@ -199,8 +199,7 @@ return urlParams; } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/documenteditor/main/index_loader.html.deploy b/apps/documenteditor/main/index_loader.html.deploy index 13d327a223..98047eef30 100644 --- a/apps/documenteditor/main/index_loader.html.deploy +++ b/apps/documenteditor/main/index_loader.html.deploy @@ -218,8 +218,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index.html b/apps/presentationeditor/embed/index.html index 991f9b6274..9442d0f3e4 100644 --- a/apps/presentationeditor/embed/index.html +++ b/apps/presentationeditor/embed/index.html @@ -206,8 +206,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index.html.deploy b/apps/presentationeditor/embed/index.html.deploy index a3a0347ab1..ea2f15713a 100644 --- a/apps/presentationeditor/embed/index.html.deploy +++ b/apps/presentationeditor/embed/index.html.deploy @@ -200,8 +200,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index_loader.html b/apps/presentationeditor/embed/index_loader.html index e90de1d353..5b3142e623 100644 --- a/apps/presentationeditor/embed/index_loader.html +++ b/apps/presentationeditor/embed/index_loader.html @@ -224,8 +224,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index_loader.html.deploy b/apps/presentationeditor/embed/index_loader.html.deploy index ee5f914c6d..f69ed41d98 100644 --- a/apps/presentationeditor/embed/index_loader.html.deploy +++ b/apps/presentationeditor/embed/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index cd541ff812..a2f0768cc3 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -247,8 +247,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/main/index.html.deploy b/apps/presentationeditor/main/index.html.deploy index becd100477..03ea9135fd 100644 --- a/apps/presentationeditor/main/index.html.deploy +++ b/apps/presentationeditor/main/index.html.deploy @@ -239,8 +239,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/main/index_loader.html b/apps/presentationeditor/main/index_loader.html index 2903b7bf74..96110678b3 100644 --- a/apps/presentationeditor/main/index_loader.html +++ b/apps/presentationeditor/main/index_loader.html @@ -190,8 +190,7 @@ return urlParams; } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/main/index_loader.html.deploy b/apps/presentationeditor/main/index_loader.html.deploy index 2ded00a17e..abec1311c1 100644 --- a/apps/presentationeditor/main/index_loader.html.deploy +++ b/apps/presentationeditor/main/index_loader.html.deploy @@ -218,8 +218,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index.html b/apps/spreadsheeteditor/embed/index.html index c21511fc46..dcee9f69e5 100644 --- a/apps/spreadsheeteditor/embed/index.html +++ b/apps/spreadsheeteditor/embed/index.html @@ -181,8 +181,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index.html.deploy b/apps/spreadsheeteditor/embed/index.html.deploy index 50678b73f0..3406f76573 100644 --- a/apps/spreadsheeteditor/embed/index.html.deploy +++ b/apps/spreadsheeteditor/embed/index.html.deploy @@ -173,8 +173,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index_loader.html b/apps/spreadsheeteditor/embed/index_loader.html index dffe443058..7e37cb96cd 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html +++ b/apps/spreadsheeteditor/embed/index_loader.html @@ -225,8 +225,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index_loader.html.deploy b/apps/spreadsheeteditor/embed/index_loader.html.deploy index 0971259833..3459e52ad5 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html.deploy +++ b/apps/spreadsheeteditor/embed/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/main/index.html b/apps/spreadsheeteditor/main/index.html index 3fc0f9f9fd..37adc535f6 100644 --- a/apps/spreadsheeteditor/main/index.html +++ b/apps/spreadsheeteditor/main/index.html @@ -254,8 +254,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/main/index.html.deploy b/apps/spreadsheeteditor/main/index.html.deploy index bf67081987..0cd52cb5eb 100644 --- a/apps/spreadsheeteditor/main/index.html.deploy +++ b/apps/spreadsheeteditor/main/index.html.deploy @@ -239,8 +239,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/main/index_loader.html b/apps/spreadsheeteditor/main/index_loader.html index 8c64256616..921ad7e461 100644 --- a/apps/spreadsheeteditor/main/index_loader.html +++ b/apps/spreadsheeteditor/main/index_loader.html @@ -189,8 +189,7 @@ return urlParams; } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/main/index_loader.html.deploy b/apps/spreadsheeteditor/main/index_loader.html.deploy index 884f65146c..a37a6dd03f 100644 --- a/apps/spreadsheeteditor/main/index_loader.html.deploy +++ b/apps/spreadsheeteditor/main/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); From e07407c57ed006d8aa004f225b3b5f6b66e09aae Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 27 Jul 2021 18:37:37 +0300 Subject: [PATCH 19/21] [Embedded] Show force save errors --- apps/documenteditor/embed/js/ApplicationController.js | 8 +++++++- apps/documenteditor/embed/locale/en.json | 1 + apps/presentationeditor/embed/js/ApplicationController.js | 8 +++++++- apps/presentationeditor/embed/locale/en.json | 1 + apps/spreadsheeteditor/embed/js/ApplicationController.js | 8 +++++++- apps/spreadsheeteditor/embed/locale/en.json | 1 + 6 files changed, 24 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index ddc3b73634..5a306ed6a8 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -625,6 +625,11 @@ DE.ApplicationController = new(function(){ message = me.errorEditingDownloadas; break; + case Asc.c_oAscError.ID.ForceSaveButton: + case Asc.c_oAscError.ID.ForceSaveTimeout: + message = me.errorForceSave; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -806,6 +811,7 @@ DE.ApplicationController = new(function(){ textGuest: 'Guest', textAnonymous: 'Anonymous', textRequired: 'Fill all required fields to send form.', - textGotIt: 'Got it' + textGotIt: 'Got it', + errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later." } })(); \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index d1d9306a26..de0c0c2915 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -17,6 +17,7 @@ "DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", + "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "DE.ApplicationController.notcriticalErrorTitle": "Warning", "DE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "DE.ApplicationController.textAnonymous": "Anonymous", diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 78df5f6a25..421898910f 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -568,6 +568,11 @@ PE.ApplicationController = new(function(){ message = me.errorAccessDeny; break; + case Asc.c_oAscError.ID.ForceSaveButton: + case Asc.c_oAscError.ID.ForceSaveTimeout: + message = me.errorForceSave; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -712,6 +717,7 @@ PE.ApplicationController = new(function(){ errorFileSizeExceed: 'The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.', errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', textGuest: 'Guest', - textAnonymous: 'Anonymous' + textAnonymous: 'Anonymous', + errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later." } })(); diff --git a/apps/presentationeditor/embed/locale/en.json b/apps/presentationeditor/embed/locale/en.json index f2de99d905..84ffc91f6c 100644 --- a/apps/presentationeditor/embed/locale/en.json +++ b/apps/presentationeditor/embed/locale/en.json @@ -15,6 +15,7 @@ "PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", + "PE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "PE.ApplicationController.notcriticalErrorTitle": "Warning", "PE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "PE.ApplicationController.textAnonymous": "Anonymous", diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index c2dd584dae..c2f7cec9a9 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -481,6 +481,11 @@ SSE.ApplicationController = new(function(){ message = me.errorAccessDeny; break; + case Asc.c_oAscError.ID.ForceSaveButton: + case Asc.c_oAscError.ID.ForceSaveTimeout: + message = me.errorForceSave; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -663,6 +668,7 @@ SSE.ApplicationController = new(function(){ errorFileSizeExceed: 'The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.', errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', textGuest: 'Guest', - textAnonymous: 'Anonymous' + textAnonymous: 'Anonymous', + errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later." } })(); \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/en.json b/apps/spreadsheeteditor/embed/locale/en.json index 4485edab09..0fb957b692 100644 --- a/apps/spreadsheeteditor/embed/locale/en.json +++ b/apps/spreadsheeteditor/embed/locale/en.json @@ -15,6 +15,7 @@ "SSE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "SSE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", + "SSE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "SSE.ApplicationController.notcriticalErrorTitle": "Warning", "SSE.ApplicationController.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", "SSE.ApplicationController.textAnonymous": "Anonymous", From 4f566b1be670fe35a70d1c59c8fd68425cb10c1b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 27 Jul 2021 22:10:00 +0300 Subject: [PATCH 20/21] Fix style for restore link --- apps/common/main/resources/less/history.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/common/main/resources/less/history.less b/apps/common/main/resources/less/history.less index ea04bb5574..4c44e95b30 100644 --- a/apps/common/main/resources/less/history.less +++ b/apps/common/main/resources/less/history.less @@ -157,10 +157,10 @@ } .revision-restore { - color: @text-normal-ie; - color: @text-normal; - border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie; - border-bottom: @scaled-one-px-value dotted @text-normal; + color: @text-normal-pressed-ie; + color: @text-normal-pressed; + border-bottom: @scaled-one-px-value-ie dotted @text-normal-pressed-ie; + border-bottom: @scaled-one-px-value dotted @text-normal-pressed; height: 16px; margin-top: 5px; white-space: pre-wrap; From 9a5b2487edd3bddf6582a1282683abedaab61a11 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 27 Jul 2021 22:13:26 +0300 Subject: [PATCH 21/21] [DE][PE] Fix version restore --- apps/common/main/lib/controller/History.js | 3 ++- apps/common/main/lib/model/HistoryVersion.js | 3 ++- apps/documenteditor/main/app/controller/Main.js | 6 ++++-- apps/presentationeditor/main/app/controller/Main.js | 6 ++++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/controller/History.js b/apps/common/main/lib/controller/History.js index b3714940d2..97efc03dc9 100644 --- a/apps/common/main/lib/controller/History.js +++ b/apps/common/main/lib/controller/History.js @@ -114,7 +114,8 @@ define([ Common.Gateway.requestRestore(record.get('revision')); else { this.isFromSelectRevision = record.get('revision'); - this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.DOCX, true)); + var fileType = Asc.c_oAscFileType[(record.get('fileType') || '').toUpperCase()] || Asc.c_oAscFileType.DOCX; + this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(fileType, true)); } return; } diff --git a/apps/common/main/lib/model/HistoryVersion.js b/apps/common/main/lib/model/HistoryVersion.js index 5c4341806d..169ee5a2f4 100644 --- a/apps/common/main/lib/model/HistoryVersion.js +++ b/apps/common/main/lib/model/HistoryVersion.js @@ -74,7 +74,8 @@ define([ isVisible: true, allowSelected: true, selected: false, - serverVersion: 0 + serverVersion: 0, + fileType: 'docx' } } }); diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index ee3f7c6adf..8c34fb009f 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -622,7 +622,8 @@ define([ selected: (opts.data.currentVersion == version.version), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), isExpanded: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'docx' })); if (opts.data.currentVersion == version.version) { currentVersion = arrVersions[arrVersions.length-1]; @@ -672,7 +673,8 @@ define([ canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, isRevision: false, isVisible: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'docx' })); arrColors.push(user.get('colorval')); } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 278e59cb16..cd911a81c7 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -2267,7 +2267,8 @@ define([ selected: (opts.data.currentVersion == version.version), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), isExpanded: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'pptx' })); if (opts.data.currentVersion == version.version) { currentVersion = arrVersions[arrVersions.length-1]; @@ -2317,7 +2318,8 @@ define([ canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, isRevision: false, isVisible: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'pptx' })); arrColors.push(user.get('colorval')); }