From f91bc6e50e96cd0a7e78bfc65b73e394656c6e1f Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 6 Dec 2022 20:24:15 +0300 Subject: [PATCH 01/54] [desktop] for bug 60025 --- apps/common/main/lib/controller/Desktop.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 3e1275143..dff7ab1ac 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -281,6 +281,8 @@ define([ })).on('closeclick', function () { this.close(); }).show(); + + native.execCommand('webapps:features', JSON.stringify(features)); } } }); From 9e608f168de124799179b3783deb920d5a99d4e3 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 6 Dec 2022 21:43:43 +0300 Subject: [PATCH 02/54] [desktop] for bug 60014 --- apps/common/main/lib/controller/Desktop.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index dff7ab1ac..e8cedc783 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -283,6 +283,15 @@ define([ }).show(); native.execCommand('webapps:features', JSON.stringify(features)); + + api.asc_registerCallback('asc_onDocumentName', function () { + if ( features.readonly ) { + if ( api.asc_getLocalRestrictions() == Asc.c_oAscLocalRestrictionType.None ) { + features.readonly = false; + native.execCommand('webapps:features', JSON.stringify(features)); + } + } + }); } } }); From 3208a4bdf2f4399beb2e7d7f489774bb6748032b Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Wed, 7 Dec 2022 16:48:55 +0300 Subject: [PATCH 03/54] [desktop] hide panel before "print" command --- apps/documenteditor/main/app/controller/Print.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/Print.js b/apps/documenteditor/main/app/controller/Print.js index 556b303f8..668c570af 100644 --- a/apps/documenteditor/main/app/controller/Print.js +++ b/apps/documenteditor/main/app/controller/Print.js @@ -525,6 +525,7 @@ define([ paperOrientation: size ? (size['H'] > size['W'] ? 'portrait' : 'landscape') : null }); + this.printSettings.menu.hide(); if ( print ) { var opts = new Asc.asc_CDownloadOptions(null, Common.Utils.isChrome || Common.Utils.isOpera || Common.Utils.isGecko && Common.Utils.firefoxVersion>86); opts.asc_setAdvancedOptions(this.adjPrintParams); @@ -534,7 +535,6 @@ define([ opts.asc_setAdvancedOptions(this.adjPrintParams); this.api.asc_DownloadAs(opts); } - this.printSettings.menu.hide(); }, inputPagesChanging: function (input, value) { From 7b03f08adc78864cf3966ae91f3a6e3788676f32 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Wed, 7 Dec 2022 16:54:48 +0300 Subject: [PATCH 04/54] [desktop] for bug 60014 --- apps/common/main/lib/controller/Desktop.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index e8cedc783..b3803aefb 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -288,6 +288,7 @@ define([ if ( features.readonly ) { if ( api.asc_getLocalRestrictions() == Asc.c_oAscLocalRestrictionType.None ) { features.readonly = false; + header.setDocumentReadOnly(false); native.execCommand('webapps:features', JSON.stringify(features)); } } From d9ef7a349fc327bfebfd172b61685b1e8f732f79 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 8 Dec 2022 16:40:09 +0300 Subject: [PATCH 05/54] [PE] Change duration combobox in animation tab (show only seconds) --- apps/common/main/lib/component/ComboBox.js | 4 ++-- apps/presentationeditor/main/app/view/Animation.js | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/component/ComboBox.js b/apps/common/main/lib/component/ComboBox.js index 1eb060eb2..3164abd68 100644 --- a/apps/common/main/lib/component/ComboBox.js +++ b/apps/common/main/lib/component/ComboBox.js @@ -710,8 +710,8 @@ define([ this.options.updateFormControl.call(this, this._selectedItem); }, - setValue: function(value) { - Common.UI.ComboBox.prototype.setValue.call(this, value); + setValue: function(value, defValue) { + Common.UI.ComboBox.prototype.setValue.call(this, value, defValue); if (this.options.updateFormControl) this.options.updateFormControl.call(this, this._selectedItem); }, diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 4358439fb..6d1f4d87d 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -187,6 +187,7 @@ define([ this.toolbar = options.toolbar; this.appConfig = options.mode; this.$el = this.toolbar.toolbar.$el.find('#animation-panel'); + var me = this; var _set = Common.enumLock; this.lockedControls = []; this._arrEffectName = [{group:'none', value: AscFormat.ANIM_PRESET_NONE, iconCls: 'animation-none', displayValue: this.textNone}].concat(Common.define.effectData.getEffectData()); @@ -293,7 +294,7 @@ define([ this.lockedControls.push(this.btnAddAnimation); - this.cmbDuration = new Common.UI.ComboBox({ + this.cmbDuration = new Common.UI.ComboBoxCustom({ el: this.$el.find('#animation-spin-duration'), cls: 'input-group-nr', menuStyle: 'min-width: 100%;', @@ -309,7 +310,10 @@ define([ lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration, _set.timingLock], dataHint: '1', dataHintDirection: 'top', - dataHintOffset: 'small' + dataHintOffset: 'small', + updateFormControl: function(record) { + record && this.setRawValue(record.get('value') + ' ' + me.txtSec); + } }); this.lockedControls.push(this.cmbDuration); From d2b89c0737eb26b6f828d8c75f16c1d586a1e810 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 8 Dec 2022 16:48:43 +0300 Subject: [PATCH 06/54] [DE] Show warning when document has been protected by another user --- .../main/app/controller/DocProtection.js | 25 ++++++++++++++++++- .../main/app/view/DocProtection.js | 7 +++++- apps/documenteditor/main/locale/en.json | 5 ++++ 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/DocProtection.js b/apps/documenteditor/main/app/controller/DocProtection.js index d277d95cb..ab8488fc0 100644 --- a/apps/documenteditor/main/app/controller/DocProtection.js +++ b/apps/documenteditor/main/app/controller/DocProtection.js @@ -86,6 +86,7 @@ define([ this.setApi(api); }, setApi: function (api) { + this.userCollection = this.getApplication().getCollection('Common.Collections.Users'); if (api) { this.api = api; this.api.asc_registerCallback('asc_onChangeDocumentProtection',_.bind(this.onChangeProtectDocument, this)); @@ -95,6 +96,7 @@ define([ setMode: function(mode) { this.appConfig = mode; + this.currentUserId = mode.user.id; this.appConfig.isEdit && (this.view = this.createView('DocProtection', { mode: mode @@ -183,7 +185,7 @@ define([ }); }, - onChangeProtectDocument: function() { + onChangeProtectDocument: function(userId) { var props = this.getDocProps(true), isProtected = props && (props.isReadOnly || props.isCommentsOnly || props.isFormsOnly || props.isReviewOnly); this.view && this.view.btnProtectDoc.toggle(isProtected, true); @@ -204,6 +206,27 @@ define([ if (this._docProtectDlg && this._docProtectDlg.isVisible()) this._docProtectDlg.SetDisabled(!!this._state.lockDocProtect || isProtected); Common.NotificationCenter.trigger('protect:doclock', props); + if (userId && this.userCollection) { + var recUser = this.userCollection.findOriginalUser(userId); + if (recUser && (recUser.get('idOriginal') !== this.currentUserId)) { + var str = this.view.txtWasUnprotected; + switch (this._state.docProtection.type) { + case Asc.c_oAscEDocProtect.ReadOnly: + str = this.view.txtWasProtectedView; + break; + case Asc.c_oAscEDocProtect.Comments: + str = this.view.txtWasProtectedComment; + break; + case Asc.c_oAscEDocProtect.Forms: + str = this.view.txtWasProtectedForms; + break; + case Asc.c_oAscEDocProtect.TrackedChanges: + str = this.view.txtWasProtectedTrack; + break; + } + str && Common.NotificationCenter.trigger('showmessage', {msg: str}, {timeout: 5000, hideCloseTip: true}); + } + } }, getDocProps: function(update) { diff --git a/apps/documenteditor/main/app/view/DocProtection.js b/apps/documenteditor/main/app/view/DocProtection.js index 81bf01e1f..24151040c 100644 --- a/apps/documenteditor/main/app/view/DocProtection.js +++ b/apps/documenteditor/main/app/view/DocProtection.js @@ -142,7 +142,12 @@ define([ txtDocProtectedForms: 'Document is protected.
You may only fill in forms in this document.', hintProtectDoc: 'Protect document', txtDocUnlockDescription: 'Enter a password to unprotect document', - txtUnlockTitle: 'Unprotect Document' + txtUnlockTitle: 'Unprotect Document', + txtWasProtectedView: 'Document has been protected by another user.\nYou may only view this document.', + txtWasProtectedTrack: 'Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.', + txtWasProtectedComment: 'Document has been protected by another user.\nYou may only insert comments to this document.', + txtWasProtectedForms: 'Document has been protected by another user.\nYou may only fill in forms in this document.', + txtWasUnprotected: 'Document has been unprotected.' } }()), DE.Views.DocProtection || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 9411c70e9..3c8991111 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1634,6 +1634,11 @@ "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document", + "DE.Views.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", + "DE.Views.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "DE.Views.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", + "DE.Views.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", + "DE.Views.DocProtection.txtWasUnprotected": "Document has been unprotected.", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", From 9e35ee62d162d18443b16ba3a42ffceacbd11032 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 8 Dec 2022 18:29:30 +0300 Subject: [PATCH 07/54] [SSE] Import data from xml file. For Bug 47036 --- .../main/app/controller/DataTab.js | 39 ++- .../main/app/view/DataTab.js | 12 +- .../main/app/view/ImportFromXmlDialog.js | 240 ++++++++++++++++++ apps/spreadsheeteditor/main/locale/en.json | 3 +- 4 files changed, 288 insertions(+), 6 deletions(-) create mode 100644 apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 0e36b5a07..22e795049 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -46,6 +46,7 @@ define([ 'spreadsheeteditor/main/app/view/RemoveDuplicatesDialog', 'spreadsheeteditor/main/app/view/DataValidationDialog', 'spreadsheeteditor/main/app/view/ExternalLinksDlg', + 'spreadsheeteditor/main/app/view/ImportFromXmlDialog', 'common/main/lib/view/OptionsDialog' ], function () { 'use strict'; @@ -265,6 +266,8 @@ define([ })).show(); } else if (type === 'storage') { // Common.NotificationCenter.trigger('storage:data-load', 'add'); + } else if (type === 'xml') { + this.api && this.api.asc_ImportXmlStart(_.bind(this.onDataFromXMLCallback, this)); } }, @@ -286,6 +289,39 @@ define([ })).show(); }, + onDataFromXMLCallback: function(fileContent) { + if (!fileContent) return; + + var me = this; + (new SSE.Views.ImportFromXmlDialog({ + api: me.api, + handler: function (result, settings) { + if (result == 'ok' && settings) { + if (settings.destination) + me.api.asc_ImportXmlEnd(fileContent, settings.destination); + else + me.api.asc_ImportXmlEnd(fileContent, me.createSheetName()); + } + Common.NotificationCenter.trigger('edit:complete', me); + } + })).show(); + }, + + createSheetName: function() { + var items = [], wc = this.api.asc_getWorksheetsCount(); + while (wc--) { + items.push(this.api.asc_getWorksheetName(wc).toLowerCase()); + } + + var index = 0, name; + while(++index < 1000) { + name = this.strSheet + index; + if (items.indexOf(name.toLowerCase()) < 0) break; + } + + return name; + }, + onShowClick: function() { this.api.asc_changeGroupDetails(true); }, @@ -575,7 +611,8 @@ define([ textEmptyUrl: 'You need to specify URL.', txtImportWizard: 'Text Import Wizard', txtUrlTitle: 'Paste a data URL', - txtErrorExternalLink: 'Error: updating is failed' + txtErrorExternalLink: 'Error: updating is failed', + strSheet : 'Sheet' }, SSE.Controllers.DataTab || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index 1b88616f6..4bec61b70 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -133,7 +133,8 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-import-data', caption: this.capDataFromText, - menu: !this.toolbar.mode.isDesktopApp, + // menu: !this.toolbar.mode.isDesktopApp, + menu: true, disabled: true, lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.wbLock, _set.lostConnect, _set.coAuth, _set.wsLock], dataHint: '1', @@ -311,10 +312,12 @@ define([ me.btnDataFromText.menu && me.btnDataFromText.setMenu(new Common.UI.Menu({ items: [ { caption: me.mniFromFile, value: 'file' }, - { caption: me.mniFromUrl, value: 'url' } + { caption: me.mniFromUrl, value: 'url' }, + { caption: me.mniFromXMLFile, value: 'xml' } // { caption: me.mniImageFromStorage, value: 'storage'} ] })); + me.toolbar.mode.isDesktopApp && me.btnDataFromText.menu.items[1].setVisible(false); me.btnTextToColumns.updateHint(me.tipToColumns); me.btnRemoveDuplicates.updateHint(me.tipRemDuplicates); @@ -394,11 +397,12 @@ define([ capBtnTextDataValidation: 'Data Validation', tipDataValidation: 'Data validation', capDataFromText: 'From Text/CSV', - tipDataFromText: 'Get data from Text/CSV file', + tipDataFromText: 'Get data from file', mniFromFile: 'Get Data from File', mniFromUrl: 'Get Data from URL', capDataExternalLinks: 'External Links', - tipExternalLinks: 'View other files this spreadsheet is linked to' + tipExternalLinks: 'View other files this spreadsheet is linked to', + mniFromXMLFile: 'From Local XML' } }()), SSE.Views.DataTab || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js new file mode 100644 index 000000000..0e851a4c4 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js @@ -0,0 +1,240 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2019 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * + */ + +/** + * CreatePivotDialog.js + * + * Created by Julia Radzhabova on 04.10.2019 + * Copyright (c) 2019 Ascensio System SIA. All rights reserved. + * + */ +define([ + 'common/main/lib/util/utils', + 'common/main/lib/component/InputField', + 'common/main/lib/component/ComboBox', + 'common/main/lib/view/AdvancedSettingsWindow' +], function () { 'use strict'; + + SSE.Views.ImportFromXmlDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({ + options: { + contentWidth: 310, + height: 200 + }, + + initialize : function(options) { + var me = this; + + _.extend(this.options, { + title: this.textTitle, + template: [ + '
', + '
', + '
', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '
', + '', + '
', + '
', + '
', + '
', + '
', + '
', + '
', + '
', + '
', + '
' + ].join('') + }, options); + + this.api = options.api; + + this.options.handler = function(result, value) { + if ( result != 'ok' || this.isRangeValid() ) { + if (options.handler) + options.handler.call(this, result, value); + return; + } + return true; + }; + + this.dataDestValid = ''; + + Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options); + }, + + render: function() { + Common.Views.AdvancedSettingsWindow.prototype.render.call(this); + var me = this; + + this.txtDestRange = new Common.UI.InputFieldBtn({ + el : $('#import-xml-input-dest'), + name : 'range', + style : 'width: 100%;', + btnHint : this.textSelectData, + allowBlank : true, + validateOnChange: true, + validateOnBlur: false, + disabled: true + }); + this.txtDestRange.on('button:click', _.bind(this.onSelectData, this, 'dest')); + + this.radioNew = new Common.UI.RadioBox({ + el: $('#import-xml-radio-new'), + labelText: this.textNew, + name: 'asc-radio-xml-dest', + checked: true + }).on('change', function(field, newValue) { + me.txtDestRange.setDisabled(newValue); + me.txtDestRange.showError(); + }); + + this.radioExist = new Common.UI.RadioBox({ + el: $('#import-xml-radio-exist'), + labelText: this.textExist, + name: 'asc-radio-xml-dest' + }).on('change', function(field, newValue) { + me.txtDestRange.setDisabled(!newValue); + me.txtDestRange.cmpEl.find('input').focus(); + }); + + this.afterRender(); + }, + + getFocusedComponents: function() { + return [this.radioNew, this.radioExist, this.txtDestRange]; + }, + + getDefaultFocusableComponent: function () { + if (this._alreadyRendered) return; // focus only at first show + this._alreadyRendered = true; + return this.txtSourceRange; + }, + + afterRender: function() { + this._setDefaults(this.props); + }, + + _setDefaults: function (props) { + if (props) { + var me = this; + this.txtDestRange.validation = function(value) { + var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PivotTableReport, value, false); + return (isvalid==Asc.c_oAscError.ID.DataRangeError) ? me.textInvalidRange : true; + }; + } + }, + + getSettings: function () { + var dest = this.radioExist.getValue() ? this.txtDestRange.getValue() : null; + + return {destination: dest}; + }, + + isRangeValid: function() { + var isvalid = true, + txtError = ''; + + if (this.radioExist.getValue()) { + if (_.isEmpty(this.txtDestRange.getValue())) { + isvalid = false; + txtError = this.txtEmpty; + } else { + isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PivotTableReport, this.txtDestRange.getValue()); + isvalid = (isvalid == Asc.c_oAscError.ID.No); + !isvalid && (txtError = this.textInvalidRange); + } + if (!isvalid) { + this.txtDestRange.showError([txtError]); + this.txtDestRange.cmpEl.find('input').focus(); + return isvalid; + } + } + + return isvalid; + }, + + onSelectData: function(type) { + var me = this, + txtRange = me.txtDestRange; + + if (me.api) { + var handlerDlg = function(dlg, result) { + if (result == 'ok') { + var txt = dlg.getSettings(); + me.dataDestValid = txt; + txtRange.setValue(txt); + txtRange.checkValidate(); + } + }; + + var win = new SSE.Views.CellRangeDialog({ + handler: handlerDlg + }).on('close', function() { + me.show(); + _.delay(function(){ + txtRange.focus(); + },1); + }); + + var xy = me.$window.offset(); + me.hide(); + win.show(xy.left + 160, xy.top + 125); + win.setSettings({ + api : me.api, + range : (!_.isEmpty(txtRange.getValue()) && (txtRange.checkValidate()==true)) ? txtRange.getValue() : me.dataDestValid, + type : Asc.c_oAscSelectionDialogType.PivotTableReport + }); + } + }, + + textTitle: 'Import Data', + textSelectData: 'Select data', + textDestination: 'Choose, where to place the data', + textNew: 'New worksheet', + textExist: 'Existing worksheet', + txtEmpty: 'This field is required', + textInvalidRange: 'Invalid cells range' + }, SSE.Views.ImportFromXmlDialog || {})) +}); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 43f107581..348419e4d 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2036,13 +2036,14 @@ "SSE.Views.DataTab.textRightOf": "Summary Columns To Right Of Detail", "SSE.Views.DataTab.textRows": "Ungroup Rows", "SSE.Views.DataTab.tipCustomSort": "Custom sort", - "SSE.Views.DataTab.tipDataFromText": "Get data from Text/CSV file", + "SSE.Views.DataTab.tipDataFromText": "Get data from file", "SSE.Views.DataTab.tipDataValidation": "Data validation", "SSE.Views.DataTab.tipExternalLinks": "View other files this spreadsheet is linked to", "SSE.Views.DataTab.tipGroup": "Group range of cells", "SSE.Views.DataTab.tipRemDuplicates": "Remove duplicate rows from a sheet", "SSE.Views.DataTab.tipToColumns": "Separate cell text into columns", "SSE.Views.DataTab.tipUngroup": "Ungroup range of cells", + "SSE.Views.DataTab.mniFromXMLFile": "From Local XML", "SSE.Views.DataValidationDialog.errorFormula": "The value currently evaluates to an error. Do you want to continue?", "SSE.Views.DataValidationDialog.errorInvalid": "The value you entered for the field \"{0}\" is invalid.", "SSE.Views.DataValidationDialog.errorInvalidDate": "The date you entered for the field \"{0}\" is invalid.", From 6b2159c18c5f8802ef1b7ded71890da026c4f99d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 9 Dec 2022 10:27:15 +0300 Subject: [PATCH 08/54] [SSE] Import xml to current cell by default --- .../main/app/controller/DataTab.js | 2 +- .../main/app/view/ImportFromXmlDialog.js | 36 +++++++++---------- apps/spreadsheeteditor/main/locale/en.json | 8 +++++ 3 files changed, 27 insertions(+), 19 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 22e795049..298b90fdd 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -612,7 +612,7 @@ define([ txtImportWizard: 'Text Import Wizard', txtUrlTitle: 'Paste a data URL', txtErrorExternalLink: 'Error: updating is failed', - strSheet : 'Sheet' + strSheet: 'Sheet' }, SSE.Controllers.DataTab || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js index 0e851a4c4..5e4a09809 100644 --- a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js @@ -34,14 +34,14 @@ /** * CreatePivotDialog.js * - * Created by Julia Radzhabova on 04.10.2019 + * Created by Julia Radzhabova on 08.12.2022 * Copyright (c) 2019 Ascensio System SIA. All rights reserved. * */ define([ 'common/main/lib/util/utils', 'common/main/lib/component/InputField', - 'common/main/lib/component/ComboBox', + 'common/main/lib/component/RadioBox', 'common/main/lib/view/AdvancedSettingsWindow' ], function () { 'use strict'; @@ -88,7 +88,7 @@ define([ ].join('') }, options); - this.api = options.api; + this.api = options.api; this.options.handler = function(result, value) { if ( result != 'ok' || this.isRangeValid() ) { @@ -115,16 +115,14 @@ define([ btnHint : this.textSelectData, allowBlank : true, validateOnChange: true, - validateOnBlur: false, - disabled: true + validateOnBlur: false }); this.txtDestRange.on('button:click', _.bind(this.onSelectData, this, 'dest')); this.radioNew = new Common.UI.RadioBox({ el: $('#import-xml-radio-new'), labelText: this.textNew, - name: 'asc-radio-xml-dest', - checked: true + name: 'asc-radio-xml-dest' }).on('change', function(field, newValue) { me.txtDestRange.setDisabled(newValue); me.txtDestRange.showError(); @@ -133,7 +131,8 @@ define([ this.radioExist = new Common.UI.RadioBox({ el: $('#import-xml-radio-exist'), labelText: this.textExist, - name: 'asc-radio-xml-dest' + name: 'asc-radio-xml-dest', + checked: true }).on('change', function(field, newValue) { me.txtDestRange.setDisabled(!newValue); me.txtDestRange.cmpEl.find('input').focus(); @@ -149,21 +148,22 @@ define([ getDefaultFocusableComponent: function () { if (this._alreadyRendered) return; // focus only at first show this._alreadyRendered = true; - return this.txtSourceRange; + return this.txtDestRange; }, afterRender: function() { - this._setDefaults(this.props); + this._setDefaults(); }, - _setDefaults: function (props) { - if (props) { - var me = this; - this.txtDestRange.validation = function(value) { - var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PivotTableReport, value, false); - return (isvalid==Asc.c_oAscError.ID.DataRangeError) ? me.textInvalidRange : true; - }; - } + _setDefaults: function () { + var me = this; + this.txtDestRange.validation = function(value) { + var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PivotTableReport, value, false); + return (isvalid==Asc.c_oAscError.ID.DataRangeError) ? me.textInvalidRange : true; + }; + var range = this.api.asc_getActiveRangeStr(Asc.referenceType.A); + this.txtDestRange.setValue(range); + this.dataDestValid = range; }, getSettings: function () { diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 348419e4d..a360f8958 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -668,6 +668,7 @@ "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
Erase current settings and continue?", "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", + "SSE.Controllers.DataTab.strSheet": "Sheet", "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", @@ -2767,6 +2768,13 @@ "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Move and size with cells", "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically", + "SSE.Views.ImportFromXmlDialog.textTitle": "Import Data", + "SSE.Views.ImportFromXmlDialog.textSelectData": "Select data", + "SSE.Views.ImportFromXmlDialog.textDestination": "Choose, where to place the data", + "SSE.Views.ImportFromXmlDialog.textNew": "New worksheet", + "SSE.Views.ImportFromXmlDialog.textExist": "Existing worksheet", + "SSE.Views.ImportFromXmlDialog.txtEmpty": "This field is required", + "SSE.Views.ImportFromXmlDialog.textInvalidRange": "Invalid cells range", "SSE.Views.LeftMenu.tipAbout": "About", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Comments", From ea53ab8db5eba91803e9c1922fe0ce4e3402b7f8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 9 Dec 2022 12:02:46 +0300 Subject: [PATCH 09/54] [SSE] Use Asc.c_oAscSelectionDialogType.ImportXml --- apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js index 5e4a09809..ac3edc6f5 100644 --- a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js @@ -158,7 +158,7 @@ define([ _setDefaults: function () { var me = this; this.txtDestRange.validation = function(value) { - var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PivotTableReport, value, false); + var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.ImportXml, value, false); return (isvalid==Asc.c_oAscError.ID.DataRangeError) ? me.textInvalidRange : true; }; var range = this.api.asc_getActiveRangeStr(Asc.referenceType.A); @@ -181,7 +181,7 @@ define([ isvalid = false; txtError = this.txtEmpty; } else { - isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.PivotTableReport, this.txtDestRange.getValue()); + isvalid = this.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.ImportXml, this.txtDestRange.getValue()); isvalid = (isvalid == Asc.c_oAscError.ID.No); !isvalid && (txtError = this.textInvalidRange); } @@ -224,7 +224,7 @@ define([ win.setSettings({ api : me.api, range : (!_.isEmpty(txtRange.getValue()) && (txtRange.checkValidate()==true)) ? txtRange.getValue() : me.dataDestValid, - type : Asc.c_oAscSelectionDialogType.PivotTableReport + type : Asc.c_oAscSelectionDialogType.ImportXml }); } }, From c2d4f8af02ff08c68ef2d12bde74cb7d0ff38a67 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 9 Dec 2022 12:36:38 +0300 Subject: [PATCH 10/54] [SSE] Send sheet name whe import xml --- apps/spreadsheeteditor/main/app/controller/DataTab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 298b90fdd..070045995 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -298,9 +298,9 @@ define([ handler: function (result, settings) { if (result == 'ok' && settings) { if (settings.destination) - me.api.asc_ImportXmlEnd(fileContent, settings.destination); + me.api.asc_ImportXmlEnd(fileContent, settings.destination, me.api.asc_getWorksheetName(me.api.asc_getActiveWorksheetIndex())); else - me.api.asc_ImportXmlEnd(fileContent, me.createSheetName()); + me.api.asc_ImportXmlEnd(fileContent, null, me.createSheetName()); } Common.NotificationCenter.trigger('edit:complete', me); } From f564b2c94af30f1f11f46246e6e03c590dfe4f97 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 9 Dec 2022 15:56:52 +0400 Subject: [PATCH 11/54] [DE SSE mobile] Removed the config check --- apps/documenteditor/mobile/src/page/main.jsx | 27 +++++++++---------- .../mobile/src/page/main.jsx | 27 +++++++++---------- 2 files changed, 25 insertions(+), 29 deletions(-) diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index 4a3767fb8..b06d0d5e6 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -157,21 +157,18 @@ class MainPage extends Component { return ( {/* Top Navbar */} - {config?.customization && - - {(!isBranding && showLogo) && -
{ - window.open(`${__PUBLISHER_URL__}`, "_blank"); - }}>
} - - - - -
- } - + + {(!isBranding && showLogo) && +
{ + window.open(`${__PUBLISHER_URL__}`, "_blank"); + }}>
} + + + + +
{/* Page content */} diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index dc0a82233..c24dc6ef9 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -121,20 +121,19 @@ class MainPage extends Component { return ( - {/* Top Navbar */} - {config?.customization && - - {(!isBranding && showLogo) &&
{ - window.open(`${__PUBLISHER_URL__}`, "_blank"); - }}>
} - - - - -
- } + {/* Top Navbar */} + + {(!isBranding && showLogo) &&
{ + window.open(`${__PUBLISHER_URL__}`, "_blank"); + }}>
} + + + + +
+ this.handleClickToOpenOptions('add', {panels: panels, button: button})}/> {/* Page content */} From 8c7a5bafef248936fb7f0b3a3324f26a05652d0c Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 9 Dec 2022 16:04:33 +0400 Subject: [PATCH 12/54] [DE PE SSE mobile] Fix Bug 59914 --- apps/common/mobile/lib/view/SharingSettings.jsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/apps/common/mobile/lib/view/SharingSettings.jsx b/apps/common/mobile/lib/view/SharingSettings.jsx index 6240961f5..29cf97e3e 100644 --- a/apps/common/mobile/lib/view/SharingSettings.jsx +++ b/apps/common/mobile/lib/view/SharingSettings.jsx @@ -7,20 +7,11 @@ const ViewSharingSettings = props => { const sharingSettingsUrl = props.sharingSettingsUrl; const _t = t('Common.Collaboration', {returnObjects: true}); - function resizeHeightIframe(selector) { - const iFrame = document.querySelector(selector); - iFrame.height = iFrame.contentWindow.document.body.scrollHeight; - }; - - useEffect(() => { - resizeHeightIframe('#sharing-placeholder iframe'); - }, []); - return (
- +
) From 8f0b933a5cc8aa65e901fc3aa42b3cc7f96130c8 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 9 Dec 2022 16:47:11 +0300 Subject: [PATCH 13/54] Update translation --- apps/documenteditor/forms/locale/pt-pt.json | 2 +- apps/documenteditor/main/locale/ca.json | 9 + apps/documenteditor/main/locale/da.json | 1 + apps/documenteditor/main/locale/de.json | 38 +++ apps/documenteditor/main/locale/el.json | 4 +- apps/documenteditor/main/locale/en.json | 266 ++++++++-------- apps/documenteditor/main/locale/es.json | 39 ++- apps/documenteditor/main/locale/eu.json | 33 ++ apps/documenteditor/main/locale/fi.json | 2 +- apps/documenteditor/main/locale/fr.json | 33 ++ apps/documenteditor/main/locale/hu.json | 42 ++- apps/documenteditor/main/locale/hy.json | 40 +++ apps/documenteditor/main/locale/id.json | 62 +++- apps/documenteditor/main/locale/it.json | 4 +- apps/documenteditor/main/locale/ja.json | 42 ++- apps/documenteditor/main/locale/lv.json | 2 +- apps/documenteditor/main/locale/nl.json | 4 +- apps/documenteditor/main/locale/pt-pt.json | 8 +- apps/documenteditor/main/locale/pt.json | 38 +++ apps/documenteditor/main/locale/ro.json | 38 +++ apps/documenteditor/main/locale/ru.json | 41 +-- apps/documenteditor/main/locale/sk.json | 4 +- apps/documenteditor/main/locale/sv.json | 4 +- apps/documenteditor/main/locale/zh.json | 4 +- apps/presentationeditor/main/locale/de.json | 21 ++ apps/presentationeditor/main/locale/en.json | 206 ++++++------- apps/presentationeditor/main/locale/hu.json | 1 + apps/presentationeditor/main/locale/hy.json | 147 +++++++++ apps/presentationeditor/main/locale/id.json | 23 ++ apps/presentationeditor/main/locale/ja.json | 29 +- apps/presentationeditor/main/locale/pt.json | 16 + apps/presentationeditor/main/locale/ro.json | 178 ++++++++++- apps/presentationeditor/main/locale/ru.json | 1 + apps/spreadsheeteditor/embed/locale/ro.json | 5 + apps/spreadsheeteditor/main/locale/da.json | 4 + apps/spreadsheeteditor/main/locale/de.json | 6 + apps/spreadsheeteditor/main/locale/en.json | 200 ++++++------ apps/spreadsheeteditor/main/locale/hy.json | 8 + apps/spreadsheeteditor/main/locale/id.json | 6 + apps/spreadsheeteditor/main/locale/ja.json | 7 + apps/spreadsheeteditor/main/locale/pt.json | 3 + apps/spreadsheeteditor/main/locale/ro.json | 322 ++++++++++++++++++-- apps/spreadsheeteditor/main/locale/ru.json | 1 + 43 files changed, 1521 insertions(+), 423 deletions(-) diff --git a/apps/documenteditor/forms/locale/pt-pt.json b/apps/documenteditor/forms/locale/pt-pt.json index c7b620728..8ed7633a7 100644 --- a/apps/documenteditor/forms/locale/pt-pt.json +++ b/apps/documenteditor/forms/locale/pt-pt.json @@ -77,7 +77,7 @@ "Common.Views.SaveAsDlg.textLoading": "A carregar", "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", "Common.Views.SelectFileDlg.textLoading": "A carregar", - "Common.Views.SelectFileDlg.textTitle": "Selecione a origem dos dados", + "Common.Views.SelectFileDlg.textTitle": "Selecione a fonte dos dados", "Common.Views.ShareDialog.textTitle": "Partilhar ligação", "Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência", "Common.Views.ShareDialog.warnCopy": "Erro do navegador! Utilize a tecla de atalho [Ctrl] + [C]", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 5fde1d311..61c298d5a 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -187,6 +187,8 @@ "Common.define.smartArt.textGridMatrix": "Matriu de quadrícula", "Common.define.smartArt.textGroupedList": "Llista agrupada", "Common.Translation.textMoreButton": "Més", + "Common.Translation.tipFileLocked": "El document està bloquejat per editar-lo. Podeu fer canvis i desar-los com a còpia local més tard.", + "Common.Translation.tipFileReadOnly": "El document és només de lectura, l'edició està bloquejada. Podeu fer canvis i desar la còpia local més tard.", "Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", @@ -1000,6 +1002,8 @@ "DE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document", + "DE.Controllers.Print.txtCustom": "Personalització", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Introduïu un sol número de pàgina o un sol interval de pàgines (per exemple, 5-12). O podeu imprimir en PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Advertiment", "DE.Controllers.Search.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", "DE.Controllers.Search.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", @@ -2461,6 +2465,11 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores", + "DE.Views.PrintWithPreview.txtAllPages": "Totes les pàgines", + "DE.Views.PrintWithPreview.txtBottom": "Inferior", + "DE.Views.PrintWithPreview.txtCurrentPage": "Pàgina actual", + "DE.Views.PrintWithPreview.txtCustom": "Personalització", + "DE.Views.PrintWithPreview.txtCustomPages": "Impressió personalitzada", "DE.Views.ProtectDialog.textComments": "Comentaris", "DE.Views.ProtectDialog.textForms": "Omplir formularis", "DE.Views.ProtectDialog.txtAllow": "Només permet aquest tipus d'edició del document", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 2b8497a10..23795ec4f 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -125,6 +125,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Scatter med jævne linjer og markører", "Common.define.chartData.textStock": "Aktie", "Common.define.chartData.textSurface": "Overflade", + "Common.define.smartArt.textAccentProcess": "(intet)", "Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme en kopi.", "Common.Translation.warnFileLockedBtnEdit": "Opret en kopi", "Common.Translation.warnFileLockedBtnView": "Åben for visning", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 62b78faba..2b8ac27e3 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste", "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess", "Common.Translation.textMoreButton": "Mehr", + "Common.Translation.tipFileLocked": "Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.", + "Common.Translation.tipFileReadOnly": "Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Symbolleiste ausblenden", "Common.Views.Header.textHideLines": "Lineale verbergen", "Common.Views.Header.textHideStatusBar": "Statusleiste verbergen", + "Common.Views.Header.textReadOnly": "Schreibgeschützt", "Common.Views.Header.textRemoveFavorite": "Aus Favoriten entfernen", "Common.Views.Header.textShare": "Freigeben", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Datei herunterladen", "Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten", "Common.Views.Header.tipPrint": "Datei drucken", + "Common.Views.Header.tipPrintQuick": "Schnelldruck", "Common.Views.Header.tipRedo": "Wiederholen", "Common.Views.Header.tipSave": "Speichern", "Common.Views.Header.tipSearch": "Suchen", @@ -829,6 +833,7 @@ "DE.Controllers.Main.textRequestMacros": "Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?", "DE.Controllers.Main.textShape": "Form", "DE.Controllers.Main.textStrict": "Formaler Modus", + "DE.Controllers.Main.textTryQuickPrint": "Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?", "DE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.", "DE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.", "DE.Controllers.Main.textUndo": "Rückgängig", @@ -1102,6 +1107,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", "DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments", "DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen", + "DE.Controllers.Print.textMarginsLast": " Benutzerdefiniert als letzte", + "DE.Controllers.Print.txtCustom": "Benutzerdefiniert", + "DE.Controllers.Print.txtPrintRangeInvalid": "Ungültiger Druckbereich", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Geben Sie entweder eine einzelne Seitenzahl oder einen einzelnen Seitenbereich ein (z. B. 5-12). Oder Sie können in PDF drucken.", "DE.Controllers.Search.notcriticalErrorTitle": "Achtung", "DE.Controllers.Search.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.", "DE.Controllers.Search.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.", @@ -2020,6 +2029,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Keine", "DE.Views.FileMenuPanels.Settings.txtProofing": "Rechtschreibprüfung", "DE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Alle aktivieren", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Alle Makros ohne Benachrichtigung aktivieren", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Änderungen anzeigen", @@ -2577,6 +2588,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen", + "DE.Views.PrintWithPreview.textMarginsLast": " Benutzerdefiniert als letzte", + "DE.Views.PrintWithPreview.textMarginsModerate": "Mittelmäßig", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Schmal", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "Normal (US)", + "DE.Views.PrintWithPreview.textMarginsWide": "Breit", + "DE.Views.PrintWithPreview.txtAllPages": "Alle Seiten", + "DE.Views.PrintWithPreview.txtBottom": "Unten", + "DE.Views.PrintWithPreview.txtCurrentPage": "Aktuelle Seite", + "DE.Views.PrintWithPreview.txtCustom": "Benutzerdefiniert", + "DE.Views.PrintWithPreview.txtCustomPages": "Benutzerdefinierter Druck", + "DE.Views.PrintWithPreview.txtLandscape": "Querformat", + "DE.Views.PrintWithPreview.txtLeft": "Links", + "DE.Views.PrintWithPreview.txtMargins": "Ränder", + "DE.Views.PrintWithPreview.txtOf": "von {0}", + "DE.Views.PrintWithPreview.txtPage": "Seite", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Ungültige Seitennummer", + "DE.Views.PrintWithPreview.txtPageOrientation": "Seitenausrichtung", + "DE.Views.PrintWithPreview.txtPages": "Seiten", + "DE.Views.PrintWithPreview.txtPageSize": "Seitengröße", + "DE.Views.PrintWithPreview.txtPortrait": "Hochformat", + "DE.Views.PrintWithPreview.txtPrint": "Drucken", + "DE.Views.PrintWithPreview.txtPrintPdf": "Als PDF-Datei drucken", + "DE.Views.PrintWithPreview.txtPrintRange": "Druckbereich", + "DE.Views.PrintWithPreview.txtRight": "Rechts", + "DE.Views.PrintWithPreview.txtSelection": "Auswahl", + "DE.Views.PrintWithPreview.txtTop": "Oben", "DE.Views.ProtectDialog.textComments": "Kommentare", "DE.Views.ProtectDialog.textForms": "Ausfüllen von Formularen", "DE.Views.ProtectDialog.textReview": "Überarbeitungen", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 9e3d44221..1b9992089 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -1737,10 +1737,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Έκδοση PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Τοποθεσία", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Άτομα που έχουν δικαιώματα", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Σύμβολα με διαστήματα", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Χαρακτήρες με διαστήματα", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Στατιστικά", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Θέμα", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Σύμβολα", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Χαρακτήρες", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Τίτλος", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Μεταφορτώθηκε", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Λέξεις", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 3c8991111..37c8592b4 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -460,6 +460,7 @@ "Common.Views.Header.textCompactView": "Hide Toolbar", "Common.Views.Header.textHideLines": "Hide Rulers", "Common.Views.Header.textHideStatusBar": "Hide Status Bar", + "Common.Views.Header.textReadOnly": "Read only", "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", "Common.Views.Header.textShare": "Share", "Common.Views.Header.textZoom": "Zoom", @@ -467,6 +468,7 @@ "Common.Views.Header.tipDownload": "Download file", "Common.Views.Header.tipGoEdit": "Edit current file", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Quick print", "Common.Views.Header.tipRedo": "Redo", "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipSearch": "Search", @@ -476,8 +478,6 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.tipPrintQuick": "Quick print", - "Common.Views.Header.textReadOnly": "Read only", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -835,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "DE.Controllers.Main.textShape": "Shape", "DE.Controllers.Main.textStrict": "Strict mode", + "DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "DE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "DE.Controllers.Main.textUndo": "Undo", @@ -1106,9 +1107,12 @@ "DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", + "DE.Controllers.Print.textMarginsLast": "Last Custom", + "DE.Controllers.Print.txtCustom": "Custom", + "DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Warning", "DE.Controllers.Search.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", "DE.Controllers.Search.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", @@ -1120,10 +1124,6 @@ "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", "DE.Controllers.Statusbar.tipReview": "Track changes", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "DE.Controllers.Print.txtCustom": "Custom", - "DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range", - "DE.Controllers.Print.textMarginsLast": "Last Custom", - "DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.", "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", "DE.Controllers.Toolbar.dataUrl": "Paste a data URL", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning", @@ -1174,52 +1174,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Hat", "DE.Controllers.Toolbar.txtAccent_Smile": "Breve", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "DE.Controllers.Toolbar.txtBracket_Angle": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Curve": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", + "DE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separators", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", + "DE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separators", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object in parentheses", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", - "DE.Controllers.Toolbar.txtBracket_Line": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Round": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Square": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient in angle brackets", + "DE.Controllers.Toolbar.txtBracket_Line": "Vertical bars", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right vertical bar", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left vertical bar", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Double vertical bars", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right double vertical bar", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left double vertical bar", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Floor", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", + "DE.Controllers.Toolbar.txtBracket_Round": "Parentheses", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separators", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", + "DE.Controllers.Toolbar.txtBracket_Square": "Square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Right square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Right and left square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Left square brackets", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right ceiling", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left ceiling", "DE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y over cap delta x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "partial y over partial x", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y over delta x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", "DE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", "DE.Controllers.Toolbar.txtFractionSmall": "Small fraction", @@ -1255,63 +1255,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", "DE.Controllers.Toolbar.txtIntegral_dx": "Differential x", "DE.Controllers.Toolbar.txtIntegral_dy": "Differential y", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with stacked limits", "DE.Controllers.Toolbar.txtIntegralDouble": "Double integral", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral with limits", "DE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral with stacked limits", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral with limits", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral with limits", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral with limits", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral with limits", "DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with subscript/superscript limits", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", @@ -1365,16 +1365,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of Quadratic Formula", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", "DE.Controllers.Toolbar.txtRadicalSqrt": "Square root", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e to the minus i omega t", + "DE.Controllers.Toolbar.txtScriptCustom_3": "x squared", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y left superscript n left subscript one", "DE.Controllers.Toolbar.txtScriptSub": "Subscript", "DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", @@ -1632,12 +1632,12 @@ "DE.Views.DocProtection.txtDocProtectedTrack": "Document is protected.
You may edit this document, but all changes will be tracked.", "DE.Views.DocProtection.txtDocProtectedView": "Document is protected.
You may only view this document.", "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", - "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document", - "DE.Views.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", - "DE.Views.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", "DE.Views.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", "DE.Views.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", + "DE.Views.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "DE.Views.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", "DE.Views.DocProtection.txtWasUnprotected": "Document has been unprotected.", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", @@ -1968,10 +1968,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Version", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbols with spaces", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Characters with spaces", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistics", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbols", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Characters", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", @@ -2037,6 +2037,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "View None", "DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without a notification", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Show track changes", @@ -2050,8 +2052,6 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", - "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", - "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "DE.Views.FormSettings.textAlways": "Always", "DE.Views.FormSettings.textAspect": "Lock aspect ratio", "DE.Views.FormSettings.textAtLeast": "At least", @@ -2596,6 +2596,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders", + "DE.Views.PrintWithPreview.textMarginsLast": "Last Custom", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderate", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Wide", + "DE.Views.PrintWithPreview.txtAllPages": "All pages", + "DE.Views.PrintWithPreview.txtBottom": "Bottom", + "DE.Views.PrintWithPreview.txtCurrentPage": "Current page", + "DE.Views.PrintWithPreview.txtCustom": "Custom", + "DE.Views.PrintWithPreview.txtCustomPages": "Custom print", + "DE.Views.PrintWithPreview.txtLandscape": "Landscape", + "DE.Views.PrintWithPreview.txtLeft": "Left", + "DE.Views.PrintWithPreview.txtMargins": "Margins", + "DE.Views.PrintWithPreview.txtOf": "of {0}", + "DE.Views.PrintWithPreview.txtPage": "Page", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid", + "DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation", + "DE.Views.PrintWithPreview.txtPages": "Pages", + "DE.Views.PrintWithPreview.txtPageSize": "Page size", + "DE.Views.PrintWithPreview.txtPortrait": "Portrait", + "DE.Views.PrintWithPreview.txtPrint": "Print", + "DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Print range", + "DE.Views.PrintWithPreview.txtRight": "Right", + "DE.Views.PrintWithPreview.txtSelection": "Selection", + "DE.Views.PrintWithPreview.txtTop": "Top", "DE.Views.ProtectDialog.textComments": "Comments", "DE.Views.ProtectDialog.textForms": "Filling forms", "DE.Views.ProtectDialog.textReview": "Tracked changes", @@ -2608,33 +2635,6 @@ "DE.Views.ProtectDialog.txtRepeat": "Repeat password", "DE.Views.ProtectDialog.txtTitle": "Protect", "DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", - "DE.Views.PrintWithPreview.txtPrint": "Print", - "DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF", - "DE.Views.PrintWithPreview.txtPrintRange": "Print range", - "DE.Views.PrintWithPreview.txtCurrentPage": "Current page", - "DE.Views.PrintWithPreview.txtAllPages": "All pages", - "DE.Views.PrintWithPreview.txtSelection": "Selection", - "DE.Views.PrintWithPreview.txtCustomPages": "Custom print", - "DE.Views.PrintWithPreview.txtPageSize": "Page size", - "DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation", - "DE.Views.PrintWithPreview.txtPortrait": "Portrait", - "DE.Views.PrintWithPreview.txtLandscape": "Landscape", - "DE.Views.PrintWithPreview.txtCustom": "Custom", - "DE.Views.PrintWithPreview.txtMargins": "Margins", - "DE.Views.PrintWithPreview.txtTop": "Top", - "DE.Views.PrintWithPreview.txtBottom": "Bottom", - "DE.Views.PrintWithPreview.txtLeft": "Left", - "DE.Views.PrintWithPreview.txtRight": "Right", - "DE.Views.PrintWithPreview.txtPage": "Page", - "DE.Views.PrintWithPreview.txtOf": "of {0}", - "DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid", - "DE.Views.PrintWithPreview.txtPages": "Pages", - "DE.Views.PrintWithPreview.textMarginsLast": "Last Custom", - "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", - "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", - "DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow", - "DE.Views.PrintWithPreview.textMarginsModerate": "Moderate", - "DE.Views.PrintWithPreview.textMarginsWide": "Wide", "DE.Views.RightMenu.txtChartSettings": "Chart settings", "DE.Views.RightMenu.txtFormSettings": "Form Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", @@ -2736,12 +2736,12 @@ "DE.Views.Statusbar.tipZoomIn": "Zoom in", "DE.Views.Statusbar.tipZoomOut": "Zoom out", "DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid", - "DE.Views.Statusbar.txtWordCount": "Word count", "DE.Views.Statusbar.txtPages": "Pages", - "DE.Views.Statusbar.txtWords": "Words", "DE.Views.Statusbar.txtParagraphs": "Paragraphs", - "DE.Views.Statusbar.txtSymbols": "Symbols", "DE.Views.Statusbar.txtSpaces": "Symbols with spaces", + "DE.Views.Statusbar.txtSymbols": "Symbols", + "DE.Views.Statusbar.txtWordCount": "Word count", + "DE.Views.Statusbar.txtWords": "Words", "DE.Views.StyleTitleDialog.textHeader": "Create new style", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textTitle": "Title", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index b3eab7ade..5cb403800 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -285,6 +285,7 @@ "Common.define.smartArt.textVerticalPictureList": "Lista vertical de imágenes", "Common.define.smartArt.textVerticalProcess": "Proceso vertical", "Common.Translation.textMoreButton": "Más", + "Common.Translation.tipFileLocked": "El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.", "Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.", "Common.Translation.warnFileLockedBtnEdit": "Crear una copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -458,6 +459,7 @@ "Common.Views.Header.textCompactView": "Esconder barra de herramientas", "Common.Views.Header.textHideLines": "Ocultar reglas", "Common.Views.Header.textHideStatusBar": "Ocultar barra de estado", + "Common.Views.Header.textReadOnly": "Sólo lectura", "Common.Views.Header.textRemoveFavorite": "Eliminar de Favoritos", "Common.Views.Header.textShare": "Compartir", "Common.Views.Header.textZoom": "Ampliación", @@ -465,6 +467,7 @@ "Common.Views.Header.tipDownload": "Descargar archivo", "Common.Views.Header.tipGoEdit": "Editar archivo actual", "Common.Views.Header.tipPrint": "Imprimir archivo", + "Common.Views.Header.tipPrintQuick": "Impresión rápida", "Common.Views.Header.tipRedo": "Rehacer", "Common.Views.Header.tipSave": "Guardar", "Common.Views.Header.tipSearch": "Búsqueda", @@ -1102,6 +1105,9 @@ "DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado", "DE.Controllers.Navigation.txtBeginning": "Principio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de", + "DE.Controllers.Print.textMarginsLast": "Último personalizado", + "DE.Controllers.Print.txtCustom": "Personalizado", + "DE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impresión no válido", "DE.Controllers.Search.notcriticalErrorTitle": "Advertencia", "DE.Controllers.Search.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.", "DE.Controllers.Search.textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.", @@ -1951,10 +1957,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versión PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos con espacios", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caracteres con espacios", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caracteres", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido", @@ -2020,6 +2026,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Ver Ningunos", "DE.Views.FileMenuPanels.Settings.txtProofing": "Revisión", "DE.Views.FileMenuPanels.Settings.txtPt": "Punto", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar el botón Impresión Rápida en el encabezado del editor", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "El documento se imprimirá en la última impresora seleccionada o predeterminada", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todo", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar control de cambios", @@ -2577,6 +2585,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes", + "DE.Views.PrintWithPreview.textMarginsLast": "Último personalizado", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderado", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Estrecho", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Amplio", + "DE.Views.PrintWithPreview.txtAllPages": "Todas las páginas", + "DE.Views.PrintWithPreview.txtBottom": "Parte inferior", + "DE.Views.PrintWithPreview.txtCurrentPage": "Página actual", + "DE.Views.PrintWithPreview.txtCustom": "Personalizado", + "DE.Views.PrintWithPreview.txtCustomPages": "Impresión personalizada", + "DE.Views.PrintWithPreview.txtLandscape": "Horizontal", + "DE.Views.PrintWithPreview.txtLeft": "Izquierdo", + "DE.Views.PrintWithPreview.txtMargins": "Márgenes", + "DE.Views.PrintWithPreview.txtOf": "de {0}", + "DE.Views.PrintWithPreview.txtPage": "Página", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Número de página no válido", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientación de página", + "DE.Views.PrintWithPreview.txtPages": "Páginas", + "DE.Views.PrintWithPreview.txtPageSize": "Tamaño de página", + "DE.Views.PrintWithPreview.txtPortrait": "Vertical", + "DE.Views.PrintWithPreview.txtPrint": "Imprimir", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir en PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Intervalo de impresión", + "DE.Views.PrintWithPreview.txtRight": "Derecho", + "DE.Views.PrintWithPreview.txtSelection": "Selección ", + "DE.Views.PrintWithPreview.txtTop": "Parte superior", "DE.Views.ProtectDialog.textComments": "Comentarios", "DE.Views.ProtectDialog.textForms": "Relleno de formularios", "DE.Views.ProtectDialog.textReview": "Cambios realizados", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 49413d270..cdc6a0c84 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -256,6 +256,8 @@ "Common.define.smartArt.textSubStepProcess": "Azpi-urratsen prozesua", "Common.define.smartArt.textTabList": "Fitxa-zerrenda", "Common.Translation.textMoreButton": "Gehiago", + "Common.Translation.tipFileLocked": "Dokumentua editatzeko blokeatuta dago. Aldaketak egin eta kopia lokal bezala gorde dezakezu gero.", + "Common.Translation.tipFileReadOnly": "Dokumentua irakurtzeko soilik da eta editatzea blokeatuta dago. Aldaketak egin eta kopia lokal bat gorde dezakezu gero.", "Common.Translation.warnFileLocked": "Ezin duzu fitxategi hau editatu, beste aplikazio batean editatzen ari direlako.", "Common.Translation.warnFileLockedBtnEdit": "Sortu kopia", "Common.Translation.warnFileLockedBtnView": "Ireki ikusteko", @@ -429,6 +431,7 @@ "Common.Views.Header.textCompactView": "Ezkutatu tresna-barra", "Common.Views.Header.textHideLines": "Ezkutatu erregelak", "Common.Views.Header.textHideStatusBar": "Ezkutatu egoera-barra", + "Common.Views.Header.textReadOnly": "Irakurtzeko soilik", "Common.Views.Header.textRemoveFavorite": "Kendu gogokoetatik", "Common.Views.Header.textShare": "Partekatu", "Common.Views.Header.textZoom": "Zooma", @@ -436,6 +439,7 @@ "Common.Views.Header.tipDownload": "Deskargatu fitxategia", "Common.Views.Header.tipGoEdit": "Editatu uneko fitxategia", "Common.Views.Header.tipPrint": "Inprimatu fitxategia", + "Common.Views.Header.tipPrintQuick": "Inprimatze bizkorra", "Common.Views.Header.tipRedo": "Berregin", "Common.Views.Header.tipSave": "Gorde", "Common.Views.Header.tipSearch": "Bilatu", @@ -1070,6 +1074,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Fitxategi hau editatzeko baimena ukatu zaizu.", "DE.Controllers.Navigation.txtBeginning": "Dokumentuaren hasiera", "DE.Controllers.Navigation.txtGotoBeginning": "Joan dokumentuaren hasierara", + "DE.Controllers.Print.textMarginsLast": "Azken pertsonalizatua", + "DE.Controllers.Print.txtCustom": "Pertsonalizatua", + "DE.Controllers.Print.txtPrintRangeInvalid": "Inprimaketa-bitarte baliogabea", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Sartu orri-zenbaki bat edo orri-tarte bat (adibidez, 5-12). Edo PDFra inprimatu dezakezu.", "DE.Controllers.Search.notcriticalErrorTitle": "Abisua", "DE.Controllers.Search.textNoTextFound": "Bilatu duzun datua ezin izan da aurkitu. Doitu bilaketaren ezarpenak.", "DE.Controllers.Search.textReplaceSkipped": "Ordezkapena burutu da. {0} agerraldi saltatu dira.", @@ -1982,6 +1990,7 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Ez ikusi batere", "DE.Views.FileMenuPanels.Settings.txtProofing": "Zuzenketa", "DE.Views.FileMenuPanels.Settings.txtPt": "Puntua", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Erakutsi Inprimatze bizkorra botoia editoreko goiburuan", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Gaitu guztiak", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Gaitu makro guztiak jakinarazpenik gabe", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Erakutsi aldaketen kontrola", @@ -2539,6 +2548,30 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Ezarri goiko ertza soilik", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatikoa", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ertzik gabe", + "DE.Views.PrintWithPreview.textMarginsLast": "Azken pertsonalizatua", + "DE.Views.PrintWithPreview.textMarginsModerate": "Ertaina", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Estua", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normala", + "DE.Views.PrintWithPreview.txtAllPages": "Orri guztiak", + "DE.Views.PrintWithPreview.txtBottom": "Behean", + "DE.Views.PrintWithPreview.txtCurrentPage": "Uneko orria", + "DE.Views.PrintWithPreview.txtCustom": "Pertsonalizatua", + "DE.Views.PrintWithPreview.txtCustomPages": "Inprimatze pertsonalizatua", + "DE.Views.PrintWithPreview.txtLandscape": "Horizontala", + "DE.Views.PrintWithPreview.txtLeft": "Ezkerra", + "DE.Views.PrintWithPreview.txtMargins": "Marjinak", + "DE.Views.PrintWithPreview.txtOf": "{0}-(e)tik", + "DE.Views.PrintWithPreview.txtPage": "Orria", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Orrialde-zenbaki baliogabea", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orriaren orientazioa", + "DE.Views.PrintWithPreview.txtPages": "Orriak", + "DE.Views.PrintWithPreview.txtPageSize": "Orriaren tamaina", + "DE.Views.PrintWithPreview.txtPortrait": "Bertikala", + "DE.Views.PrintWithPreview.txtPrint": "Inprimatu", + "DE.Views.PrintWithPreview.txtPrintPdf": "Inprimatu PDFra", + "DE.Views.PrintWithPreview.txtPrintRange": "Inprimatu barrutia", + "DE.Views.PrintWithPreview.txtRight": "Eskuina", + "DE.Views.PrintWithPreview.txtSelection": "Hautapena", "DE.Views.ProtectDialog.textComments": "Iruzkinak", "DE.Views.ProtectDialog.textForms": "Formularioak betetzea", "DE.Views.ProtectDialog.textView": "Aldaketarik ez (irakurtzeko soilik)", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 3942e5d0c..47056b06b 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -1045,7 +1045,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Sijainti", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Henkilöt, joilla ovat oikeudet", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolit välilyönneillä", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Merkkiä välilyönneillä", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Tilastot", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolit", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Asiakirjan otsikko", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 3404ee030..50f9fae48 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -465,6 +465,7 @@ "Common.Views.Header.tipDownload": "Télécharger le fichier", "Common.Views.Header.tipGoEdit": "Modifier le fichier courant", "Common.Views.Header.tipPrint": "Imprimer le fichier", + "Common.Views.Header.tipPrintQuick": "Impression rapide", "Common.Views.Header.tipRedo": "Rétablir", "Common.Views.Header.tipSave": "Enregistrer", "Common.Views.Header.tipSearch": "Recherche", @@ -1102,6 +1103,9 @@ "DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", "DE.Controllers.Navigation.txtBeginning": "Début du document", "DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document", + "DE.Controllers.Print.textMarginsLast": "Derniers personnalisés", + "DE.Controllers.Print.txtCustom": "Personnalisé", + "DE.Controllers.Print.txtPrintRangeInvalid": "Plage d'impression non valide", "DE.Controllers.Search.notcriticalErrorTitle": "Avertissement", "DE.Controllers.Search.textNoTextFound": "Les données que vous recherchez n'ont pas pu être trouvées. Veuillez modifier vos options de recherche.", "DE.Controllers.Search.textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.", @@ -2020,6 +2024,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Surligner aucune modification", "DE.Views.FileMenuPanels.Settings.txtProofing": "Vérification", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afficher le bouton d'impression rapide dans l'en-tête de l'éditeur", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Le document sera imprimé sur la dernière imprimante sélectionnée ou par défaut", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Activer tout", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Activer toutes les macros sans notification", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Afficher le suivi des modifications", @@ -2577,6 +2583,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Seulement bordure supérieure", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Pas de bordures", + "DE.Views.PrintWithPreview.textMarginsLast": "Derniers personnalisés", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moyennes", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Étroites", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normales", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US normale", + "DE.Views.PrintWithPreview.textMarginsWide": "Larges", + "DE.Views.PrintWithPreview.txtAllPages": "Toutes les pages", + "DE.Views.PrintWithPreview.txtBottom": "Bas", + "DE.Views.PrintWithPreview.txtCurrentPage": "Page active", + "DE.Views.PrintWithPreview.txtCustom": "Personnalisé", + "DE.Views.PrintWithPreview.txtCustomPages": "Impression personnalisée", + "DE.Views.PrintWithPreview.txtLandscape": "Paysage", + "DE.Views.PrintWithPreview.txtLeft": "Gauche", + "DE.Views.PrintWithPreview.txtMargins": "Marges", + "DE.Views.PrintWithPreview.txtOf": "de {0}", + "DE.Views.PrintWithPreview.txtPage": "Page", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Numéro de page non valide", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientation de page", + "DE.Views.PrintWithPreview.txtPages": "Pages", + "DE.Views.PrintWithPreview.txtPageSize": "Taille de page", + "DE.Views.PrintWithPreview.txtPortrait": "Portrait", + "DE.Views.PrintWithPreview.txtPrint": "Imprimer", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimer au format PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Zone d'impression", + "DE.Views.PrintWithPreview.txtRight": "Droite", + "DE.Views.PrintWithPreview.txtSelection": "Sélection", + "DE.Views.PrintWithPreview.txtTop": "Haut", "DE.Views.ProtectDialog.textComments": "Commentaires", "DE.Views.ProtectDialog.textForms": "Remplissage des formulaires", "DE.Views.ProtectDialog.textReview": "Modifications", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 690700d25..c135d46dc 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Vertikális képlista", "Common.define.smartArt.textVerticalProcess": "Vertikális folyamat", "Common.Translation.textMoreButton": "Több", + "Common.Translation.tipFileLocked": "A dokumentum szerkesztésre zárolt. A módosításokat elvégezheti, és helyi másolatként később is elmentheti.", + "Common.Translation.tipFileReadOnly": "A dokumentum csak olvasható, szerkesztésre zárolt. A módosításokat később is elvégezheti és elmentheti a helyi másolatot.", "Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.", "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", "Common.Translation.warnFileLockedBtnView": "Megnyitva megtekintésre", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Eszköztár elrejtése", "Common.Views.Header.textHideLines": "Vonalzók elrejtése", "Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése", + "Common.Views.Header.textReadOnly": "Csak olvasható", "Common.Views.Header.textRemoveFavorite": "Eltávolítás a kedvencekből", "Common.Views.Header.textShare": "Megosztás", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Fájl letöltése", "Common.Views.Header.tipGoEdit": "Az aktuális fájl szerkesztése", "Common.Views.Header.tipPrint": "Fájl nyomtatása", + "Common.Views.Header.tipPrintQuick": "Gyorsnyomtatás", "Common.Views.Header.tipRedo": "Újra", "Common.Views.Header.tipSave": "Ment", "Common.Views.Header.tipSearch": "Keresés", @@ -831,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "A makró kérést intéz az URL-hez. Szeretné engedélyezni a kérést a %1-hoz?", "DE.Controllers.Main.textShape": "Alakzat", "DE.Controllers.Main.textStrict": "Biztonságos mód", + "DE.Controllers.Main.textTryQuickPrint": "Ön a gyorsnyomtatást választotta: a teljes dokumentum az előzőleg kiválasztott vagy alapértelmezett nyomtatóra kerül kinyomtatásra.
Szeretné folytatni?", "DE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", "DE.Controllers.Main.textTryUndoRedoWarn": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", "DE.Controllers.Main.textUndo": "Vissza", @@ -1104,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", "DE.Controllers.Navigation.txtBeginning": "Dokumentum eleje", "DE.Controllers.Navigation.txtGotoBeginning": "Ugorj a dokumentum elejére", + "DE.Controllers.Print.textMarginsLast": "Előző egyéni beállítások", + "DE.Controllers.Print.txtCustom": "Egyedi", + "DE.Controllers.Print.txtPrintRangeInvalid": "Érvénytelen nyomtatási tartomány", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Adjon meg egy oldalszámot vagy az oldalak tartományát (például 5-12). Vagy PDF-be nyomtathat.", "DE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés", "DE.Controllers.Search.textNoTextFound": "A keresett adatot nem sikerült megtalálni. Kérjük, módosítsa a keresési beállításokat.", "DE.Controllers.Search.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.", @@ -1953,10 +1962,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Verzió", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Szimbólumlomok szóközökkel", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Karakterek szóközökkel", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statisztika", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Tárgy", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Szimbólumok", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakterek", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Címkék", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Cím", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Feltöltve", @@ -2022,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Semmit nem mutat", "DE.Views.FileMenuPanels.Settings.txtProofing": "Korrigálás", "DE.Views.FileMenuPanels.Settings.txtPt": "Pont", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "A gyorsnyomtatás gomb megjelenítése a szerkesztő fejlécében", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "A dokumentum az utoljára kiválasztott vagy alapértelmezett nyomtatón kerül kinyomtatásra.", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Összes engedélyezése", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Minden értesítés nélküli makró engedélyezése", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Sávváltozások megjelenítése", @@ -2579,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek", + "DE.Views.PrintWithPreview.textMarginsLast": "Legutóbbi egyéni beállítás", + "DE.Views.PrintWithPreview.textMarginsModerate": "Mérsékelt", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Keskeny", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normál", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "Normál (USA)", + "DE.Views.PrintWithPreview.textMarginsWide": "Széles", + "DE.Views.PrintWithPreview.txtAllPages": "Minden oldal", + "DE.Views.PrintWithPreview.txtBottom": "Alul", + "DE.Views.PrintWithPreview.txtCurrentPage": "Aktuális oldal", + "DE.Views.PrintWithPreview.txtCustom": "Egyedi", + "DE.Views.PrintWithPreview.txtCustomPages": "Egyedi nyomtatás", + "DE.Views.PrintWithPreview.txtLandscape": "Fekvő", + "DE.Views.PrintWithPreview.txtLeft": "Bal", + "DE.Views.PrintWithPreview.txtMargins": "Margók", + "DE.Views.PrintWithPreview.txtOf": "-ból/ből {0}", + "DE.Views.PrintWithPreview.txtPage": "Oldal", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Hibás oldalszám", + "DE.Views.PrintWithPreview.txtPageOrientation": "Lap elrendezés", + "DE.Views.PrintWithPreview.txtPages": "Oldalak", + "DE.Views.PrintWithPreview.txtPageSize": "Oldal méret", + "DE.Views.PrintWithPreview.txtPortrait": "Álló", + "DE.Views.PrintWithPreview.txtPrint": "Nyomtatás", + "DE.Views.PrintWithPreview.txtPrintPdf": "Nyomtatás PDF-be", + "DE.Views.PrintWithPreview.txtPrintRange": "Nyomtatási tartomány", + "DE.Views.PrintWithPreview.txtRight": "Jobb", + "DE.Views.PrintWithPreview.txtSelection": "Választás", + "DE.Views.PrintWithPreview.txtTop": "Felső", "DE.Views.ProtectDialog.textComments": "Megjegyzések", "DE.Views.ProtectDialog.textForms": "Nyomtatványok kitöltése", "DE.Views.ProtectDialog.textReview": "Követett változások", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 3a598bd36..0f8337bf4 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ", "Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք", "Common.Translation.textMoreButton": "Ավել", + "Common.Translation.tipFileLocked": "Փաստաթուղթը կողպված է խմբագրման համար:Դուք կարող եք փոփոխություններ կատարել և հետագայում պահպանել այն որպես տեղական պատճեն:", + "Common.Translation.tipFileReadOnly": "Փաստաթուղթը միայն կարդալու է և կողպված է խմբագրման համար:ուք կարող եք փոփոխություններ կատարել ևպահպանել դրա տեղային պատճենն ավելի ուշ :", "Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Թաքցնել գործիքագոտին", "Common.Views.Header.textHideLines": "Թաքցնել քանոնները", "Common.Views.Header.textHideStatusBar": "Թաքցնել վիճակագոտին", + "Common.Views.Header.textReadOnly": "Միայն կարդալու", "Common.Views.Header.textRemoveFavorite": "Ջնջել ընտրված ցուցակից", "Common.Views.Header.textShare": "Տարածել", "Common.Views.Header.textZoom": "Խոշորացնել", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Ներբեռնել ֆայլը", "Common.Views.Header.tipGoEdit": "Խմբագրել ընթացիկ ֆայլը", "Common.Views.Header.tipPrint": "Տպել ֆայլը", + "Common.Views.Header.tipPrintQuick": "Արագ տպում", "Common.Views.Header.tipRedo": "Վերարկել", "Common.Views.Header.tipSave": "Պահպանել", "Common.Views.Header.tipSearch": "Որոնել", @@ -612,6 +616,7 @@ "Common.Views.ReviewPopover.textCancel": "Չեղարկել", "Common.Views.ReviewPopover.textClose": "Փակել", "Common.Views.ReviewPopover.textEdit": "Լավ", + "Common.Views.ReviewPopover.textEnterComment": "Այստեղ մուտքագրել Ձեր մեկնաբանությունը", "Common.Views.ReviewPopover.textFollowMove": "Վերադառնալ սկզբնական վայր", "Common.Views.ReviewPopover.textMention": "+նշումը թույլ կտա մուտք գործել փաստաթուղթ և ուղարկել էլ․ նամակ", "Common.Views.ReviewPopover.textMentionNotify": "+նշումը օգտատիրոջը կտեղեկացնի էլ.փոստի միջոցով", @@ -726,6 +731,7 @@ "DE.Controllers.Main.downloadTitleText": "Փաստաթղթի ներբեռնում", "DE.Controllers.Main.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։
Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։", "DE.Controllers.Main.errorBadImageUrl": "Նկարի URL-ը սխալ է", + "DE.Controllers.Main.errorCannotPasteImg": "Մենք չենք կարող տեղադրել այս պատկերը Սեղմատախտակից, բայց դուք կարող եք պահել այն ձեր սարքում և տեղադրել այնտեղից, կամ կարող եք պատճենել պատկերն առանց տեքստի և տեղադրել այն փաստաթղթում:", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Սպասարկիչի հետ կապն ընդհատվել է։ Փաստաթուղթն այս պահին չի կարող խմբագրվել։", "DE.Controllers.Main.errorComboSeries": "Համակցված աղյուսակ ստեղծելու համար ընտրել տվյալների առնվազն երկու շարք:", "DE.Controllers.Main.errorCompare": "Համեմատել փաստաթղթերի գործառույթը հնարավոր չէ համատեղ խմբագրելիս:", @@ -829,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:", "DE.Controllers.Main.textShape": "Պատկեր", "DE.Controllers.Main.textStrict": "Խիստ աշխատակարգ", + "DE.Controllers.Main.textTryQuickPrint": "Դուք ընտրել եք Արագ տպում` ամբողջ փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա:
Ցանկանու՞մ եք շարունակել։", "DE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։
«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել լրացուցիչ կարգավորումների միջոցով։", "DE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:", "DE.Controllers.Main.textUndo": "Հետարկել", @@ -1102,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս ֆայլը։", "DE.Controllers.Navigation.txtBeginning": "Փաստաթղթի սկիզբ", "DE.Controllers.Navigation.txtGotoBeginning": "Գնալ փաստաթղթի սկիզբ", + "DE.Controllers.Print.textMarginsLast": "Վերջին օգտագործումը", + "DE.Controllers.Print.txtCustom": "Հարմարեցված", + "DE.Controllers.Print.txtPrintRangeInvalid": "Տպման անվավեր տիրույթ", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Մուտքագրեք կա՛մ մեկ էջի համար, կա՛մ մեկ էջի տիրույթ (օրինակ՝ 5-12): Կամ կարող եք տպել PDF-ով:", "DE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում", "DE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:", "DE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:", @@ -2020,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Ոչ մեկ չդիտել", "DE.Views.FileMenuPanels.Settings.txtProofing": "Ստուգում ", "DE.Views.FileMenuPanels.Settings.txtPt": "Կետ", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Ցուցադրել «Արագ տպել» կոճակը խմբագրի վերնագրում", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Միացնել բոլորը", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Առանց ծանուցման միացնել բոլոր մակրոները", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Ցույց տալ հետագծի փոփոխությունները", @@ -2577,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Սահմանել միայն վերին եզրագիծը", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի", + "DE.Views.PrintWithPreview.textMarginsLast": "Վերջին օգտագործումը", + "DE.Views.PrintWithPreview.textMarginsModerate": "Չափավոր", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Նեղ", + "DE.Views.PrintWithPreview.textMarginsNormal": "Սովորական", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "ԱՄՆ նորմալ", + "DE.Views.PrintWithPreview.textMarginsWide": "Լայն", + "DE.Views.PrintWithPreview.txtAllPages": "Բոլոր էջեր", + "DE.Views.PrintWithPreview.txtBottom": "Ներքև", + "DE.Views.PrintWithPreview.txtCurrentPage": "Ընթացիկ էջ", + "DE.Views.PrintWithPreview.txtCustom": "Հարմարեցված", + "DE.Views.PrintWithPreview.txtCustomPages": "Հարմարեցված տպագրություն", + "DE.Views.PrintWithPreview.txtLandscape": "Հորիզոնական", + "DE.Views.PrintWithPreview.txtLeft": "Ձախ", + "DE.Views.PrintWithPreview.txtMargins": "Լուսանցքներ", + "DE.Views.PrintWithPreview.txtOf": "{0}-ից", + "DE.Views.PrintWithPreview.txtPage": "Էջ", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Էջի համարն անվավեր է", + "DE.Views.PrintWithPreview.txtPageOrientation": "Էջի կողմնորոշում", + "DE.Views.PrintWithPreview.txtPages": "Էջեր", + "DE.Views.PrintWithPreview.txtPageSize": "Էջի չափ", + "DE.Views.PrintWithPreview.txtPortrait": "Ուղղաձիգ ", + "DE.Views.PrintWithPreview.txtPrint": "Տպել", + "DE.Views.PrintWithPreview.txtPrintPdf": "Տպել PDF-ով", + "DE.Views.PrintWithPreview.txtPrintRange": "Տպման տիրույթ", + "DE.Views.PrintWithPreview.txtRight": "Աջ", + "DE.Views.PrintWithPreview.txtSelection": "Ընտրություն", + "DE.Views.PrintWithPreview.txtTop": "Վերև", "DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ", "DE.Views.ProtectDialog.textForms": "Լրացվող ձևեր", "DE.Views.ProtectDialog.textReview": "Հետագծված փոփոխություններ", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index f52f25a29..f6eae0e62 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal", "Common.define.smartArt.textVerticalProcess": "Proses Vertikal", "Common.Translation.textMoreButton": "Lainnya", + "Common.Translation.tipFileLocked": "Dokumen terkunci untuk diedit. Anda dapat membuat perubahan dan menyimpannya sebagai salinan lokal nanti.", + "Common.Translation.tipFileReadOnly": "Dokumen hanya dapat dibaca. Untuk menyimpan perubahan Anda, simpan file dengan nama baru atau di tempat lain.", "Common.Translation.warnFileLocked": "Anda tidak bisa edit file ini karena sedang di edit di aplikasi lain.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Sembunyikan Toolbar", "Common.Views.Header.textHideLines": "Sembunyikan Mistar", "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textReadOnly": "Hanya baca", "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", "Common.Views.Header.textShare": "Bagikan", "Common.Views.Header.textZoom": "Pembesaran", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Unduh File", "Common.Views.Header.tipGoEdit": "Edit file saat ini", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Cetak cepat", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipSearch": "Cari", @@ -612,6 +616,7 @@ "Common.Views.ReviewPopover.textCancel": "Batalkan", "Common.Views.ReviewPopover.textClose": "Tutup", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Tuliskan komentar Anda di sini", "Common.Views.ReviewPopover.textFollowMove": "Ikuti pergerakan", "Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email", "Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email", @@ -726,6 +731,7 @@ "DE.Controllers.Main.downloadTitleText": "Mengunduh Dokumen", "DE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", "DE.Controllers.Main.errorBadImageUrl": "URL Gambar salah", + "DE.Controllers.Main.errorCannotPasteImg": "Kami tak bisa menempel gambar ini dari Papan Klip, tapi Anda dapat menyimpannya\nke perangkat Anda dan menyisipkannya dari sana, atau Anda dapat menyalin gambar\ntanpa teks dan menempelkannya ke dalam dokumen.", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.", "DE.Controllers.Main.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", "DE.Controllers.Main.errorCompare": "Fitur Membandingkan Dokumen tidak tersedia saat co-editing. ", @@ -829,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?", "DE.Controllers.Main.textShape": "Bentuk", "DE.Controllers.Main.textStrict": "Mode strict", + "DE.Controllers.Main.textTryQuickPrint": "Anda telah memilih Cetak cepat: seluruh dokumen akan dicetak pada printer yang terakhir dipilih atau baku.
Apakah Anda hendak melanjutkan?", "DE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", "DE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", "DE.Controllers.Main.textUndo": "Batalkan", @@ -1102,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", "DE.Controllers.Navigation.txtBeginning": "Awal dokumen", "DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke awal dokumen", + "DE.Controllers.Print.textMarginsLast": "Ubahan Terakhir", + "DE.Controllers.Print.txtCustom": "Ubahan", + "DE.Controllers.Print.txtPrintRangeInvalid": "Rentang cetak tidak valid", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Masukkan satu nomor halaman atau satu rentang halaman (misalnya, 5-12). Atau Anda bisa Cetak ke PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Peringatan", "DE.Controllers.Search.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", "DE.Controllers.Search.textReplaceSkipped": "Penggantian telah dilakukan. {0} kemunculan telah dilewatkan.", @@ -1951,10 +1962,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versi PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan spasi", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Karakter dengan spasi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakter", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", @@ -2020,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Tidak Ada yang Dilihat", "DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "DE.Views.FileMenuPanels.Settings.txtPt": "Titik", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Tampilkan tombol Cetak Cepat dalam header editor", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Dokumen akan", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktifkan Semua", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Tampilkan pelacak perubahan", @@ -2219,7 +2232,7 @@ "DE.Views.ImageSettingsAdvanced.textHeight": "Tinggi", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horisontal", "DE.Views.ImageSettingsAdvanced.textHorizontally": "Secara Horizontal", - "DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan Tipe", + "DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan tipe", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporsi Konstan", "DE.Views.ImageSettingsAdvanced.textLeft": "Kiri", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Margin kiri", @@ -2529,8 +2542,8 @@ "DE.Views.ParagraphSettingsAdvanced.textCentered": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi antar karakter", "DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual", - "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan", - "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, Bersejarah, dan", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan diskresioner", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, historis, dan diskresioner", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan bersejarah", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab baku", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Diskresional", @@ -2539,7 +2552,7 @@ "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung", "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Bersejarah", - "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Bersejarah dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historis dan diskresioner", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", @@ -2556,10 +2569,10 @@ "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spasi", "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standar saja", "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standar dan kontekstual", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, Kontekstual, dan Diskresional", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, Kontekstual, dan Bersejarah", - "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan Diskresional", - "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, Bersejarah, dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, kontekstual, dan diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, kontekstual, dan historis", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, historis, dan diskresioner", "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standar dan bersejarah", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri", @@ -2577,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Buat Pembatas Atas Saja", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.PrintWithPreview.textMarginsLast": "Ubahan Terakhir", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderat", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Sempit", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Lebar", + "DE.Views.PrintWithPreview.txtAllPages": "Semua halaman", + "DE.Views.PrintWithPreview.txtBottom": "Bawah", + "DE.Views.PrintWithPreview.txtCurrentPage": "Halaman saat ini", + "DE.Views.PrintWithPreview.txtCustom": "Ubahan", + "DE.Views.PrintWithPreview.txtCustomPages": "Cetak khusus", + "DE.Views.PrintWithPreview.txtLandscape": "Lansekap", + "DE.Views.PrintWithPreview.txtLeft": "Kiri", + "DE.Views.PrintWithPreview.txtMargins": "Margin", + "DE.Views.PrintWithPreview.txtOf": "dari {0}", + "DE.Views.PrintWithPreview.txtPage": "Halaman", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman tidak valid", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientasi halaman", + "DE.Views.PrintWithPreview.txtPages": "Halaman", + "DE.Views.PrintWithPreview.txtPageSize": "Ukuran halaman", + "DE.Views.PrintWithPreview.txtPortrait": "Potret", + "DE.Views.PrintWithPreview.txtPrint": "Cetak", + "DE.Views.PrintWithPreview.txtPrintPdf": "Cetak ke PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Rentang cetak", + "DE.Views.PrintWithPreview.txtRight": "Kanan", + "DE.Views.PrintWithPreview.txtSelection": "Pilihan", + "DE.Views.PrintWithPreview.txtTop": "Atas", "DE.Views.ProtectDialog.textComments": "Komentar", "DE.Views.ProtectDialog.textForms": "Formulir isian", "DE.Views.ProtectDialog.textReview": "Perubahan terlacak", @@ -3111,7 +3151,7 @@ "DE.Views.Toolbar.tipPageSize": "Ukuran Halaman", "DE.Views.Toolbar.tipParagraphStyle": "Model Paragraf", "DE.Views.Toolbar.tipPaste": "Tempel", - "DE.Views.Toolbar.tipPrColor": "Warna Latar Paragraf", + "DE.Views.Toolbar.tipPrColor": "Bayangan", "DE.Views.Toolbar.tipPrint": "Cetak", "DE.Views.Toolbar.tipRedo": "Ulangi", "DE.Views.Toolbar.tipSave": "Simpan", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 6656ea399..6f9254120 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1767,10 +1767,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "‎Versione PDF‎", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone che hanno diritti", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboli compresi spazi", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caratteri compresi spazi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caratteri", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 8ab147eb6..1523c9720 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "縦方向画像リスト", "Common.define.smartArt.textVerticalProcess": "縦方向ステップ", "Common.Translation.textMoreButton": "もっと", + "Common.Translation.tipFileLocked": "ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。", + "Common.Translation.tipFileReadOnly": "ドキュメントは閲覧用で、編集はロックされています。後で変更し、そのローカルコピーを保存することができます。", "Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", "Common.Translation.warnFileLockedBtnView": "閲覧するために開く", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "ツールバーを表示しない", "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", + "Common.Views.Header.textReadOnly": "閲覧のみ", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", "Common.Views.Header.textShare": "共有", "Common.Views.Header.textZoom": "ズーム", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "ファイルをダウンロード", "Common.Views.Header.tipGoEdit": "現在のファイルを編集する", "Common.Views.Header.tipPrint": "ファイルを印刷する", + "Common.Views.Header.tipPrintQuick": "クイックプリント", "Common.Views.Header.tipRedo": "やり直し", "Common.Views.Header.tipSave": "保存する", "Common.Views.Header.tipSearch": "検索", @@ -829,6 +833,7 @@ "DE.Controllers.Main.textRequestMacros": "マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?", "DE.Controllers.Main.textShape": "図形", "DE.Controllers.Main.textStrict": "厳格モード", + "DE.Controllers.Main.textTryQuickPrint": "クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?", "DE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。", "DE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。", "DE.Controllers.Main.textUndo": "元に戻す", @@ -1102,6 +1107,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", "DE.Controllers.Navigation.txtBeginning": "文書の先頭", "DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する", + "DE.Controllers.Print.textMarginsLast": "最後に適用した設定", + "DE.Controllers.Print.txtCustom": "ユーザー設定", + "DE.Controllers.Print.txtPrintRangeInvalid": "無効な印刷範囲", + "DE.Controllers.Print.txtPrintRangeSingleRange": "ページ番号のみ、またはページ範囲のみを入力してください(例: 5-12)。または、PDFに印刷することもできます。", "DE.Controllers.Search.notcriticalErrorTitle": " 警告", "DE.Controllers.Search.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", "DE.Controllers.Search.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", @@ -1951,10 +1960,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDFのバージョン", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "場所", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を有する者", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "スペースを含む記号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "文字数 (スペースを含む)", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "件名", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "記号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "文字数", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "タグ", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "タイトル", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "アップロード済み", @@ -2020,6 +2029,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "表示なし", "DE.Views.FileMenuPanels.Settings.txtProofing": "校正", "DE.Views.FileMenuPanels.Settings.txtPt": "ポイント", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "クイックプリントボタンをエディタヘッダーに表示", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "最後に選択した、またはデフォルトのプリンターで印刷されます。", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "全てを有効にする", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "全てのマクロを有効にして、通知しない", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "変更履歴を表示する", @@ -2577,6 +2588,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし", + "DE.Views.PrintWithPreview.textMarginsLast": "最後に適用した設定", + "DE.Views.PrintWithPreview.textMarginsModerate": "中", + "DE.Views.PrintWithPreview.textMarginsNarrow": "狭い", + "DE.Views.PrintWithPreview.textMarginsNormal": "標準", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "ノーマル(アメリカの標準)", + "DE.Views.PrintWithPreview.textMarginsWide": "広い", + "DE.Views.PrintWithPreview.txtAllPages": "全ページ", + "DE.Views.PrintWithPreview.txtBottom": "下", + "DE.Views.PrintWithPreview.txtCurrentPage": "現在のページ", + "DE.Views.PrintWithPreview.txtCustom": "ユーザー設定", + "DE.Views.PrintWithPreview.txtCustomPages": "カスタム印刷", + "DE.Views.PrintWithPreview.txtLandscape": "横", + "DE.Views.PrintWithPreview.txtLeft": "左", + "DE.Views.PrintWithPreview.txtMargins": "余白", + "DE.Views.PrintWithPreview.txtOf": "{0}から", + "DE.Views.PrintWithPreview.txtPage": "ページ", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "ページ番号が正しくありません。", + "DE.Views.PrintWithPreview.txtPageOrientation": "印刷の向き", + "DE.Views.PrintWithPreview.txtPages": "ページ", + "DE.Views.PrintWithPreview.txtPageSize": "ページのサイズ", + "DE.Views.PrintWithPreview.txtPortrait": "縦", + "DE.Views.PrintWithPreview.txtPrint": "印刷", + "DE.Views.PrintWithPreview.txtPrintPdf": "PDFに印刷", + "DE.Views.PrintWithPreview.txtPrintRange": "印刷範囲\t", + "DE.Views.PrintWithPreview.txtRight": "右", + "DE.Views.PrintWithPreview.txtSelection": "選択", + "DE.Views.PrintWithPreview.txtTop": "上", "DE.Views.ProtectDialog.textComments": "コメント", "DE.Views.ProtectDialog.textForms": "フォームの入力", "DE.Views.ProtectDialog.textReview": "変更履歴", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index c3974d4ce..20850928d 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -1054,7 +1054,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Rindkopu", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Vieta", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas kuriem ir tiesības", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbolu ar atstarpiem", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Rakstzīmes ar atstarpiem", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistika", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbolu", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokumentu nosaukums", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index fc5dd91d8..633baff59 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -1733,10 +1733,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF versie", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolen met spaties", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Tekens met spaties", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistieken", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Onderwerp", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolen", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Tekens", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Geupload", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Woorden", diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json index d0d1dec5e..6d7617513 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -942,6 +942,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.", "DE.Controllers.Navigation.txtBeginning": "Início do documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", + "DE.Controllers.Print.txtCustom": "Personalizado", "DE.Controllers.Search.notcriticalErrorTitle": "Aviso", "DE.Controllers.Search.textNoTextFound": "Não foi possível localizar os dados procurados. Ajuste as opções de pesquisa.", "DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", @@ -1791,10 +1792,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versão PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos com espaços", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Carateres com espaços", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Carateres", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", @@ -2417,6 +2418,9 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas contorno superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem contornos", + "DE.Views.PrintWithPreview.txtAllPages": "Todas as páginas", + "DE.Views.PrintWithPreview.txtCustom": "Personalizado", + "DE.Views.PrintWithPreview.txtLeft": "Esquerda", "DE.Views.ProtectDialog.textComments": "Comentários", "DE.Views.ProtectDialog.textForms": "Preenchimento de formulários", "DE.Views.ProtectDialog.textReview": "Alterações rastreadas", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 81f60175f..eed49c164 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Lista de imagens verticais", "Common.define.smartArt.textVerticalProcess": "Processo Vertical", "Common.Translation.textMoreButton": "Mais", + "Common.Translation.tipFileLocked": "O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.", + "Common.Translation.tipFileReadOnly": "O documento é somente leitura e está bloqueado para edição. Você pode fazer alterações e salvar sua cópia local posteriormente.", "Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Ocultar Barra de Ferramentas", "Common.Views.Header.textHideLines": "Ocultar Réguas", "Common.Views.Header.textHideStatusBar": "Ocultar Barra de Status", + "Common.Views.Header.textReadOnly": "Somente leitura", "Common.Views.Header.textRemoveFavorite": "Remover dos Favoritos", "Common.Views.Header.textShare": "Compartilhar", "Common.Views.Header.textZoom": "Ampliação", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Baixar arquivo", "Common.Views.Header.tipGoEdit": "Editar arquivo atual", "Common.Views.Header.tipPrint": "Imprimir arquivo", + "Common.Views.Header.tipPrintQuick": "Impressão rápida", "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Gravar", "Common.Views.Header.tipSearch": "Pesquisar", @@ -831,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "Uma macro faz uma solicitação para URL. Deseja permitir a solicitação para %1?", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modo estrito", + "DE.Controllers.Main.textTryQuickPrint": "Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.
Deseja continuar?", "DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",", "DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido", "DE.Controllers.Main.textUndo": "Desfazer", @@ -1104,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", "DE.Controllers.Navigation.txtBeginning": "Início do documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", + "DE.Controllers.Print.textMarginsLast": "Últimos personalizados", + "DE.Controllers.Print.txtCustom": "Personalizado", + "DE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impressão inválido", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Digite um único número de página ou um único intervalo de páginas (por exemplo, 5-12). Ou você pode imprimir em PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Aviso", "DE.Controllers.Search.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.", "DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", @@ -2022,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Visualizar nenhum", "DE.Views.FileMenuPanels.Settings.txtProofing": "Revisão", "DE.Views.FileMenuPanels.Settings.txtPt": "Ponto", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar o botão Impressão rápida no cabeçalho do editor", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "O documento será impresso na última impressora selecionada ou padrão", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todos", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas as macros sem uma notificação", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar alterações de faixa", @@ -2579,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas borda superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem bordas", + "DE.Views.PrintWithPreview.textMarginsLast": "Últimos personalizados", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderado", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Estreito", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Amplo", + "DE.Views.PrintWithPreview.txtAllPages": "Todas as páginas", + "DE.Views.PrintWithPreview.txtBottom": "Inferior", + "DE.Views.PrintWithPreview.txtCurrentPage": "Pagina atual", + "DE.Views.PrintWithPreview.txtCustom": "Personalizado", + "DE.Views.PrintWithPreview.txtCustomPages": "Impressão personalizada", + "DE.Views.PrintWithPreview.txtLandscape": "Paisagem", + "DE.Views.PrintWithPreview.txtLeft": "Esquerda", + "DE.Views.PrintWithPreview.txtMargins": "Margens", + "DE.Views.PrintWithPreview.txtOf": "de {0}", + "DE.Views.PrintWithPreview.txtPage": "Página", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Número da página inválido", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientação da página", + "DE.Views.PrintWithPreview.txtPages": "Páginas", + "DE.Views.PrintWithPreview.txtPageSize": "Tamanho da página", + "DE.Views.PrintWithPreview.txtPortrait": "Retrato ", + "DE.Views.PrintWithPreview.txtPrint": "Imprimir", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir em PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo", + "DE.Views.PrintWithPreview.txtRight": "Direita", + "DE.Views.PrintWithPreview.txtSelection": "Seleção", + "DE.Views.PrintWithPreview.txtTop": "Parte superior", "DE.Views.ProtectDialog.textComments": "Comentários", "DE.Views.ProtectDialog.textForms": "Preenchimento de formulários", "DE.Views.ProtectDialog.textReview": "Mudanças rastreadas", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index f33203725..bb76d0114 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Listă verticală imagine", "Common.define.smartArt.textVerticalProcess": "Proces vertical", "Common.Translation.textMoreButton": "Mai multe", + "Common.Translation.tipFileLocked": "Acest document este blocat pentru editare. Îl puteți modifica și salva mai târziu ca o copie pe unitatea locală.", + "Common.Translation.tipFileReadOnly": "Documentul este disponibil doar în citire și este blocat pentru editare. Puteți îl modifica și salva mai târziu ca o copie pe unitatea locală.", "Common.Translation.warnFileLocked": "Nu puteți edita fișierul deoarece el este editat într-o altă aplicație. ", "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Ascunde bară de instrumente", "Common.Views.Header.textHideLines": "Ascundere rigle", "Common.Views.Header.textHideStatusBar": "Ascundere bară de stare", + "Common.Views.Header.textReadOnly": "Doar în citire", "Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe", "Common.Views.Header.textShare": "Partajează", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Descărcare fișier", "Common.Views.Header.tipGoEdit": "Editare acest fișier", "Common.Views.Header.tipPrint": "Se imprimă tot fișierul", + "Common.Views.Header.tipPrintQuick": "Imprimare rapidă", "Common.Views.Header.tipRedo": "Refacere", "Common.Views.Header.tipSave": "Salvează", "Common.Views.Header.tipSearch": "Căutare", @@ -831,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "O macrocomandă trimite o solicitare URL. Doriți să permiteți ca solicitarea să fie trimisă către %1?", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modul strict", + "DE.Controllers.Main.textTryQuickPrint": "Dvs v-ați ales opțiunea de Imprimare rapidă: imprimanta este setată se inprime un document întreg este ultima imprimantă utilizată sau imprimantă implicită.
Doriți să continuați?", "DE.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ă. ", "DE.Controllers.Main.textTryUndoRedoWarn": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "DE.Controllers.Main.textUndo": "Anulare", @@ -1104,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", "DE.Controllers.Navigation.txtBeginning": "Începutul documentului", "DE.Controllers.Navigation.txtGotoBeginning": "Salt la începutul documentului", + "DE.Controllers.Print.textMarginsLast": "Ultima setare particularizată", + "DE.Controllers.Print.txtCustom": "Particularizat", + "DE.Controllers.Print.txtPrintRangeInvalid": "Interval de imprimare incorect", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Introduceți un număr de pagină sau un interval de pagini (ex. 5 - 12). Încă mai puteți utiliza opțiunea Imprimare în PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Avertisment", "DE.Controllers.Search.textNoTextFound": "Datele căutate nu au fost găsite. Alegeți alte opțiuni de căutare.", "DE.Controllers.Search.textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", @@ -2022,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Nu vizualiza nimic", "DE.Views.FileMenuPanels.Settings.txtProofing": "Verificare", "DE.Views.FileMenuPanels.Settings.txtPt": "Punct", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afișează butonul Imprimare rapidă în antetul aplicației de editare", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Imprimanta este setată se imprime documentul este ultima imprimantă utilizată sau imprimantă implicită", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Se activează toate", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Se activează toate macrocomenzile, fără notificare", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Afișare urmărire modificări", @@ -2579,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Adăugare numai bordură de sus", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Fără borduri", + "DE.Views.PrintWithPreview.textMarginsLast": "Ultima setare particularizată", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderat", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Îngust", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Lat", + "DE.Views.PrintWithPreview.txtAllPages": "Toate paginile", + "DE.Views.PrintWithPreview.txtBottom": "Jos", + "DE.Views.PrintWithPreview.txtCurrentPage": "Pagina curentă", + "DE.Views.PrintWithPreview.txtCustom": "Particularizat", + "DE.Views.PrintWithPreview.txtCustomPages": "Imprimare particularizată", + "DE.Views.PrintWithPreview.txtLandscape": "Vedere", + "DE.Views.PrintWithPreview.txtLeft": "Stânga", + "DE.Views.PrintWithPreview.txtMargins": "Margini", + "DE.Views.PrintWithPreview.txtOf": "din {0}", + "DE.Views.PrintWithPreview.txtPage": "Pagina", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Număr de pagină nevalid", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientare pagină", + "DE.Views.PrintWithPreview.txtPages": "Pagini", + "DE.Views.PrintWithPreview.txtPageSize": "Dimensiune pagină", + "DE.Views.PrintWithPreview.txtPortrait": "Portret", + "DE.Views.PrintWithPreview.txtPrint": "Imprimare", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimare în PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Interval de imprimare", + "DE.Views.PrintWithPreview.txtRight": "Dreapta", + "DE.Views.PrintWithPreview.txtSelection": "Selecție", + "DE.Views.PrintWithPreview.txtTop": "Sus", "DE.Views.ProtectDialog.textComments": "Comentarii", "DE.Views.ProtectDialog.textForms": "Completarea formularelor", "DE.Views.ProtectDialog.textReview": "Modificări urmărite", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index b07265c31..8d456eddd 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1633,6 +1633,12 @@ "DE.Views.DocProtection.txtDocProtectedView": "Документ защищен.
Вы можете только просматривать этот документ.", "DE.Views.DocProtection.txtDocUnlockDescription": "Введите пароль, чтобы снять защиту документа", "DE.Views.DocProtection.txtProtectDoc": "Защитить документ", + "DE.Views.DocProtection.txtUnlockTitle": "Снять защиту документа", + "DE.Views.DocProtection.txtWasProtectedComment": "Документ защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.", + "DE.Views.DocProtection.txtWasProtectedForms": "Документ защищен другим пользователем.\nВы можете только заполнять формы в этом документе.", + "DE.Views.DocProtection.txtWasProtectedTrack": "Документ защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Views.DocProtection.txtWasProtectedView": "Документ защищен другим пользователем.\nВы можете только просматривать этот документ.", + "DE.Views.DocProtection.txtWasUnprotected": "Защита документа снята.", "DE.Views.DocumentHolder.aboveText": "Выше", "DE.Views.DocumentHolder.addCommentText": "Добавить комментарий", "DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы", @@ -1962,10 +1968,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Версия PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символы с пробелами", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Знаков с пробелами", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символы", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Знаков", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Теги", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен", @@ -2590,18 +2596,6 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Задать только верхнюю границу", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Без границ", - "DE.Views.ProtectDialog.textComments": "Комментарии", - "DE.Views.ProtectDialog.textForms": "Заполнение форм", - "DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения", - "DE.Views.ProtectDialog.textView": "Только чтение", - "DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа", - "DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают", - "DE.Views.ProtectDialog.txtOptional": "необязательно", - "DE.Views.ProtectDialog.txtPassword": "Пароль", - "DE.Views.ProtectDialog.txtProtect": "Защитить", - "DE.Views.ProtectDialog.txtRepeat": "Повторить пароль", - "DE.Views.ProtectDialog.txtTitle": "Защитить", - "DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.", "DE.Views.PrintWithPreview.textMarginsLast": "Последние настраиваемые", "DE.Views.PrintWithPreview.textMarginsModerate": "Средние", "DE.Views.PrintWithPreview.textMarginsNarrow": "Узкие", @@ -2629,6 +2623,18 @@ "DE.Views.PrintWithPreview.txtRight": "Правое", "DE.Views.PrintWithPreview.txtSelection": "Выделенный фрагмент", "DE.Views.PrintWithPreview.txtTop": "Верхнее", + "DE.Views.ProtectDialog.textComments": "Комментарии", + "DE.Views.ProtectDialog.textForms": "Заполнение форм", + "DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения", + "DE.Views.ProtectDialog.textView": "Только чтение", + "DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают", + "DE.Views.ProtectDialog.txtOptional": "необязательно", + "DE.Views.ProtectDialog.txtPassword": "Пароль", + "DE.Views.ProtectDialog.txtProtect": "Защитить", + "DE.Views.ProtectDialog.txtRepeat": "Повторить пароль", + "DE.Views.ProtectDialog.txtTitle": "Защитить", + "DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.", "DE.Views.RightMenu.txtChartSettings": "Параметры диаграммы", "DE.Views.RightMenu.txtFormSettings": "Параметры формы", "DE.Views.RightMenu.txtHeaderFooterSettings": "Параметры верхнего и нижнего колонтитулов", @@ -2730,12 +2736,12 @@ "DE.Views.Statusbar.tipZoomIn": "Увеличить", "DE.Views.Statusbar.tipZoomOut": "Уменьшить", "DE.Views.Statusbar.txtPageNumInvalid": "Неправильный номер страницы", - "DE.Views.Statusbar.txtWordCount": "Количество слов", "DE.Views.Statusbar.txtPages": "Страницы", - "DE.Views.Statusbar.txtWords": "Слова", "DE.Views.Statusbar.txtParagraphs": "Абзацы", + "DE.Views.Statusbar.txtSpaces": "Символы и пробелы", "DE.Views.Statusbar.txtSymbols": "Символы", - "DE.Views.Statusbar.txtSpaces": "Символы с пробелами", + "DE.Views.Statusbar.txtWordCount": "Количество слов", + "DE.Views.Statusbar.txtWords": "Слова", "DE.Views.StyleTitleDialog.textHeader": "Создание нового стиля", "DE.Views.StyleTitleDialog.textNextStyle": "Стиль следующего абзаца", "DE.Views.StyleTitleDialog.textTitle": "Название", @@ -3159,6 +3165,7 @@ "DE.Views.Toolbar.tipPaste": "Вставить", "DE.Views.Toolbar.tipPrColor": "Заливка", "DE.Views.Toolbar.tipPrint": "Печать", + "DE.Views.Toolbar.tipPrintQuick": "Быстрая печать", "DE.Views.Toolbar.tipRedo": "Повторить", "DE.Views.Toolbar.tipSave": "Сохранить", "DE.Views.Toolbar.tipSaveCoauth": "Сохраните свои изменения, чтобы другие пользователи их увидели.", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index acdc7974a..c31558763 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -1694,10 +1694,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odseky", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s medzerami", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Znaky s medzerami", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Štatistiky", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Znaky", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slová", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 73889d8a0..789fa36ac 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -1755,10 +1755,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF-version", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Placering", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personer som har behörigheter", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboler med mellanrum", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Tecken med mellanrum", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Ämne", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Tecken", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiketter", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uppladdad", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index cf663d5c7..8e50494e8 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1946,10 +1946,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF版", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "带空格的符号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "字符数(计空格)", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "字符数(不计空格)", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "标签", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 2982b32c8..8884e3f77 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -410,6 +410,8 @@ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste", "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess", "Common.Translation.textMoreButton": "Mehr", + "Common.Translation.tipFileLocked": "Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und es später als lokale Kopie speichern.", + "Common.Translation.tipFileReadOnly": "Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", @@ -550,6 +552,7 @@ "Common.Views.Header.textHideLines": "Lineale verbergen", "Common.Views.Header.textHideNotes": "Notizen ausblenden", "Common.Views.Header.textHideStatusBar": "Statusleiste verbergen", + "Common.Views.Header.textReadOnly": "Nur lesen", "Common.Views.Header.textRemoveFavorite": "Aus Favoriten entfernen", "Common.Views.Header.textSaveBegin": "Speicherung...", "Common.Views.Header.textSaveChanged": "Verändert", @@ -561,6 +564,7 @@ "Common.Views.Header.tipDownload": "Datei herunterladen", "Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten", "Common.Views.Header.tipPrint": "Datei drucken", + "Common.Views.Header.tipPrintQuick": "Schnelldruck", "Common.Views.Header.tipRedo": "Wiederholen", "Common.Views.Header.tipSave": "Speichern", "Common.Views.Header.tipSearch": "Suchen", @@ -899,6 +903,7 @@ "PE.Controllers.Main.textRequestMacros": "Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?", "PE.Controllers.Main.textShape": "Form", "PE.Controllers.Main.textStrict": "Formaler Modus", + "PE.Controllers.Main.textTryQuickPrint": "Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?", "PE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.", "PE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.", "PE.Controllers.Main.textUndo": "Rückgängig", @@ -1176,6 +1181,8 @@ "PE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", + "PE.Controllers.Print.txtPrintRangeInvalid": "Ungültiger Druckbereich", + "PE.Controllers.Print.txtPrintRangeSingleRange": "Geben Sie entweder eine einzelne Foliennummer oder einen einzelnen Folienbereich ein (z. B. 5-12). Oder Sie können in PDF drucken.", "PE.Controllers.Search.notcriticalErrorTitle": "Achtung", "PE.Controllers.Search.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.", "PE.Controllers.Search.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.", @@ -1903,6 +1910,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "Einheitlich", "PE.Views.FileMenuPanels.Settings.txtProofing": "Rechtschreibprüfung", "PE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Alle aktivieren", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Alle Makros ohne Benachrichtigung aktivieren", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Rechtschreibprüfung", @@ -2058,6 +2067,18 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Rechts", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Absatz - Erweiterte Einstellungen", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "PE.Views.PrintWithPreview.txtAllPages": "Alle Folien", + "PE.Views.PrintWithPreview.txtCurrentPage": "Aktuelle Folie", + "PE.Views.PrintWithPreview.txtCustomPages": "Benutzerdefinierter Druck", + "PE.Views.PrintWithPreview.txtEmptyTable": "Es gibt nichts zu drucken, weil die Präsentation leer ist", + "PE.Views.PrintWithPreview.txtOf": "von {0}", + "PE.Views.PrintWithPreview.txtPage": "Folie", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "Foliennummer ungültig", + "PE.Views.PrintWithPreview.txtPages": "Folien", + "PE.Views.PrintWithPreview.txtPaperSize": "Papiergröße", + "PE.Views.PrintWithPreview.txtPrint": "Drucken", + "PE.Views.PrintWithPreview.txtPrintPdf": "Als PDF-Datei drucken", + "PE.Views.PrintWithPreview.txtPrintRange": "Druckbereich", "PE.Views.RightMenu.txtChartSettings": "Diagramm-Einstellungen", "PE.Views.RightMenu.txtImageSettings": "Bild-Einstellungen", "PE.Views.RightMenu.txtParagraphSettings": "Text-Einstellungen", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 30e4dd87a..a440b94ed 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -552,6 +552,7 @@ "Common.Views.Header.textHideLines": "Hide Rulers", "Common.Views.Header.textHideNotes": "Hide Notes", "Common.Views.Header.textHideStatusBar": "Hide Status Bar", + "Common.Views.Header.textReadOnly": "Read only", "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", "Common.Views.Header.textSaveBegin": "Saving...", "Common.Views.Header.textSaveChanged": "Modified", @@ -563,6 +564,7 @@ "Common.Views.Header.tipDownload": "Download file", "Common.Views.Header.tipGoEdit": "Edit current file", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Quick print", "Common.Views.Header.tipRedo": "Redo", "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipSearch": "Search", @@ -573,8 +575,6 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.tipPrintQuick": "Quick print", - "Common.Views.Header.textReadOnly": "Read only", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -905,6 +905,7 @@ "PE.Controllers.Main.textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "PE.Controllers.Main.textShape": "Shape", "PE.Controllers.Main.textStrict": "Strict mode", + "PE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "PE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "PE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "PE.Controllers.Main.textUndo": "Undo", @@ -1182,7 +1183,6 @@ "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "PE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "PE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range", "PE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single slide number or a single slide range (for example, 5-12). Or you can Print to PDF.", "PE.Controllers.Search.notcriticalErrorTitle": "Warning", @@ -1236,52 +1236,52 @@ "PE.Controllers.Toolbar.txtAccent_Hat": "Hat", "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "PE.Controllers.Toolbar.txtBracket_Angle": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", - "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Curve": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", - "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", + "PE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separators", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", + "PE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separators", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "PE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", "PE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", - "PE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object in parentheses", "PE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", - "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", - "PE.Controllers.Toolbar.txtBracket_Line": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", - "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", - "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Round": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", - "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Square": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", - "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", - "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", - "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", - "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient in angle brackets", + "PE.Controllers.Toolbar.txtBracket_Line": "Vertical bars", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right vertical bar", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left vertical bar", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Double vertical bars", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right double vertical bar", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left double vertical bar", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Floor", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", + "PE.Controllers.Toolbar.txtBracket_Round": "Parentheses", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separators", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", + "PE.Controllers.Toolbar.txtBracket_Square": "Square brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Right square brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Right and left square brackets", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Left square brackets", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right ceiling", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left ceiling", "PE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", - "PE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", - "PE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", - "PE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", - "PE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y over cap delta x", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "partial y over partial x", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "delta y over delta x", "PE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", "PE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", "PE.Controllers.Toolbar.txtFractionSmall": "Small fraction", @@ -1317,63 +1317,63 @@ "PE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", "PE.Controllers.Toolbar.txtIntegral_dx": "Differential x", "PE.Controllers.Toolbar.txtIntegral_dy": "Differential y", - "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with stacked limits", "PE.Controllers.Toolbar.txtIntegralDouble": "Double integral", - "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", - "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral with stacked limits", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral with limits", "PE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", - "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral with stacked limits", "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", - "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", - "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", - "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral with stacked limits", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral with limits", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral with limits", "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", - "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", - "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", - "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral with stacked limits", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral with limits", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral with limits", "PE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", - "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", - "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_Union": "Union", - "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", - "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", - "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", - "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with subscript/superscript limits", "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", @@ -1425,16 +1425,16 @@ "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of Quadratic Formula", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "PE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "PE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", "PE.Controllers.Toolbar.txtRadicalSqrt": "Square root", - "PE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "PE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "PE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "PE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared", + "PE.Controllers.Toolbar.txtScriptCustom_2": "e to the minus i omega t", + "PE.Controllers.Toolbar.txtScriptCustom_3": "x squared", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Y left superscript n left subscript one", "PE.Controllers.Toolbar.txtScriptSub": "Subscript", "PE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", @@ -1912,6 +1912,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "Native", "PE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "PE.Views.FileMenuPanels.Settings.txtPt": "Point", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without a notification", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Checking", @@ -1928,8 +1930,6 @@ "PE.Views.GridSettings.textCustom": "Custom", "PE.Views.GridSettings.textSpacing": "Spacing", "PE.Views.GridSettings.textTitle": "Grid settings", - "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", - "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "PE.Views.HeaderFooterDialog.applyAllText": "Apply to all", "PE.Views.HeaderFooterDialog.applyText": "Apply", "PE.Views.HeaderFooterDialog.diffLanguage": "You can’t use a date format in a different language than the slide master.
To change the master, click 'Apply to all' instead of 'Apply'", @@ -2069,18 +2069,18 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "PE.Views.PrintWithPreview.txtAllPages": "All slides", + "PE.Views.PrintWithPreview.txtCurrentPage": "Current slide", + "PE.Views.PrintWithPreview.txtCustomPages": "Custom print", + "PE.Views.PrintWithPreview.txtEmptyTable": "There is nothing to print because the presentation is empty", + "PE.Views.PrintWithPreview.txtOf": "of {0}", + "PE.Views.PrintWithPreview.txtPage": "Slide", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "Slide number invalid", + "PE.Views.PrintWithPreview.txtPages": "Slides", + "PE.Views.PrintWithPreview.txtPaperSize": "Paper size", "PE.Views.PrintWithPreview.txtPrint": "Print", "PE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF", "PE.Views.PrintWithPreview.txtPrintRange": "Print range", - "PE.Views.PrintWithPreview.txtCurrentPage": "Current slide", - "PE.Views.PrintWithPreview.txtAllPages": "All slides", - "PE.Views.PrintWithPreview.txtCustomPages": "Custom print", - "PE.Views.PrintWithPreview.txtPage": "Slide", - "PE.Views.PrintWithPreview.txtOf": "of {0}", - "PE.Views.PrintWithPreview.txtPageNumInvalid": "Slide number invalid", - "PE.Views.PrintWithPreview.txtEmptyTable": "There is nothing to print because the presentation is empty", - "PE.Views.PrintWithPreview.txtPages": "Slides", - "PE.Views.PrintWithPreview.txtPaperSize": "Paper size", "PE.Views.RightMenu.txtChartSettings": "Chart settings", "PE.Views.RightMenu.txtImageSettings": "Image settings", "PE.Views.RightMenu.txtParagraphSettings": "Paragraph settings", diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index f246200ca..7271f08e4 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -1877,6 +1877,7 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Jobb", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Bekezdés - Haladó beállítások", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatikus", + "PE.Views.PrintWithPreview.txtAllPages": "Minden diakép", "PE.Views.RightMenu.txtChartSettings": "Diagram beállítások", "PE.Views.RightMenu.txtImageSettings": "Képbeállítások", "PE.Views.RightMenu.txtParagraphSettings": "Bekezdés beállítások", diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index 5b1fbdd82..c2f099ad6 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -250,14 +250,113 @@ "Common.define.effectData.textZoom": "Խոշորացնել", "Common.define.gridlineData.txtCm": "սմ", "Common.define.gridlineData.txtPt": "կտ", + "Common.define.smartArt.textAccentedPicture": "Շեշտված նկար", "Common.define.smartArt.textAccentProcess": "Շեշտման ընթացք", + "Common.define.smartArt.textAlternatingFlow": "Այլընտրական հոսք", + "Common.define.smartArt.textAlternatingHexagons": "Այլընտրական վեցանկյունիներ", + "Common.define.smartArt.textAlternatingPictureBlocks": "Այլընտրական նկարների կազմեր", + "Common.define.smartArt.textAlternatingPictureCircles": "Այլընտրական նկարների շրջանակներ", + "Common.define.smartArt.textArchitectureLayout": "Ճարտարապետական դասավորություն", + "Common.define.smartArt.textArrowRibbon": "Սլաքի երիզ", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Աճող նկարների շեշտման ընթացք", "Common.define.smartArt.textBalance": "Հաշվեկշիռ", + "Common.define.smartArt.textBasicBendingProcess": "Հիմնական ծռման ընթացք", + "Common.define.smartArt.textBasicBlockList": "Հիմնական բաժնի ցուցակ", + "Common.define.smartArt.textBasicChevronProcess": "Հիմնական ծպեղների ընթացք", + "Common.define.smartArt.textBasicCycle": "Հիմնական շրջան", + "Common.define.smartArt.textBasicMatrix": "Հիմնական մատրիցա", + "Common.define.smartArt.textBasicPie": "Հիմնական բլիթ", + "Common.define.smartArt.textBasicProcess": "Հիմնական ընթացք", + "Common.define.smartArt.textBasicPyramid": "Հիմնական բուրգ", + "Common.define.smartArt.textBasicRadial": "Հիմնական շառավիղ", + "Common.define.smartArt.textBasicTarget": "Հիմնական նպատակ", + "Common.define.smartArt.textBasicTimeline": "Հիմնական ժամագիծ", + "Common.define.smartArt.textBasicVenn": "Հիմնական վրածածք", + "Common.define.smartArt.textBendingPictureAccentList": "Ծռված նկարի շեշտման ցուցակ", + "Common.define.smartArt.textBendingPictureBlocks": "Ծռված նկարների կազմեր", + "Common.define.smartArt.textBendingPictureCaption": "Ծռված նկարի խորագիր", + "Common.define.smartArt.textBendingPictureCaptionList": "Ծռված նկարի խորագրերի ցուցակ", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Ծռված նկարի կիսաթափանցիկ գրվածք", + "Common.define.smartArt.textBlockCycle": "Բաժնի շրջան", + "Common.define.smartArt.textBubblePictureList": "Դրսագրով նկարների ցուցակ", + "Common.define.smartArt.textCaptionedPictures": "Խորագրով նկարներ", + "Common.define.smartArt.textChevronAccentProcess": "Ծպեղների շեշտման ընթաց", + "Common.define.smartArt.textChevronList": "Ծպեղների ցուցակ", + "Common.define.smartArt.textCircleAccentTimeline": "Շրջանաձև շեշտման ժամագիծ", + "Common.define.smartArt.textCircleArrowProcess": "Շրջանաձև սլաքի ընթացք", + "Common.define.smartArt.textCirclePictureHierarchy": "Շրջանաձև նկարների աստիճանակարգություն", + "Common.define.smartArt.textCircleProcess": "Շրջանաձև ընթացք", + "Common.define.smartArt.textCircleRelationship": "Շրջանների հարաբերություն", + "Common.define.smartArt.textCircularBendingProcess": "Շրջանային ծռման ընթացք", + "Common.define.smartArt.textCircularPictureCallout": "Շրջանաձև նկարի դրսագիր", + "Common.define.smartArt.textClosedChevronProcess": "Փակ ծպեղների ընթացք", + "Common.define.smartArt.textContinuousArrowProcess": "Շարունակական սլաքի ընթացք", + "Common.define.smartArt.textContinuousBlockProcess": "Շարունակական բաժնի ընթացք", + "Common.define.smartArt.textContinuousCycle": "Շարունակական շրջան", + "Common.define.smartArt.textContinuousPictureList": "Շարունակական նկարի ցուցակ", + "Common.define.smartArt.textConvergingArrows": "Միակցող սլաքներ", + "Common.define.smartArt.textConvergingRadial": "Զուգահեռ շառավիղ", + "Common.define.smartArt.textConvergingText": "Զուգամետ գրվածք", + "Common.define.smartArt.textCounterbalanceArrows": "Հակակշիռ սլաքներ", + "Common.define.smartArt.textCycle": "Շրջան", + "Common.define.smartArt.textCycleMatrix": "Շրջանային մատրիցա", + "Common.define.smartArt.textDescendingBlockList": "Նվազող կազմերի ցուցակ", + "Common.define.smartArt.textDescendingProcess": "Նվազող ընթացք", + "Common.define.smartArt.textDetailedProcess": "Մանրամասն ընթացք", + "Common.define.smartArt.textDivergingArrows": "Հակադիր սլաքներ", + "Common.define.smartArt.textDivergingRadial": "Ցրված շառավիղ", "Common.define.smartArt.textEquation": "Հավասարում", + "Common.define.smartArt.textFramedTextPicture": "Շրջանակված գրվածքով նկար", "Common.define.smartArt.textFunnel": "Ձագարաձև", + "Common.define.smartArt.textGear": "Ատամնանիվ", + "Common.define.smartArt.textGridMatrix": "Ցանցավոր մատրիցա", + "Common.define.smartArt.textGroupedList": "Խմբավորված ցուցակ", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Կիսաշրջանաձև կազմակերպության գծապատկեր", + "Common.define.smartArt.textHexagonCluster": "Վեցանկյունիների բույլ", + "Common.define.smartArt.textHexagonRadial": "Վեցանկյունիների շառավիղ", + "Common.define.smartArt.textHierarchy": "Ստորակարգ", + "Common.define.smartArt.textHierarchyList": "Ստորակարգի ցուցակ", + "Common.define.smartArt.textHorizontalBulletList": "Հորիզոնական պարբերակի ցուցակ", + "Common.define.smartArt.textHorizontalHierarchy": "Հորիզոնական ստորակարգ", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Հորիզոնական պիտակված ստորակարգ", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Հորիզոնական բազմակակարդակ աստիճանակարգություն", + "Common.define.smartArt.textHorizontalOrganizationChart": "Հորիզոնական կազմակերպության գծապատկեր", + "Common.define.smartArt.textHorizontalPictureList": "Հորիզոնական նկարների ցուցակ", + "Common.define.smartArt.textIncreasingArrowProcess": "Աճող սլաքի ընթացք", + "Common.define.smartArt.textIncreasingCircleProcess": "Աճող շրջանաձև ընթացք", + "Common.define.smartArt.textInterconnectedBlockProcess": "Փոխկապակցված կազմերի ընթացք", + "Common.define.smartArt.textInterconnectedRings": "Փոխկապակցված օղակներ", + "Common.define.smartArt.textInvertedPyramid": "Հակադարձված բուրգ", + "Common.define.smartArt.textLabeledHierarchy": "Պիտակված ստորակարգ", + "Common.define.smartArt.textLinearVenn": "Գծային վրածածք", + "Common.define.smartArt.textLinedList": "Գծված ցուցակ", "Common.define.smartArt.textList": "Ցուցակ", + "Common.define.smartArt.textMatrix": "Մատրիցա", + "Common.define.smartArt.textMultidirectionalCycle": "Բազմուղի շրջան", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Անուններով և պաշտոններով կազմակերպության գծապատկեր", + "Common.define.smartArt.textNestedTarget": "Ներդրված թիրախ", + "Common.define.smartArt.textNondirectionalCycle": "Ոչ ուղղորդված շրջան", + "Common.define.smartArt.textOpposingArrows": "Հակադրող սլաքներ", + "Common.define.smartArt.textOpposingIdeas": "Հակադրող առաջարկներ", + "Common.define.smartArt.textOrganizationChart": "Կազմակերպության գծապատկեր", "Common.define.smartArt.textOther": "Այլ", + "Common.define.smartArt.textPhasedProcess": "Փուլային ընթացք", "Common.define.smartArt.textPicture": "Նկար", + "Common.define.smartArt.textPictureAccentBlocks": "Նկարների շեշտման կազմեր", + "Common.define.smartArt.textPictureAccentList": "Նկարի շեշտման ցուցակ", + "Common.define.smartArt.textPictureAccentProcess": "Նկարի շեշտման ընթացք", + "Common.define.smartArt.textPictureCaptionList": "Նկարի խորագրերի ցուցակ", + "Common.define.smartArt.textPictureFrame": "ՆկարիՇրջանակ", + "Common.define.smartArt.textPictureGrid": "Նկարների ցանց", + "Common.define.smartArt.textPictureLineup": "Նկարների շարան", + "Common.define.smartArt.textPictureOrganizationChart": "Նկարի կազմակերպության գծապատկեր", + "Common.define.smartArt.textPictureStrips": "Նկարների գծեր", + "Common.define.smartArt.textPieProcess": "Բլիթային գծապատկերով ընթացք", + "Common.define.smartArt.textPlusAndMinus": "Գումարած և հանած", + "Common.define.smartArt.textProcess": "Ընթացք", + "Common.define.smartArt.textProcessArrows": "Ընթացքի սլաքներ", "Common.Translation.textMoreButton": "Ավել", + "Common.Translation.tipFileLocked": "Փաստաթուղթը կողպված է խմբագրման համար:Դուք կարող եք փոփոխություններ կատարել և հետագայում պահպանել այն որպես տեղական պատճեն:", "Common.Translation.warnFileLocked": "Ֆայլը խմբագրվում է մեկ այլ հավելվածում:Դուք կարող եք շարունակել խմբագրումը և պահպանել այն որպես պատճեն:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", @@ -550,6 +649,7 @@ "Common.Views.ReviewPopover.textCancel": "Չեղարկել", "Common.Views.ReviewPopover.textClose": "Փակել", "Common.Views.ReviewPopover.textEdit": "Լավ", + "Common.Views.ReviewPopover.textEnterComment": "Այստեղ մուտքագրեք Ձեր մեկնաբանությունը", "Common.Views.ReviewPopover.textMention": "+հիշատակումը փաստաթուղթը հասանելի կդարձնի և էլ. նամակ կուղարկի", "Common.Views.ReviewPopover.textMentionNotify": "+նշումը օգտատիրոջը կտեղեկացնի էլ.փոստի միջոցով", "Common.Views.ReviewPopover.textOpenAgain": "Նորից բացել", @@ -596,6 +696,7 @@ "Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն", "Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ", "Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին հավելել մեկնաբանություն ստորագրության պատուհանում", + "Common.Views.SignSettingsDialog.textDefInstruction": "Նախքան այս փաստաթուղթը ստորագրելը, ստուգեք, որ Ձեր ստորագրած բովանդակությունը ճիշտ է:", "Common.Views.SignSettingsDialog.textInfoEmail": "Էլ․ հասցե", "Common.Views.SignSettingsDialog.textInfoName": "Անուն", "Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը", @@ -659,12 +760,18 @@ "PE.Controllers.Main.errorDataEncrypted": "Ընդունվել են գաղտնագրված փոփոխությունները. դրանք չեն կարող վերծանվել։", "PE.Controllers.Main.errorDataRange": "Տվյալների սխալ ընդգրկույթ։", "PE.Controllers.Main.errorDefaultMessage": "Սխալի կոդ՝ %1", + "PE.Controllers.Main.errorDirectUrl": "Խնդրում ենք ստուգել փաստաթղթի հղումը:
Այս հղումը պետք է լինի ուղիղ հղում դեպի ներբեռնելու ֆայլը:", "PE.Controllers.Main.errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում տեղի ունեցավ սխալ։
«Ներբեռնել որպես» հրամանով պահպանեք նիշքի պահուստային պատճենը Ձեր համակարգչի կոշտ սկավառակում։", "PE.Controllers.Main.errorEditingSaveas": "Փաստաթղթի հետ աշխատանքի ընթացքում տեղի ունեցավ սխալ։
«Պահպանել որպես...» հրամանով պահպանեք նիշքի պահուստային պատճենը Ձեր համակարգչի կոշտ սկավառակում։", "PE.Controllers.Main.errorEmailClient": "Էլփոստի հաճախորդ չի գտնվել:", "PE.Controllers.Main.errorFilePassProtect": "Նիշքն ունի գաղտնաբառ և չի կարող բացվել։", "PE.Controllers.Main.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:
Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "PE.Controllers.Main.errorForceSave": "Փաստաթղթի պահպանման ժամանակ տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքը Ձեր համակարգչի կոշտ սկավառակում կամ ավելի ուշ նորից փորձեք։", + "PE.Controllers.Main.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:", + "PE.Controllers.Main.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:", + "PE.Controllers.Main.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:", + "PE.Controllers.Main.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:", + "PE.Controllers.Main.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:", "PE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ", "PE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է", "PE.Controllers.Main.errorLoadingFont": "Տառատեսակները բեռնված չեն:
Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", @@ -1016,6 +1123,8 @@ "PE.Controllers.Main.warnNoLicense": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։
Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի բաժին։", "PE.Controllers.Main.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագիրների օգտվողի սահմանաչափին:Անձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:", "PE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս նիշքը։", + "PE.Controllers.Print.txtPrintRangeInvalid": "Տպման անվավեր տիրույթ", + "PE.Controllers.Print.txtPrintRangeSingleRange": "Մուտքագրեք կա՛մ մեկ սլայդի համար, կա՛մ մեկ սլայդի տիրույթ (օրինակ՝ 5-12): Կամ կարող եք տպել PDF-ով:", "PE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում", "PE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:", "PE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:", @@ -1391,14 +1500,20 @@ "PE.Views.Animation.txtSec": "Ջ", "PE.Views.AnimationDialog.textPreviewEffect": "Նախադիտել էֆեկտը", "PE.Views.AnimationDialog.textTitle": "Ավելի շատ էֆեկտներ", + "PE.Views.ChartSettings.text3dDepth": "Խորությունը (բազայի %)", + "PE.Views.ChartSettings.text3dHeight": "Բարձրություն (բազայի %)", "PE.Views.ChartSettings.text3dRotation": "3D Պտտում", "PE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", + "PE.Views.ChartSettings.textAutoscale": "Ինքնասանդղակ", "PE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը", + "PE.Views.ChartSettings.textDefault": "Սկզբնադիր շրջում", "PE.Views.ChartSettings.textDown": "Ներքև", "PE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները", "PE.Views.ChartSettings.textHeight": "Բարձրություն", "PE.Views.ChartSettings.textKeepRatio": "Պահպանել համաչափությունը", "PE.Views.ChartSettings.textLeft": "Ձախ", + "PE.Views.ChartSettings.textNarrow": "Նեղ տեսադաշտ", + "PE.Views.ChartSettings.textPerspective": "Հեռանկար", "PE.Views.ChartSettings.textRight": "Աջ", "PE.Views.ChartSettings.textSize": "Չափ", "PE.Views.ChartSettings.textStyle": "Ոճ", @@ -1429,16 +1544,22 @@ "PE.Views.DocumentHolder.aboveText": "Վեր", "PE.Views.DocumentHolder.addCommentText": "Կցել մեկնաբանություն", "PE.Views.DocumentHolder.addToLayoutText": "Ավելացնել դասավորություն", + "PE.Views.DocumentHolder.advancedChartText": "Գծապատկերի լրացուցիչ կարգավորումներ", + "PE.Views.DocumentHolder.advancedEquationText": "Հավասարման կարգավորումներ", "PE.Views.DocumentHolder.advancedImageText": "Պատկերի ընդլայնված կարգավորումներ ", "PE.Views.DocumentHolder.advancedParagraphText": "Պարբերության ընդլայնված կարգավորումներ", "PE.Views.DocumentHolder.advancedShapeText": "Ձևավորել ընդլայնված կարգավորումները", "PE.Views.DocumentHolder.advancedTableText": "Աղյուսակի հավելյալ կարգավորումներ", "PE.Views.DocumentHolder.alignmentText": "Հավասարեցում", + "PE.Views.DocumentHolder.allLinearText": "Ամբողջական գծային", + "PE.Views.DocumentHolder.allProfText": "Ամբողջական պրոֆեսիոնալ", "PE.Views.DocumentHolder.belowText": "Ներքևում", "PE.Views.DocumentHolder.cellAlignText": "Վանդակի ուղղահայաց հավասարեցում", "PE.Views.DocumentHolder.cellText": "Վանդակ", "PE.Views.DocumentHolder.centerText": "Կենտրոն", "PE.Views.DocumentHolder.columnText": "Սյունակ", + "PE.Views.DocumentHolder.currLinearText": "Ընթացիկ - Գծային", + "PE.Views.DocumentHolder.currProfText": "Ընթացիկ-Պրոֆեսիոնալ", "PE.Views.DocumentHolder.deleteColumnText": "Ջնջել սյունակը", "PE.Views.DocumentHolder.deleteRowText": "Ջնջել տողը", "PE.Views.DocumentHolder.deleteTableText": "Ջնջել աղյուսակը", @@ -1460,6 +1581,7 @@ "PE.Views.DocumentHolder.insertRowText": "Զետեղել տող", "PE.Views.DocumentHolder.insertText": "Զետեղել", "PE.Views.DocumentHolder.langText": "Ընտրել լեզուն", + "PE.Views.DocumentHolder.latexText": "LaTeX", "PE.Views.DocumentHolder.leftText": "Ձախ", "PE.Views.DocumentHolder.loadSpellText": "Տարբերակների բեռնում...", "PE.Views.DocumentHolder.mergeCellsText": "Միաձուլել վանդակները", @@ -1475,10 +1597,13 @@ "PE.Views.DocumentHolder.splitCellsText": "Տրոհել վանդակը...", "PE.Views.DocumentHolder.splitCellTitleText": "Տրոհել վանդակը", "PE.Views.DocumentHolder.tableText": "Աղյուսակ", + "PE.Views.DocumentHolder.textAddHGuides": "Ավելացնել հորիզոնական ուղեցույց", + "PE.Views.DocumentHolder.textAddVGuides": "Ավելացնել ուղղահայաց ուղեցույց", "PE.Views.DocumentHolder.textArrangeBack": "Տանել խորք", "PE.Views.DocumentHolder.textArrangeBackward": "ՈՒղարկել հետ", "PE.Views.DocumentHolder.textArrangeForward": "Բերել առաջ", "PE.Views.DocumentHolder.textArrangeFront": "Բերել առջևք ", + "PE.Views.DocumentHolder.textClearGuides": "Մաքրել ուղեցույցները", "PE.Views.DocumentHolder.textCm": "սմ", "PE.Views.DocumentHolder.textCopy": "Պատճենել", "PE.Views.DocumentHolder.textCrop": "Եզրատել", @@ -1486,6 +1611,7 @@ "PE.Views.DocumentHolder.textCropFit": "Հարմարեցնել", "PE.Views.DocumentHolder.textCustom": "Հարմարեցված", "PE.Views.DocumentHolder.textCut": "Կտրել", + "PE.Views.DocumentHolder.textDeleteGuide": "Ջնջել ուղեցույցը", "PE.Views.DocumentHolder.textDistributeCols": "Բաշխել սյունակները", "PE.Views.DocumentHolder.textDistributeRows": "Բաշխել տողերը", "PE.Views.DocumentHolder.textEditPoints": "Խմբագրել կետերը", @@ -1494,6 +1620,8 @@ "PE.Views.DocumentHolder.textFromFile": "Ֆայլից", "PE.Views.DocumentHolder.textFromStorage": "Պահեստից", "PE.Views.DocumentHolder.textFromUrl": "URL-ից", + "PE.Views.DocumentHolder.textGridlines": "Ցանցագծեր", + "PE.Views.DocumentHolder.textGuides": "Ձեռնարկներ", "PE.Views.DocumentHolder.textNextPage": "Հաջորդ սահիկ", "PE.Views.DocumentHolder.textPaste": "Փակցնել", "PE.Views.DocumentHolder.textPrevPage": "Նախորդ սահիկ", @@ -1728,6 +1856,7 @@ "PE.Views.GridSettings.textCm": "սմ", "PE.Views.GridSettings.textCustom": "Հարմարեցված", "PE.Views.GridSettings.textSpacing": "Միջատարածք", + "PE.Views.GridSettings.textTitle": "Ցանցի կարգավորումներ", "PE.Views.HeaderFooterDialog.applyAllText": "Գործադրել բոլորի համար", "PE.Views.HeaderFooterDialog.applyText": "Գործադրել", "PE.Views.HeaderFooterDialog.diffLanguage": "Չեք կարող օգտագործել ամսաթվի ձևաչափը լուսապատկերների ձևանմուշի լեզվից տարբերվող լեզվով:
Հիմնօրինակը փոխելու համար կտտացրեք «Գործադրել բոլորը» «Գործադրել»-ու փոխարեն:", @@ -1867,6 +1996,14 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Աջ", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Պարբերություն- ընդլայնված կարգավորումներ", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "ինքնաշխատ", + "PE.Views.PrintWithPreview.txtAllPages": "Բոլոր սլայդները", + "PE.Views.PrintWithPreview.txtCurrentPage": "Ընթացիկ սլայդ", + "PE.Views.PrintWithPreview.txtCustomPages": "Հարմարեցված տպագրություն", + "PE.Views.PrintWithPreview.txtOf": "{0}-ից", + "PE.Views.PrintWithPreview.txtPaperSize": "Թղթի չափը", + "PE.Views.PrintWithPreview.txtPrint": "Տպել", + "PE.Views.PrintWithPreview.txtPrintPdf": "Տպել PDF-ով", + "PE.Views.PrintWithPreview.txtPrintRange": "Տպման տիրույթ", "PE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ", "PE.Views.RightMenu.txtImageSettings": "Նկարի կարգավորումներ", "PE.Views.RightMenu.txtParagraphSettings": "Պարբերության կարգավորումներ", @@ -2119,6 +2256,7 @@ "PE.Views.TableSettings.txtGroupTable_Dark": "Մուգ", "PE.Views.TableSettings.txtGroupTable_Light": "Լույս", "PE.Views.TableSettings.txtGroupTable_Medium": "Միջին", + "PE.Views.TableSettings.txtGroupTable_Optimal": "Լավագույն համընկնումը փաստաթղթի համար", "PE.Views.TableSettings.txtNoBorders": "Առանց եզրագծերի", "PE.Views.TableSettings.txtTable_Accent": "Շեշտ", "PE.Views.TableSettings.txtTable_DarkStyle": "Մուգ ոճ", @@ -2299,13 +2437,16 @@ "PE.Views.Toolbar.tipInsertAudio": "Զետեղել ձայնանյութ", "PE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր", "PE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում", + "PE.Views.Toolbar.tipInsertHorizontalText": "Զետեղել հորիզոնական գրվածքի տուփ", "PE.Views.Toolbar.tipInsertHyperlink": "Դնել գերհղում", "PE.Views.Toolbar.tipInsertImage": "Զետեղել նկար", "PE.Views.Toolbar.tipInsertShape": "Զետեղել ինքնաձև", + "PE.Views.Toolbar.tipInsertSmartArt": "Զետեղել SmartArt", "PE.Views.Toolbar.tipInsertSymbol": "Զետեղել նշան", "PE.Views.Toolbar.tipInsertTable": "Զետեղել աղյուսակ", "PE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ", "PE.Views.Toolbar.tipInsertTextArt": "Դնել տեքստարվեստից", + "PE.Views.Toolbar.tipInsertVerticalText": "Զետեղել ուղղահայաց գրվածքի տուփ", "PE.Views.Toolbar.tipInsertVideo": "Զետեղել տեսանյութ", "PE.Views.Toolbar.tipLineSpace": "Տողամիջոց", "PE.Views.Toolbar.tipMarkers": "Պարբերակներ", @@ -2399,12 +2540,18 @@ "PE.Views.Transitions.txtParameters": "Պարամետրեր", "PE.Views.Transitions.txtPreview": "Նախադիտել", "PE.Views.Transitions.txtSec": "Ջ", + "PE.Views.ViewTab.textAddHGuides": "Ավելացնել հորիզոնական ուղեցույց", + "PE.Views.ViewTab.textAddVGuides": "Ավելացնել ուղղահայաց ուղեցույց", "PE.Views.ViewTab.textAlwaysShowToolbar": "Միշտ ցուցադրել գործիքագոտին", + "PE.Views.ViewTab.textClearGuides": "Մաքրել ուղեցույցները", "PE.Views.ViewTab.textCm": "սմ", "PE.Views.ViewTab.textCustom": "Հարմարեցված", "PE.Views.ViewTab.textFitToSlide": "Հարմարեցնել լուսապատկերին", "PE.Views.ViewTab.textFitToWidth": "Հարմարեցնել լայնությանը", + "PE.Views.ViewTab.textGridlines": "Ցանցագծեր", + "PE.Views.ViewTab.textGuides": "Ձեռնարկներ", "PE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի ոճ", + "PE.Views.ViewTab.textLeftMenu": "Ձախ վահանակ", "PE.Views.ViewTab.textNotes": "Նշումներ", "PE.Views.ViewTab.textRulers": "Քանոններ", "PE.Views.ViewTab.textShowGridlines": "Ցուցադրել Ցանցային գծերը", diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index afb6997bd..c4ccace05 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -410,6 +410,8 @@ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal", "Common.define.smartArt.textVerticalProcess": "Proses Vertikal", "Common.Translation.textMoreButton": "Lainnya", + "Common.Translation.tipFileLocked": "Dokumen terkunci untuk diedit. Anda dapat membuat perubahan dan menyimpannya sebagai salinan lokal nanti.", + "Common.Translation.tipFileReadOnly": "Dokumen hanya dapat dibaca. Untuk menyimpan perubahan Anda, simpan file dengan nama baru atau di tempat lain.", "Common.Translation.warnFileLocked": "File sedang diedit di aplikasi lain. Anda bisa melanjutkan edit dan menyimpannya sebagai salinan.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", @@ -550,6 +552,7 @@ "Common.Views.Header.textHideLines": "Sembunyikan Mistar", "Common.Views.Header.textHideNotes": "Sembunyikan Catatan", "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textReadOnly": "Hanya baca", "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", "Common.Views.Header.textSaveBegin": "Menyimpan...", "Common.Views.Header.textSaveChanged": "Dimodifikasi", @@ -561,6 +564,7 @@ "Common.Views.Header.tipDownload": "Unduh File", "Common.Views.Header.tipGoEdit": "Edit file saat ini", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Cetak cepat", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipSearch": "Cari", @@ -702,6 +706,7 @@ "Common.Views.ReviewPopover.textCancel": "Batalkan", "Common.Views.ReviewPopover.textClose": "Tutup", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Tuliskan komentar Anda di sini", "Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email", "Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email", "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", @@ -806,6 +811,7 @@ "PE.Controllers.Main.downloadTitleText": "Mengunduh penyajian", "PE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", "PE.Controllers.Main.errorBadImageUrl": "URL Gambar salah", + "PE.Controllers.Main.errorCannotPasteImg": "Kami tak bisa menempel gambar ini dari Papan Klip, tapi Anda dapat menyimpannya\nke perangkat Anda dan menyisipkannya dari sana, atau Anda dapat menyalin gambar\ntanpa teks dan menempelkannya ke dalam presentasi.", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.", "PE.Controllers.Main.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", "PE.Controllers.Main.errorConnectToServer": "Dokumen tidak bisa disimpan. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", @@ -899,6 +905,7 @@ "PE.Controllers.Main.textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?", "PE.Controllers.Main.textShape": "Bentuk", "PE.Controllers.Main.textStrict": "Mode strict", + "PE.Controllers.Main.textTryQuickPrint": "Anda telah memilih Cetak cepat: seluruh dokumen akan dicetak pada printer yang terakhir dipilih atau baku.
Apakah Anda hendak melanjutkan?", "PE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", "PE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", "PE.Controllers.Main.textUndo": "Batalkan", @@ -1176,6 +1183,8 @@ "PE.Controllers.Main.warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi %1 tim sales untuk syarat personal upgrade.", "PE.Controllers.Main.warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", "PE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", + "PE.Controllers.Print.txtPrintRangeInvalid": "Rentang cetak tidak valid", + "PE.Controllers.Print.txtPrintRangeSingleRange": "Masukna satu nomor slide atau satu rentang slide (misalnya, 5-12). Atau Anda bisa Cetak ke PDF.", "PE.Controllers.Search.notcriticalErrorTitle": "Peringatan", "PE.Controllers.Search.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", "PE.Controllers.Search.textReplaceSkipped": "Penggantian telah dilakukan. {0} kemunculan telah dilewatkan.", @@ -1903,6 +1912,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "Asli", "PE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "PE.Views.FileMenuPanels.Settings.txtPt": "Titik", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Tampilkan tombol Cetak Cepat dalam header editor", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Dokumen akan dicetak pada printer yang terakhir dipilih atau baku", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktifkan Semua", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", @@ -2058,6 +2069,18 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Kanan", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Pengaturan lanjut", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", + "PE.Views.PrintWithPreview.txtAllPages": "Semua slide", + "PE.Views.PrintWithPreview.txtCurrentPage": "Slide saat ini", + "PE.Views.PrintWithPreview.txtCustomPages": "Cetak khusus", + "PE.Views.PrintWithPreview.txtEmptyTable": "Tidak ada yang akan dicetak karena presentasi kosong", + "PE.Views.PrintWithPreview.txtOf": "dari {0}", + "PE.Views.PrintWithPreview.txtPage": "Slide", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor slide tidak valid", + "PE.Views.PrintWithPreview.txtPages": "Slide", + "PE.Views.PrintWithPreview.txtPaperSize": "Ukuran kertas", + "PE.Views.PrintWithPreview.txtPrint": "Cetak", + "PE.Views.PrintWithPreview.txtPrintPdf": "Cetak ke PDF", + "PE.Views.PrintWithPreview.txtPrintRange": "Rentang cetak", "PE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", "PE.Views.RightMenu.txtImageSettings": "Pengaturan Gambar", "PE.Views.RightMenu.txtParagraphSettings": "Pengaturan Paragraf", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 2acf70dd0..15d111c27 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -410,6 +410,8 @@ "Common.define.smartArt.textVerticalPictureList": "縦方向画像リスト", "Common.define.smartArt.textVerticalProcess": "縦方向ステップ", "Common.Translation.textMoreButton": "もっと", + "Common.Translation.tipFileLocked": "ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。", + "Common.Translation.tipFileReadOnly": "ドキュメントは閲覧用で、編集はロックされています。後で変更し、そのローカルコピーを保存することができます。", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", "Common.Translation.warnFileLockedBtnView": "閲覧するため開く", @@ -550,6 +552,7 @@ "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideNotes": "ノートを非表示にする", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", + "Common.Views.Header.textReadOnly": "閲覧のみ", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", "Common.Views.Header.textSaveBegin": "保存中...", "Common.Views.Header.textSaveChanged": "変更済み", @@ -561,6 +564,7 @@ "Common.Views.Header.tipDownload": "ファイルをダウンロードする", "Common.Views.Header.tipGoEdit": "現在のファイルを編集する", "Common.Views.Header.tipPrint": "ファイルを印刷する", + "Common.Views.Header.tipPrintQuick": "クイックプリント", "Common.Views.Header.tipRedo": "やり直し", "Common.Views.Header.tipSave": "保存する", "Common.Views.Header.tipSearch": "検索", @@ -899,6 +903,7 @@ "PE.Controllers.Main.textRequestMacros": "マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?", "PE.Controllers.Main.textShape": "図形", "PE.Controllers.Main.textStrict": "厳格モード", + "PE.Controllers.Main.textTryQuickPrint": "クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?", "PE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。", "PE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。", "PE.Controllers.Main.textUndo": "元に戻す", @@ -1176,6 +1181,8 @@ "PE.Controllers.Main.warnNoLicense": "%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", "PE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。", "PE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", + "PE.Controllers.Print.txtPrintRangeInvalid": "無効な印刷範囲", + "PE.Controllers.Print.txtPrintRangeSingleRange": "スライド番号のみ、またはスライド範囲のみを入力してください(例: 5-12)。またはPDFに印刷することもできます。", "PE.Controllers.Search.notcriticalErrorTitle": " 警告", "PE.Controllers.Search.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", "PE.Controllers.Search.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", @@ -1530,7 +1537,7 @@ "PE.Views.Animation.strRewind": "巻き戻し", "PE.Views.Animation.strStart": "開始", "PE.Views.Animation.strTrigger": "トリガー", - "PE.Views.Animation.textAutoPreview": "オートプレビュー", + "PE.Views.Animation.textAutoPreview": "自動プレビュー", "PE.Views.Animation.textMoreEffects": "その他のエフェクトを表示", "PE.Views.Animation.textMoveEarlier": "先に移動する", "PE.Views.Animation.textMoveLater": "後に移動する", @@ -1800,11 +1807,11 @@ "PE.Views.DocumentHolder.unicodeText": "Unicode", "PE.Views.DocumentHolder.vertAlignText": "垂直方向の配置", "PE.Views.DocumentPreview.goToSlideText": "スライドへジャンプ", - "PE.Views.DocumentPreview.slideIndexText": "{1}のスライド{0}", + "PE.Views.DocumentPreview.slideIndexText": "スライド {0}/{1}", "PE.Views.DocumentPreview.txtClose": "スライドショーを閉じる", "PE.Views.DocumentPreview.txtEndSlideshow": "スライドショーの終了", "PE.Views.DocumentPreview.txtExitFullScreen": "全画面表示の終了", - "PE.Views.DocumentPreview.txtFinalMessage": "スライドプレビューの終わりです。終了するにはここをクリックします。", + "PE.Views.DocumentPreview.txtFinalMessage": "スライドプレビューの終わりです。終了するには、クリックしてください。", "PE.Views.DocumentPreview.txtFullScreen": "全画面表示", "PE.Views.DocumentPreview.txtNext": "次のスライド", "PE.Views.DocumentPreview.txtPageNumInvalid": "スライド番号が正しくありません。", @@ -1903,6 +1910,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "ネイティブ", "PE.Views.FileMenuPanels.Settings.txtProofing": "校正", "PE.Views.FileMenuPanels.Settings.txtPt": "ポイント", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "クイックプリントボタンをエディタヘッダーに表示", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "最後に選択した、またはデフォルトのプリンターで印刷されます。", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "全てを有効にする", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "通知を使用せずにすべてのマクロを有効にする", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "スペルチェック", @@ -2058,6 +2067,18 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "右", "PE.Views.ParagraphSettingsAdvanced.textTitle": "段落 - 詳細設定", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "オート", + "PE.Views.PrintWithPreview.txtAllPages": "全てのスライド", + "PE.Views.PrintWithPreview.txtCurrentPage": "現在のスライド", + "PE.Views.PrintWithPreview.txtCustomPages": "カスタム印刷", + "PE.Views.PrintWithPreview.txtEmptyTable": "プレゼンテーションが空白のため、印刷できるスライドがありません。", + "PE.Views.PrintWithPreview.txtOf": "{0}から", + "PE.Views.PrintWithPreview.txtPage": "スライド", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "スライド番号無効", + "PE.Views.PrintWithPreview.txtPages": "スライド", + "PE.Views.PrintWithPreview.txtPaperSize": "用紙サイズ", + "PE.Views.PrintWithPreview.txtPrint": "印刷", + "PE.Views.PrintWithPreview.txtPrintPdf": "PDFに印刷", + "PE.Views.PrintWithPreview.txtPrintRange": "印刷範囲\t", "PE.Views.RightMenu.txtChartSettings": "グラフの設定", "PE.Views.RightMenu.txtImageSettings": "画像の設定", "PE.Views.RightMenu.txtParagraphSettings": "段落の設定", @@ -2249,7 +2270,7 @@ "PE.Views.SlideSizeSettings.txtStandard": "標準(4:3)", "PE.Views.SlideSizeSettings.txtWidescreen": "ワイドスクリーン", "PE.Views.Statusbar.goToPageText": "スライドへジャンプ", - "PE.Views.Statusbar.pageIndexText": "{1}のスライド{0}", + "PE.Views.Statusbar.pageIndexText": "スライド {0}/{1}", "PE.Views.Statusbar.textShowBegin": "先頭から表示する", "PE.Views.Statusbar.textShowCurrent": "現在のスライドからの表示", "PE.Views.Statusbar.textShowPresenterView": "発表者ビューを表示", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 882fc9522..094f74bbb 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -561,6 +561,7 @@ "Common.Views.Header.tipDownload": "Transferir arquivo", "Common.Views.Header.tipGoEdit": "Editar arquivo atual", "Common.Views.Header.tipPrint": "Imprimir arquivo", + "Common.Views.Header.tipPrintQuick": "Impressão rápida", "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Salvar", "Common.Views.Header.tipSearch": "Pesquisar", @@ -1176,6 +1177,7 @@ "PE.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.", "PE.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.", "PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", + "PE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impressão inválido", "PE.Controllers.Search.notcriticalErrorTitle": "Aviso", "PE.Controllers.Search.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.", "PE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", @@ -1903,6 +1905,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "Nativo", "PE.Views.FileMenuPanels.Settings.txtProofing": "Correção", "PE.Views.FileMenuPanels.Settings.txtPt": "Ponto", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar o botão Impressão rápida no cabeçalho do editor", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "O documento será impresso na última impressora selecionada ou padrão", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todos", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas as macros sem uma notificação", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificação ortográfica", @@ -2058,6 +2062,18 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Direita", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Parágrafo - Configurações avançadas", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", + "PE.Views.PrintWithPreview.txtAllPages": "Todos os slides", + "PE.Views.PrintWithPreview.txtCurrentPage": "Slide atual", + "PE.Views.PrintWithPreview.txtCustomPages": "Impressão personalizada", + "PE.Views.PrintWithPreview.txtEmptyTable": "Não há nada para imprimir porque a apresentação está vazia", + "PE.Views.PrintWithPreview.txtOf": "de {0}", + "PE.Views.PrintWithPreview.txtPage": "Slide", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "Número do slide inválido", + "PE.Views.PrintWithPreview.txtPages": "Slides", + "PE.Views.PrintWithPreview.txtPaperSize": "Tamanho do papel", + "PE.Views.PrintWithPreview.txtPrint": "Imprimir", + "PE.Views.PrintWithPreview.txtPrintPdf": "Imprimir em PDF", + "PE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo", "PE.Views.RightMenu.txtChartSettings": "Configurações do gráfico", "PE.Views.RightMenu.txtImageSettings": "Configurações de imagem", "PE.Views.RightMenu.txtParagraphSettings": "Configurações do parágrafo", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 0c27df9d5..2942538bc 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -249,6 +249,7 @@ "Common.define.effectData.textZigzag": "Zigzag", "Common.define.effectData.textZoom": "Zoom", "Common.define.gridlineData.txtCm": "cm", + "Common.define.gridlineData.txtPt": "pt", "Common.define.smartArt.textAccentedPicture": "Imagine cu accent", "Common.define.smartArt.textAccentProcess": "Proces accent", "Common.define.smartArt.textAlternatingFlow": "Flux alternativ", @@ -311,8 +312,106 @@ "Common.define.smartArt.textGridMatrix": "Matrice grilă", "Common.define.smartArt.textGroupedList": "Listă grupată", "Common.define.smartArt.textHalfCircleOrganizationChart": "Organigramă semicirculară", + "Common.define.smartArt.textHexagonCluster": "Cluster hexagonal", + "Common.define.smartArt.textHexagonRadial": "Hexagoane radiale", + "Common.define.smartArt.textHierarchy": "Ierarhie", + "Common.define.smartArt.textHierarchyList": "Listă ierarhică", + "Common.define.smartArt.textHorizontalBulletList": "Listă orizontală cu marcatori", + "Common.define.smartArt.textHorizontalHierarchy": "Ierarhie orizontală", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Ierarhie orizontală etichetată", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Ierarhie orizontală pe mai multe niveluri", + "Common.define.smartArt.textHorizontalOrganizationChart": "Organigramă orizontală", + "Common.define.smartArt.textHorizontalPictureList": "Listă orizontală de imagini", + "Common.define.smartArt.textIncreasingArrowProcess": "Proces cu săgeți crescător", + "Common.define.smartArt.textIncreasingCircleProcess": "Proces circular crescător", + "Common.define.smartArt.textInterconnectedBlockProcess": "Proces cu blocuri interconectate", + "Common.define.smartArt.textInterconnectedRings": "Inele interconectate", + "Common.define.smartArt.textInvertedPyramid": "Piramidă inversată", + "Common.define.smartArt.textLabeledHierarchy": "Ierarhie etichetată", + "Common.define.smartArt.textLinearVenn": "Venn liniar", + "Common.define.smartArt.textLinedList": "Listă liniată", + "Common.define.smartArt.textList": "Listă", + "Common.define.smartArt.textMatrix": "Matrice", + "Common.define.smartArt.textMultidirectionalCycle": "Ciclu multidirecțional", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigramă nume și titlu", + "Common.define.smartArt.textNestedTarget": "Țintă imbricată", + "Common.define.smartArt.textNondirectionalCycle": "Ciclu nondirecțional", + "Common.define.smartArt.textOpposingArrows": "Săgeți opuse", + "Common.define.smartArt.textOpposingIdeas": "Idei opuse", + "Common.define.smartArt.textOrganizationChart": "Organigramă", + "Common.define.smartArt.textOther": "Altele", + "Common.define.smartArt.textPhasedProcess": "Proces în etape", + "Common.define.smartArt.textPicture": "Imagine", + "Common.define.smartArt.textPictureAccentBlocks": "Blocuri de imagini cu accent", + "Common.define.smartArt.textPictureAccentList": "Listă de accentuare imagini", + "Common.define.smartArt.textPictureAccentProcess": "Proces accent imagine", + "Common.define.smartArt.textPictureCaptionList": "Listă legendă imagine", + "Common.define.smartArt.textPictureFrame": "RamăDeFotografie", + "Common.define.smartArt.textPictureGrid": "Grilă de imagini", + "Common.define.smartArt.textPictureLineup": "Aliniere imagini", + "Common.define.smartArt.textPictureOrganizationChart": "Organigramă cu imagini", + "Common.define.smartArt.textPictureStrips": "Benzi cu imagini", + "Common.define.smartArt.textPieProcess": "Proces structură radială", + "Common.define.smartArt.textPlusAndMinus": "Plus și minus", + "Common.define.smartArt.textProcess": "Proces", + "Common.define.smartArt.textProcessArrows": "Săgeți proces", + "Common.define.smartArt.textProcessList": "Listă proces", + "Common.define.smartArt.textPyramid": "Piramidă", + "Common.define.smartArt.textPyramidList": "Listă piramidală", + "Common.define.smartArt.textRadialCluster": "Cluster radial", + "Common.define.smartArt.textRadialCycle": "Ciclu radial", + "Common.define.smartArt.textRadialList": "Listă radială", + "Common.define.smartArt.textRadialPictureList": "Listă radială de imagini", + "Common.define.smartArt.textRadialVenn": "Venn radială", + "Common.define.smartArt.textRandomToResultProcess": "Proces de idei aleatoare cu rezultat", + "Common.define.smartArt.textRelationship": "Relație", + "Common.define.smartArt.textRepeatingBendingProcess": "Proces de îndoire repetată", + "Common.define.smartArt.textReverseList": "Inversare listă", + "Common.define.smartArt.textSegmentedCycle": "Ciclu segmentat", + "Common.define.smartArt.textSegmentedProcess": "Proces segmentat", + "Common.define.smartArt.textSegmentedPyramid": "Piramidă segmentată", + "Common.define.smartArt.textSnapshotPictureList": "Listă imagini instantanee", + "Common.define.smartArt.textSpiralPicture": "Imagini în spirală", + "Common.define.smartArt.textSquareAccentList": "Listă accent pătrat", + "Common.define.smartArt.textStackedList": "Listă suprapusă", + "Common.define.smartArt.textStackedVenn": "Venn suprapus", + "Common.define.smartArt.textStaggeredProcess": "Proces decalat", + "Common.define.smartArt.textStepDownProcess": "Proces descendent", + "Common.define.smartArt.textStepUpProcess": "Proces ascendent", + "Common.define.smartArt.textSubStepProcess": "Proces cu subpași", + "Common.define.smartArt.textTabbedArc": "Arc cu file", + "Common.define.smartArt.textTableHierarchy": "Ierarhie tabel", + "Common.define.smartArt.textTableList": "Listă tabel", + "Common.define.smartArt.textTabList": "Listă file", + "Common.define.smartArt.textTargetList": "Listă ținte", + "Common.define.smartArt.textTextCycle": "Ciclu text", + "Common.define.smartArt.textThemePictureAccent": "Imagini cu accent și temă", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Imagini cu accent alternativ și temă", + "Common.define.smartArt.textThemePictureGrid": "Grilă de imagini cu temă", + "Common.define.smartArt.textTitledMatrix": "Matrice cu titlu", + "Common.define.smartArt.textTitledPictureAccentList": "Listă imagini cu titlu și accent", + "Common.define.smartArt.textTitledPictureBlocks": "Blocuri de imagini cu titlu", + "Common.define.smartArt.textTitlePictureLineup": "Imagini aliniate cu titlu", + "Common.define.smartArt.textTrapezoidList": "Listă trapezoidală", + "Common.define.smartArt.textUpwardArrow": "Săgeată ascendentă", + "Common.define.smartArt.textVaryingWidthList": "Listă de lățime variabilă", + "Common.define.smartArt.textVerticalAccentList": "Listă verticală cu accent", + "Common.define.smartArt.textVerticalArrowList": "Listă săgeți verticale", + "Common.define.smartArt.textVerticalBendingProcess": "Proces de îndoire verticală", + "Common.define.smartArt.textVerticalBlockList": "Listă bloc vertical", + "Common.define.smartArt.textVerticalBoxList": "Listă de blocuri verticală", + "Common.define.smartArt.textVerticalBracketList": "Listă paranteze verticale", + "Common.define.smartArt.textVerticalBulletList": "Listă verticală cu marcatori", "Common.define.smartArt.textVerticalChevronList": "Listă zigzag verticală", + "Common.define.smartArt.textVerticalCircleList": "Listă cercuri verticale", + "Common.define.smartArt.textVerticalCurvedList": "Listă curbată verticală", + "Common.define.smartArt.textVerticalEquation": "Ecuație verticală", + "Common.define.smartArt.textVerticalPictureAccentList": "Listă accent imagine verticală", + "Common.define.smartArt.textVerticalPictureList": "Listă verticală imagine", + "Common.define.smartArt.textVerticalProcess": "Proces vertical", "Common.Translation.textMoreButton": "Mai multe", + "Common.Translation.tipFileLocked": "Acest document este blocat pentru editare. Îl puteți modifica și salva mai târziu ca o copie pe unitatea locală.", + "Common.Translation.tipFileReadOnly": "Documentul este disponibil doar în citire și este blocat pentru editare. Puteți îl modifica și salva mai târziu ca o copie pe unitatea locală.", "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", @@ -443,6 +542,7 @@ "Common.Views.DocumentAccessDialog.textTitle": "Setări partajare", "Common.Views.ExternalDiagramEditor.textTitle": "Editor diagramă", "Common.Views.ExternalEditor.textClose": "Închidere", + "Common.Views.ExternalEditor.textSave": "Salvare și ieșire", "Common.Views.ExternalOleEditor.textTitle": "Editor de foi de calcul", "Common.Views.Header.labelCoUsersDescr": "Fișierul este editat de către:", "Common.Views.Header.textAddFavorite": "Marcare ca preferat", @@ -452,6 +552,7 @@ "Common.Views.Header.textHideLines": "Ascundere rigle", "Common.Views.Header.textHideNotes": "Ascunde notele", "Common.Views.Header.textHideStatusBar": "Ascundere bară de stare", + "Common.Views.Header.textReadOnly": "Doar în citire", "Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe", "Common.Views.Header.textSaveBegin": "Salvare în progres...", "Common.Views.Header.textSaveChanged": "Modificat", @@ -463,6 +564,7 @@ "Common.Views.Header.tipDownload": "Descărcare fișier", "Common.Views.Header.tipGoEdit": "Editare acest fișier", "Common.Views.Header.tipPrint": "Se imprimă tot fișierul", + "Common.Views.Header.tipPrintQuick": "Imprimare rapidă", "Common.Views.Header.tipRedo": "Refacere", "Common.Views.Header.tipSave": "Salvează", "Common.Views.Header.tipSearch": "Căutare", @@ -496,17 +598,20 @@ "Common.Views.ListSettingsDialog.textFromStorage": "Din serviciul stocare", "Common.Views.ListSettingsDialog.textFromUrl": "Prin URL-ul", "Common.Views.ListSettingsDialog.textNumbering": "Numerotat", + "Common.Views.ListSettingsDialog.textSelect": "Selectare din", "Common.Views.ListSettingsDialog.tipChange": "Modificare marcator", "Common.Views.ListSettingsDialog.txtBullet": "Marcator", "Common.Views.ListSettingsDialog.txtColor": "Culoare", "Common.Views.ListSettingsDialog.txtImage": "Imagine", + "Common.Views.ListSettingsDialog.txtImport": "Import", "Common.Views.ListSettingsDialog.txtNewBullet": "Marcator nou", + "Common.Views.ListSettingsDialog.txtNewImage": "Imagine nouă", "Common.Views.ListSettingsDialog.txtNone": "Niciunul", "Common.Views.ListSettingsDialog.txtOfText": "% din text", "Common.Views.ListSettingsDialog.txtSize": "Dimensiune", "Common.Views.ListSettingsDialog.txtStart": "Pornire de la", "Common.Views.ListSettingsDialog.txtSymbol": "Simbol", - "Common.Views.ListSettingsDialog.txtTitle": "Setări lista", + "Common.Views.ListSettingsDialog.txtTitle": "Setări listă", "Common.Views.ListSettingsDialog.txtType": "Tip", "Common.Views.OpenDialog.closeButtonText": "Închide fișierul", "Common.Views.OpenDialog.txtEncoding": "Codificare", @@ -631,7 +736,7 @@ "Common.Views.SearchPanel.tipNextResult": "Următorul rezultat", "Common.Views.SearchPanel.tipPreviousResult": "Rezultatul anterior", "Common.Views.SelectFileDlg.textLoading": "Încărcare", - "Common.Views.SelectFileDlg.textTitle": "Selectați sursa de date", + "Common.Views.SelectFileDlg.textTitle": "Selectare sursă de date", "Common.Views.SignDialog.textBold": "Aldin", "Common.Views.SignDialog.textCertificate": "Certificat", "Common.Views.SignDialog.textChange": "Modificare", @@ -640,7 +745,7 @@ "Common.Views.SignDialog.textNameError": "Numele semnatarului trebuie completat.", "Common.Views.SignDialog.textPurpose": "Scopul semnării acestui document", "Common.Views.SignDialog.textSelect": "Selectare", - "Common.Views.SignDialog.textSelectImage": "Selectați imaginea", + "Common.Views.SignDialog.textSelectImage": "Selectare imagine", "Common.Views.SignDialog.textSignature": "Semnătura arată ca", "Common.Views.SignDialog.textTitle": "Semnare document", "Common.Views.SignDialog.textUseImage": "sau faceți clic pe Selectare imagine pentru a selecta o imagine de utilizat ca semnătură", @@ -649,9 +754,9 @@ "Common.Views.SignDialog.tipFontSize": "Dimensiune font", "Common.Views.SignSettingsDialog.textAllowComment": "Se permite semnatarului să adauge comentarii în dialogul Semnare", "Common.Views.SignSettingsDialog.textDefInstruction": "Înninte de semnarea documentului, verificați corectitudinea conținutului acestuia.", - "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", - "Common.Views.SignSettingsDialog.textInfoName": "Nume", - "Common.Views.SignSettingsDialog.textInfoTitle": "Funcția semnatarului", + "Common.Views.SignSettingsDialog.textInfoEmail": "Adresa e-mail a semnatarului sugerat", + "Common.Views.SignSettingsDialog.textInfoName": "Semnatar sugerat", + "Common.Views.SignSettingsDialog.textInfoTitle": "Funcția semnatarului sugerat", "Common.Views.SignSettingsDialog.textInstructions": "Sugestie pentru semnatar", "Common.Views.SignSettingsDialog.textShowDate": "Se afișează data semnării în linia semnăturii", "Common.Views.SignSettingsDialog.textTitle": "Configurare semnătură", @@ -697,6 +802,7 @@ "PE.Controllers.LeftMenu.txtUntitled": "Fără titlu", "PE.Controllers.Main.applyChangesTextText": "Încărcarea datelor...", "PE.Controllers.Main.applyChangesTitleText": "Încărcare date", + "PE.Controllers.Main.confirmMaxChangesSize": "Numărul comenzilor depășește limita prevăzută pentru serverul dvs.
Apăsați butonul Anulare pentru a anula ultima comanda dvs. sau apăsați butonul Continuare pentru a executa comanda în mod local (încărcați fișierul sau copiați conținutul pentru a se asigura că nu se pierde nimic).", "PE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", "PE.Controllers.Main.criticalErrorExtText": "Apăsați OK pentru a vă întoarce la lista cu documente", "PE.Controllers.Main.criticalErrorTitle": "Eroare", @@ -705,6 +811,7 @@ "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.errorCannotPasteImg": "Imposibil de lipit imaginea din clipboardul, dar puteți să o salvați pe dispozitivul dvs și să o inserați de acolo, sau puteți să copiați imaginea fără text și să o lipiți în prezentarea.", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Deocamdată, imposibil de editat documentul.", "PE.Controllers.Main.errorComboSeries": "Pentru a crea o diagramă combinație, trebuie să selectați cel puțin două serii de date.", "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.", @@ -712,6 +819,7 @@ "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.errorDirectUrl": "Verificați linkul la document.
Trebuie să fie un link direct spre fișierul de încărcat.", "PE.Controllers.Main.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca", "PE.Controllers.Main.errorEditingSaveas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Salvare ca...", "PE.Controllers.Main.errorEmailClient": "Client de poștă electronică imposibil de găsit. ", @@ -797,8 +905,10 @@ "PE.Controllers.Main.textRequestMacros": "O macrocomandă trimite o solicitare URL. Doriți să permiteți ca solicitarea să fie trimisă către %1?", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Modul strict", + "PE.Controllers.Main.textTryQuickPrint": "Dvs v-ați ales opțiunea de Imprimare rapidă: imprimanta este setată se inprime un document întreg este ultima imprimantă utilizată sau imprimantă implicită.
Doriți să continuați?", "PE.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ă. ", "PE.Controllers.Main.textTryUndoRedoWarn": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "PE.Controllers.Main.textUndo": "Anulare", "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", @@ -1073,6 +1183,8 @@ "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 ai %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.Print.txtPrintRangeInvalid": "Interval de imprimare incorect", + "PE.Controllers.Print.txtPrintRangeSingleRange": "Introduceți numărul diapozitivului sau intervalul de diapozitive (ex. 5-12). Încă mai puteți utiliza opțiumea Imprimare în PDF.", "PE.Controllers.Search.notcriticalErrorTitle": "Avertisment", "PE.Controllers.Search.textNoTextFound": "Datele căutate nu au fost găsite. Alegeți alte opțiuni de căutare.", "PE.Controllers.Search.textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", @@ -1449,6 +1561,7 @@ "PE.Views.AnimationDialog.textPreviewEffect": "Previzualizare efect", "PE.Views.AnimationDialog.textTitle": "Mai multe efecte", "PE.Views.ChartSettings.text3dDepth": "Adâncime (% din bază)", + "PE.Views.ChartSettings.text3dHeight": "Înălțime (% din bază)", "PE.Views.ChartSettings.text3dRotation": "Rotație 3D", "PE.Views.ChartSettings.textAdvanced": "Afișare setări avansate", "PE.Views.ChartSettings.textAutoscale": "Autoscalare", @@ -1458,9 +1571,18 @@ "PE.Views.ChartSettings.textEditData": "Editare date", "PE.Views.ChartSettings.textHeight": "Înălțime", "PE.Views.ChartSettings.textKeepRatio": "Dimensiuni constante", + "PE.Views.ChartSettings.textLeft": "Stânga", + "PE.Views.ChartSettings.textNarrow": "Unghi de vizualizare îngust", + "PE.Views.ChartSettings.textPerspective": "Perspectivă", + "PE.Views.ChartSettings.textRight": "Dreapta", + "PE.Views.ChartSettings.textRightAngle": "Axe în unghi drept", "PE.Views.ChartSettings.textSize": "Dimensiune", "PE.Views.ChartSettings.textStyle": "Stil", + "PE.Views.ChartSettings.textUp": "În sus", + "PE.Views.ChartSettings.textWiden": "Unghi de vizualizare larg", "PE.Views.ChartSettings.textWidth": "Lățime", + "PE.Views.ChartSettings.textX": "Axa de rotație X", + "PE.Views.ChartSettings.textY": "Axa de rotație Y", "PE.Views.ChartSettingsAdvanced.textAlt": "Text alternativ", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Descriere", "PE.Views.ChartSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme automate, diagramei sau tabele.", @@ -1523,6 +1645,7 @@ "PE.Views.DocumentHolder.insertRowText": "Inserare rând", "PE.Views.DocumentHolder.insertText": "Inserare", "PE.Views.DocumentHolder.langText": "Selectați limba", + "PE.Views.DocumentHolder.latexText": "LaTeX", "PE.Views.DocumentHolder.leftText": "Stânga", "PE.Views.DocumentHolder.loadSpellText": "Încărcarea variantelor...", "PE.Views.DocumentHolder.mergeCellsText": "Îmbinare celule", @@ -1570,14 +1693,21 @@ "PE.Views.DocumentHolder.textRotate": "Rotire", "PE.Views.DocumentHolder.textRotate270": "Rotire 90° în sens contrar acelor de ceasornic", "PE.Views.DocumentHolder.textRotate90": "Rotire 90° în sensul acelor de ceasornic", + "PE.Views.DocumentHolder.textRulers": "Rigle", + "PE.Views.DocumentHolder.textSaveAsPicture": "Salvare ca imagine", "PE.Views.DocumentHolder.textShapeAlignBottom": "Aliniere jos", "PE.Views.DocumentHolder.textShapeAlignCenter": "Aliniere la centru", "PE.Views.DocumentHolder.textShapeAlignLeft": "Aliniere la stânga", "PE.Views.DocumentHolder.textShapeAlignMiddle": "Aliniere la mijloc", "PE.Views.DocumentHolder.textShapeAlignRight": "Aliniere la dreapta", "PE.Views.DocumentHolder.textShapeAlignTop": "Aliniere sus", + "PE.Views.DocumentHolder.textShowGridlines": "Afișare linii de grilă", + "PE.Views.DocumentHolder.textShowGuides": "Afișare ghiduri", "PE.Views.DocumentHolder.textSlideSettings": "Setări diapozitiv", + "PE.Views.DocumentHolder.textSmartGuides": "Ghiduri inteligente", + "PE.Views.DocumentHolder.textSnapObjects": "Fixare obiect la grilă", "PE.Views.DocumentHolder.textUndo": "Anulare", + "PE.Views.DocumentHolder.tipGuides": "Afișare ghiduri", "PE.Views.DocumentHolder.tipIsLocked": "La moment acest obiect este editat de către un alt utilizator.", "PE.Views.DocumentHolder.toDictionaryText": "Adăugare la dicționar", "PE.Views.DocumentHolder.txtAddBottom": "Adăugare bordură de jos", @@ -1651,7 +1781,7 @@ "PE.Views.DocumentHolder.txtPasteSourceFormat": "Păstrare formatare sursă", "PE.Views.DocumentHolder.txtPressLink": "Apăsați {0} și faceți clic pe linkul", "PE.Views.DocumentHolder.txtPreview": "Pornire expunere diapozitive", - "PE.Views.DocumentHolder.txtPrintSelection": "Imprimare selecție", + "PE.Views.DocumentHolder.txtPrintSelection": "Imprimarea selecției", "PE.Views.DocumentHolder.txtRemFractionBar": "Eliminare bară de fracție", "PE.Views.DocumentHolder.txtRemLimit": "Eliminare limită", "PE.Views.DocumentHolder.txtRemoveAccentChar": "Eliminare caracter cu accent", @@ -1676,6 +1806,7 @@ "PE.Views.DocumentHolder.txtUnderbar": "Bară dedesubt textului", "PE.Views.DocumentHolder.txtUngroup": "Anularea grupării", "PE.Views.DocumentHolder.txtWarnUrl": "Un clic pe acest link ar putea căuza daune dispozitivului și datelor dvs.
Sunteți sigur că doriți să continuați?", + "PE.Views.DocumentHolder.unicodeText": "Unicode", "PE.Views.DocumentHolder.vertAlignText": "Aliniere verticală", "PE.Views.DocumentPreview.goToSlideText": "Salt la dispozitivul", "PE.Views.DocumentPreview.slideIndexText": "Diapozitiv {0} din {1}", @@ -1727,6 +1858,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locația", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoane care au dreptul de acces", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subiect", + "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichete", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titlu", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S-a încărcat", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modificare permisiuni", @@ -1780,6 +1912,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "Sursă", "PE.Views.FileMenuPanels.Settings.txtProofing": "Verificare", "PE.Views.FileMenuPanels.Settings.txtPt": "Punct", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afișează butonul Imprimare rapidă în antetul aplicației de editare", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Imprimanta este setată se imprime documentul este ultima imprimantă utilizată sau imprimantă implicită", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Se activează toate", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Se activează toate macrocomenzile, fără notificare", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificarea ortografică", @@ -1794,6 +1928,7 @@ "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", "PE.Views.GridSettings.textCm": "cm", "PE.Views.GridSettings.textCustom": "Particularizat", + "PE.Views.GridSettings.textSpacing": "Spațiere", "PE.Views.GridSettings.textTitle": "Setări pentru grilă", "PE.Views.HeaderFooterDialog.applyAllText": "Se aplică pentru toate", "PE.Views.HeaderFooterDialog.applyText": "Aplicare", @@ -1934,6 +2069,18 @@ "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Dreapta", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Setări avansate", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "PE.Views.PrintWithPreview.txtAllPages": "Toate diapozitivele", + "PE.Views.PrintWithPreview.txtCurrentPage": "Diapozitiv curent", + "PE.Views.PrintWithPreview.txtCustomPages": "Imprimare particularizată", + "PE.Views.PrintWithPreview.txtEmptyTable": "Nu e nimic de topărit deoarece prezentarea este necompletată", + "PE.Views.PrintWithPreview.txtOf": "din {0}", + "PE.Views.PrintWithPreview.txtPage": "Diapozitiv", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "Numărul diapozitivului incorect", + "PE.Views.PrintWithPreview.txtPages": "Diapozitive", + "PE.Views.PrintWithPreview.txtPaperSize": "Dimensiune hârtie", + "PE.Views.PrintWithPreview.txtPrint": "Imprimare", + "PE.Views.PrintWithPreview.txtPrintPdf": "Imprimare în PDF", + "PE.Views.PrintWithPreview.txtPrintRange": "Interval de imprimare", "PE.Views.RightMenu.txtChartSettings": "Setări diagramă", "PE.Views.RightMenu.txtImageSettings": "Setări imagine", "PE.Views.RightMenu.txtParagraphSettings": "Setări paragraf", @@ -2015,7 +2162,7 @@ "PE.Views.ShapeSettingsAdvanced.textCenter": "La centru", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Număr de coloane", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Dimensiune sfârșit", - "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Tip sfârșit", + "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Stil sfârșit", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plat", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Răsturnat", "PE.Views.ShapeSettingsAdvanced.textFrom": "De la", @@ -2184,6 +2331,8 @@ "PE.Views.TableSettings.tipTop": "Adăugare numai bordură exterioară de sus", "PE.Views.TableSettings.txtGroupTable_Custom": "Particularizat", "PE.Views.TableSettings.txtGroupTable_Dark": "Întunecat", + "PE.Views.TableSettings.txtGroupTable_Light": "Luminos", + "PE.Views.TableSettings.txtGroupTable_Medium": "Mediu", "PE.Views.TableSettings.txtGroupTable_Optimal": "Cea mai bună potrivire pentru document", "PE.Views.TableSettings.txtNoBorders": "Fără borduri", "PE.Views.TableSettings.txtTable_Accent": "Accent", @@ -2268,6 +2417,7 @@ "PE.Views.Toolbar.capBtnComment": "Comentariu", "PE.Views.Toolbar.capBtnDateTime": "Dată și oră", "PE.Views.Toolbar.capBtnInsHeader": "Subsol", + "PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "PE.Views.Toolbar.capBtnInsSymbol": "Simbol", "PE.Views.Toolbar.capBtnSlideNum": "Număr diapozitiv", "PE.Views.Toolbar.capInsertAudio": "Audio", @@ -2278,6 +2428,7 @@ "PE.Views.Toolbar.capInsertShape": "Forma", "PE.Views.Toolbar.capInsertTable": "Tabel", "PE.Views.Toolbar.capInsertText": "Casetă text", + "PE.Views.Toolbar.capInsertTextArt": "TextArt", "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "Fişier", "PE.Views.Toolbar.capTabHome": "Acasă", @@ -2363,13 +2514,16 @@ "PE.Views.Toolbar.tipInsertAudio": "Inserare audio", "PE.Views.Toolbar.tipInsertChart": "Inserare diagramă", "PE.Views.Toolbar.tipInsertEquation": "Inserare ecuație", + "PE.Views.Toolbar.tipInsertHorizontalText": "Inserare casetă text orizontală", "PE.Views.Toolbar.tipInsertHyperlink": "Adăugare hyperlink", "PE.Views.Toolbar.tipInsertImage": "Inserare imagine", "PE.Views.Toolbar.tipInsertShape": "Inserare formă automată", + "PE.Views.Toolbar.tipInsertSmartArt": "Inserare SmartArt", "PE.Views.Toolbar.tipInsertSymbol": "Inserare simbol", "PE.Views.Toolbar.tipInsertTable": "Inserare tabel", "PE.Views.Toolbar.tipInsertText": "Inserare casetă text", "PE.Views.Toolbar.tipInsertTextArt": "Inserare TextArt", + "PE.Views.Toolbar.tipInsertVerticalText": "Inserare casetă text verticală", "PE.Views.Toolbar.tipInsertVideo": "Inserare video", "PE.Views.Toolbar.tipLineSpace": "Interlinie", "PE.Views.Toolbar.tipMarkers": "Marcatori", @@ -2474,11 +2628,19 @@ "PE.Views.ViewTab.textGridlines": "Linii de grilă", "PE.Views.ViewTab.textGuides": "Ghiduri", "PE.Views.ViewTab.textInterfaceTheme": "Tema interfeței", + "PE.Views.ViewTab.textLeftMenu": "Panou stânga", "PE.Views.ViewTab.textNotes": "Note", + "PE.Views.ViewTab.textRightMenu": "Panou dreapta", "PE.Views.ViewTab.textRulers": "Rigle", + "PE.Views.ViewTab.textShowGridlines": "Afișare linii de grilă", + "PE.Views.ViewTab.textShowGuides": "Afișare ghiduri", + "PE.Views.ViewTab.textSmartGuides": "Ghiduri inteligente", + "PE.Views.ViewTab.textSnapObjects": "Fixare obiect la grilă", "PE.Views.ViewTab.textStatusBar": "Bară de stare", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Se aliniază la diapozitiv", "PE.Views.ViewTab.tipFitToWidth": "Potrivire lățime", + "PE.Views.ViewTab.tipGridlines": "Afișare linii de grilă", + "PE.Views.ViewTab.tipGuides": "Afișare ghiduri", "PE.Views.ViewTab.tipInterfaceTheme": "Tema interfeței" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index bf26f1748..1c47c88e4 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -2540,6 +2540,7 @@ "PE.Views.Toolbar.tipPaste": "Вставить", "PE.Views.Toolbar.tipPreview": "Начать показ слайдов", "PE.Views.Toolbar.tipPrint": "Печать", + "PE.Views.Toolbar.tipPrintQuick": "Быстрая печать", "PE.Views.Toolbar.tipRedo": "Повторить", "PE.Views.Toolbar.tipSave": "Сохранить", "PE.Views.Toolbar.tipSaveCoauth": "Сохраните свои изменения, чтобы другие пользователи их увидели.", diff --git a/apps/spreadsheeteditor/embed/locale/ro.json b/apps/spreadsheeteditor/embed/locale/ro.json index 5cfbe4c80..03d1bc981 100644 --- a/apps/spreadsheeteditor/embed/locale/ro.json +++ b/apps/spreadsheeteditor/embed/locale/ro.json @@ -15,6 +15,11 @@ "SSE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "SSE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", "SSE.ApplicationController.errorForceSave": "S-a produs o eroare în timpul salvării fișierului. Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca... sau încercați din nou mai târziu.", + "SSE.ApplicationController.errorInconsistentExt": "Eroare la deschiderea fișierului.
Conținutul fișierului nu corespunde cu extensia numelui de fișier.", + "SSE.ApplicationController.errorInconsistentExtDocx": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unui format de document text (ex. docx), dar extensia numelui de fișier nu se potrivește: %1.", + "SSE.ApplicationController.errorInconsistentExtPdf": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unuia dintre următoarele formate: pdf/djvu/xps/oxps, dar extensia numelui de fișier nu se potrivește: %1.", + "SSE.ApplicationController.errorInconsistentExtPptx": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unui format de prezentare (ex. pptx), dar extensia numelui de fișier nu se potrivește: %1.", + "SSE.ApplicationController.errorInconsistentExtXlsx": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unui format de foaie de calcul (ex. xlsx), dar extensia numelui de fișier nu se potrivește: %1.", "SSE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "SSE.ApplicationController.errorTokenExpire": "Token de securitate din document a expirat.
Contactați administratorul dvs. de Server Documente.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea 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ă.", diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index 3af01ce59..e7f4d025c 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -1971,6 +1971,8 @@ "SSE.Views.DocumentHolder.txtUngroup": "Fjern fra gruppe", "SSE.Views.DocumentHolder.txtWidth": "Bredde", "SSE.Views.DocumentHolder.vertAlignText": "Lodret justering", + "SSE.Views.ExternalLinksDlg.textDelete": "Bryd links", + "SSE.Views.ExternalLinksDlg.textDeleteAll": "Bryd alle links", "SSE.Views.FieldSettingsDialog.strLayout": "Layout", "SSE.Views.FieldSettingsDialog.strSubtotals": "subtotaler", "SSE.Views.FieldSettingsDialog.textReport": "Rapportformular", @@ -2707,6 +2709,7 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Vælg rækkevidde", "SSE.Views.PrintTitlesDialog.textTitle": "Print Titler", "SSE.Views.PrintTitlesDialog.textTop": "Gentag rækker øverst", + "SSE.Views.PrintWithPreview.txtBottom": "Bund", "SSE.Views.PrintWithPreview.txtSave": "Gem", "SSE.Views.ProtectDialog.textExistName": "FEJL! Rækkevidde med en sådan titel findes allerede", "SSE.Views.ProtectDialog.textInvalidName": "Områdetitlen skal begynde med et bogstav og må kun indeholde bogstaver, tal og mellemrum.", @@ -3511,6 +3514,7 @@ "SSE.Views.ViewTab.tipFreeze": "Frys paneler", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface tema", "SSE.Views.ViewTab.tipSheetView": "Arkvisning", + "SSE.Views.WatchDialog.textBook": "Bog", "SSE.Views.WBProtection.hintAllowRanges": "Tillad redigeringsområder", "SSE.Views.WBProtection.hintProtectSheet": "Beskyt ark", "SSE.Views.WBProtection.hintProtectWB": "Beskyt projektmappe", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index b4771f501..2b3742e79 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -260,6 +260,8 @@ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste", "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess", "Common.Translation.textMoreButton": "Mehr", + "Common.Translation.tipFileLocked": "Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und es später als lokale Kopie speichern.", + "Common.Translation.tipFileReadOnly": "Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", @@ -402,6 +404,7 @@ "Common.Views.Header.tipDownload": "Datei herunterladen", "Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten", "Common.Views.Header.tipPrint": "Datei drucken", + "Common.Views.Header.tipPrintQuick": "Schnelldruck", "Common.Views.Header.tipRedo": "Wiederholen", "Common.Views.Header.tipSave": "Speichern", "Common.Views.Header.tipSearch": "Suchen", @@ -1021,6 +1024,7 @@ "SSE.Controllers.Main.textRequestMacros": "Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?", "SSE.Controllers.Main.textShape": "Form", "SSE.Controllers.Main.textStrict": "Formaler Modus", + "SSE.Controllers.Main.textTryQuickPrint": "Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?", "SSE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.", "SSE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.", "SSE.Controllers.Main.textUndo": "Rückgängig machen", @@ -2426,6 +2430,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugiesisch (Brasilien)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugiesisch (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Region", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumänisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russisch", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index a360f8958..1ecb7098f 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -393,6 +393,7 @@ "Common.Views.Header.textCompactView": "Hide Toolbar", "Common.Views.Header.textHideLines": "Hide Rulers", "Common.Views.Header.textHideStatusBar": "Combine sheet and status bars", + "Common.Views.Header.textReadOnly": "Read only", "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", "Common.Views.Header.textSaveBegin": "Saving...", "Common.Views.Header.textSaveChanged": "Modified", @@ -404,6 +405,7 @@ "Common.Views.Header.tipDownload": "Download file", "Common.Views.Header.tipGoEdit": "Edit current file", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Quick print", "Common.Views.Header.tipRedo": "Redo", "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipSearch": "Search", @@ -414,8 +416,6 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.tipPrintQuick": "Quick print", - "Common.Views.Header.textReadOnly": "Read only", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -654,6 +654,7 @@ "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", + "SSE.Controllers.DataTab.strSheet": "Sheet", "SSE.Controllers.DataTab.textColumns": "Columns", "SSE.Controllers.DataTab.textEmptyUrl": "You need to specify URL.", "SSE.Controllers.DataTab.textRows": "Rows", @@ -668,7 +669,6 @@ "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
Erase current settings and continue?", "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", - "SSE.Controllers.DataTab.strSheet": "Sheet", "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", @@ -1027,6 +1027,7 @@ "SSE.Controllers.Main.textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "SSE.Controllers.Main.textShape": "Shape", "SSE.Controllers.Main.textStrict": "Strict mode", + "SSE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "SSE.Controllers.Main.textUndo": "Undo", @@ -1299,7 +1300,6 @@ "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "SSE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "SSE.Controllers.Print.strAllSheets": "All Sheets", "SSE.Controllers.Print.textFirstCol": "First column", "SSE.Controllers.Print.textFirstRow": "First row", @@ -1377,55 +1377,55 @@ "SSE.Controllers.Toolbar.txtAccent_Hat": "Hat", "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "SSE.Controllers.Toolbar.txtBracket_Angle": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Curve": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", - "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object in parentheses", "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", - "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", - "SSE.Controllers.Toolbar.txtBracket_Line": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Round": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Square": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient in angle brackets", + "SSE.Controllers.Toolbar.txtBracket_Line": "Vertical bars", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right vertical bar", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left vertical bar", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Double vertical bars", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right double vertical bar", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left double vertical bar", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Floor", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", + "SSE.Controllers.Toolbar.txtBracket_Round": "Parentheses", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separators", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", + "SSE.Controllers.Toolbar.txtBracket_Square": "Square brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Right square brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Right and left square brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Left square brackets", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right ceiling", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left ceiling", "SSE.Controllers.Toolbar.txtDeleteCells": "Delete cells", "SSE.Controllers.Toolbar.txtExpand": "Expand and sort", "SSE.Controllers.Toolbar.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", - "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", - "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", - "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", - "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y over cap delta x", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "partial y over partial x", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "delta y over delta x", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", "SSE.Controllers.Toolbar.txtFractionSmall": "Small fraction", @@ -1473,64 +1473,64 @@ "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x", "SSE.Controllers.Toolbar.txtIntegral_dy": "Differential y", - "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with stacked limits", "SSE.Controllers.Toolbar.txtIntegralDouble": "Double integral", - "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", - "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral with stacked limits", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral with limits", "SSE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral with stacked limits", "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral with stacked limits", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral with limits", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral with limits", "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", - "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral with stacked limits", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral with limits", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral with limits", "SSE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", - "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", - "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! Invalid cell range", "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", @@ -1583,16 +1583,16 @@ "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of Quadratic Formula", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", "SSE.Controllers.Toolbar.txtRadicalSqrt": "Square root", - "SSE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "SSE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "SSE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "SSE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "e to the minus i omega t", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "x squared", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Y left superscript n left subscript one", "SSE.Controllers.Toolbar.txtScriptSub": "Subscript", "SSE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", @@ -2029,6 +2029,7 @@ "SSE.Views.DataTab.capDataFromText": "Get Data", "SSE.Views.DataTab.mniFromFile": "From Local TXT/CSV", "SSE.Views.DataTab.mniFromUrl": "From TXT/CSV Web Address", + "SSE.Views.DataTab.mniFromXMLFile": "From Local XML", "SSE.Views.DataTab.textBelow": "Summary Rows Below Detail", "SSE.Views.DataTab.textClear": "Clear Outline", "SSE.Views.DataTab.textColumns": "Ungroup Columns", @@ -2044,7 +2045,6 @@ "SSE.Views.DataTab.tipRemDuplicates": "Remove duplicate rows from a sheet", "SSE.Views.DataTab.tipToColumns": "Separate cell text into columns", "SSE.Views.DataTab.tipUngroup": "Ungroup range of cells", - "SSE.Views.DataTab.mniFromXMLFile": "From Local XML", "SSE.Views.DataValidationDialog.errorFormula": "The value currently evaluates to an error. Do you want to continue?", "SSE.Views.DataValidationDialog.errorInvalid": "The value you entered for the field \"{0}\" is invalid.", "SSE.Views.DataValidationDialog.errorInvalidDate": "The date you entered for the field \"{0}\" is invalid.", @@ -2434,6 +2434,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portuguese (Brazil)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Show the Quick Print button in the editor header", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Region", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", @@ -2455,8 +2457,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Workspace", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Show the Quick Print button in the editor header", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "With password", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Spreadsheet", @@ -2768,13 +2768,13 @@ "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Move and size with cells", "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically", - "SSE.Views.ImportFromXmlDialog.textTitle": "Import Data", - "SSE.Views.ImportFromXmlDialog.textSelectData": "Select data", "SSE.Views.ImportFromXmlDialog.textDestination": "Choose, where to place the data", - "SSE.Views.ImportFromXmlDialog.textNew": "New worksheet", "SSE.Views.ImportFromXmlDialog.textExist": "Existing worksheet", - "SSE.Views.ImportFromXmlDialog.txtEmpty": "This field is required", "SSE.Views.ImportFromXmlDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.ImportFromXmlDialog.textNew": "New worksheet", + "SSE.Views.ImportFromXmlDialog.textSelectData": "Select data", + "SSE.Views.ImportFromXmlDialog.textTitle": "Import Data", + "SSE.Views.ImportFromXmlDialog.txtEmpty": "This field is required", "SSE.Views.LeftMenu.tipAbout": "About", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Comments", diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index 8cb43f501..92abe2c9b 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -260,6 +260,8 @@ "Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ", "Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք", "Common.Translation.textMoreButton": "Ավելին", + "Common.Translation.tipFileLocked": "Փաստաթուղթը կողպված է խմբագրման համար:Դուք կարող եք փոփոխություններ կատարել և հետագայում պահպանել այն որպես տեղական պատճեն:", + "Common.Translation.tipFileReadOnly": "Փաստաթուղթը միայն կարդալու է և կողպված է խմբագրման համար:ուք կարող եք փոփոխություններ կատարել ևպահպանել դրա տեղային պատճենն ավելի ուշ :", "Common.Translation.warnFileLocked": "Ֆայլը խմբագրվում է մեկ այլ հավելվածում:Դուք կարող եք շարունակել խմբագրումը և պահպանել այն որպես պատճեն:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", @@ -391,6 +393,7 @@ "Common.Views.Header.textCompactView": "Թաքցնել գործիքագոտին", "Common.Views.Header.textHideLines": "Թաքցնել քանոնները", "Common.Views.Header.textHideStatusBar": "Միավորել թերթիկը և կարգավիճակի գծերը", + "Common.Views.Header.textReadOnly": "Միայն կարդալու", "Common.Views.Header.textRemoveFavorite": "Ջնջել ընտրված ցուցակից", "Common.Views.Header.textSaveBegin": "Պահում", "Common.Views.Header.textSaveChanged": "Փոփոխված", @@ -402,6 +405,7 @@ "Common.Views.Header.tipDownload": "Ներբեռնել նիշքը", "Common.Views.Header.tipGoEdit": "Խմբագրել ընթացիկ նիշքը", "Common.Views.Header.tipPrint": "Տպել նիշքը", + "Common.Views.Header.tipPrintQuick": "Արագ տպում", "Common.Views.Header.tipRedo": "Վերարկել", "Common.Views.Header.tipSave": "Պահպանել", "Common.Views.Header.tipSearch": "Որոնել", @@ -874,6 +878,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "Ընտրված վանդակների համար հնարավոր չեղավ կատարել գործողությունը։
Ընտրրեք տվյալների միատեսակ ընդգրկույթ, որը եղածից տարբեր է, և նորից փորձեք։", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Գործողությունը չի կարող կատարվել, քանի որ տարածքն ունի զտված վանդակներ։
Ապաթաքցրեք զտիչով թաքցված տարրերը և նորից փորձեք։", "SSE.Controllers.Main.errorBadImageUrl": "Նկարի URL-ը սխալ է", + "SSE.Controllers.Main.errorCannotPasteImg": "Մենք չենք կարող տեղադրել այս պատկերը սեղմատախտակից, բայց դուք կարող եք պահել այն ձեր սարքում և տեղադրել այնտեղից, կամ կարող եք պատճենել պատկերն առանց տեքստի և տեղադրել այն աղյուսակում:", "SSE.Controllers.Main.errorCannotUngroup": "Հնարավոր չէ ապախմբավորել: Ուրվագիծ սկսելու համար ընտրեք մանրամասների տողերը կամ սյունակները և խմբավորեք դրանք:", "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Դուք չեք կարող օգտագործել այս հրամանը պաշտպանված թերթիկի վրա:Այս հրամանն օգտագործելու համար պաշտպանազերծեք թերթիկը:
Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:", "SSE.Controllers.Main.errorChangeArray": "Չեք կարող փոխել զանգվածի մի մասը։", @@ -1021,6 +1026,7 @@ "SSE.Controllers.Main.textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:", "SSE.Controllers.Main.textShape": "Պատկեր", "SSE.Controllers.Main.textStrict": "Խիստ աշխատակարգ", + "SSE.Controllers.Main.textTryQuickPrint": "Դուք ընտրել եք Արագ տպում` ամբողջ փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա:
Ցանկանու՞մ եք շարունակել։", "SSE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։
«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել հավելյալ կարգավորումների միջոցով։", "SSE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:", "SSE.Controllers.Main.textUndo": "Հետարկել", @@ -2426,6 +2432,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Կետ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Պորտուգալերեն (Բրազիլիա)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Պորտուգալերեն (Պորտուգալիա)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Ցուցադրել «Արագ տպել» կոճակը խմբագրի վերնագրում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "Փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Տարածաշրջան", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Ռումիներեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ռուսերեն", diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index c52728b0b..95ccb60a2 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -260,6 +260,8 @@ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal", "Common.define.smartArt.textVerticalProcess": "Proses Vertikal", "Common.Translation.textMoreButton": "Lainnya", + "Common.Translation.tipFileLocked": "Dokumen terkunci untuk diedit. Anda dapat membuat perubahan dan menyimpannya sebagai salinan lokal nanti.", + "Common.Translation.tipFileReadOnly": "Dokumen hanya dapat dibaca dan dikunci untuk pengeditan. Anda dapat membuat perubahan dan menyimpan salinan lokalnya nanti.", "Common.Translation.warnFileLocked": "File sedang diedit di aplikasi lain. Anda bisa melanjutkan edit dan menyimpannya sebagai salinan.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", @@ -402,6 +404,7 @@ "Common.Views.Header.tipDownload": "Unduh File", "Common.Views.Header.tipGoEdit": "Edit file saat ini", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Cetak cepat", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipSearch": "Cari", @@ -1021,6 +1024,7 @@ "SSE.Controllers.Main.textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?", "SSE.Controllers.Main.textShape": "Bentuk", "SSE.Controllers.Main.textStrict": "Mode strict", + "SSE.Controllers.Main.textTryQuickPrint": "Anda telah memilih Cetak cepat: seluruh dokumen akan dicetak pada printer yang terakhir dipilih atau baku.
Apakah Anda hendak melanjutkan?", "SSE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", "SSE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", "SSE.Controllers.Main.textUndo": "Batalkan", @@ -2426,6 +2430,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Titik", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugis (Brazil)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugis (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Tampilkan tombol Cetak Cepat dalam header editor", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "Dokumen akan dicetak pada printer yang terakhir dipilih atau baku", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Wilayah", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romania", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rusia", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 86938d81f..7267d7fb6 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -260,6 +260,8 @@ "Common.define.smartArt.textVerticalPictureList": "縦方向画像リスト", "Common.define.smartArt.textVerticalProcess": "縦方向ステップ", "Common.Translation.textMoreButton": "もっと", + "Common.Translation.tipFileLocked": "ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。", + "Common.Translation.tipFileReadOnly": "ドキュメントは閲覧用で、編集はロックされています。後で変更し、そのローカルコピーを保存することができます。", "Common.Translation.warnFileLocked": "文書が他のアプリで編集されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", "Common.Translation.warnFileLockedBtnView": "見に開く", @@ -391,6 +393,7 @@ "Common.Views.Header.textCompactView": "ツールバーを表示しない", "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideStatusBar": "ステータスバーとシートを結合する", + "Common.Views.Header.textReadOnly": "閲覧のみ", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", "Common.Views.Header.textSaveBegin": "保存中...", "Common.Views.Header.textSaveChanged": "更新された", @@ -402,6 +405,7 @@ "Common.Views.Header.tipDownload": "ファイルをダウンロード", "Common.Views.Header.tipGoEdit": "このファイルを編集する", "Common.Views.Header.tipPrint": "印刷", + "Common.Views.Header.tipPrintQuick": "クイックプリント", "Common.Views.Header.tipRedo": "やり直し", "Common.Views.Header.tipSave": "保存", "Common.Views.Header.tipSearch": "検索", @@ -1021,6 +1025,7 @@ "SSE.Controllers.Main.textRequestMacros": "マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?", "SSE.Controllers.Main.textShape": "図形", "SSE.Controllers.Main.textStrict": "厳密なモード", + "SSE.Controllers.Main.textTryQuickPrint": "クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?", "SSE.Controllers.Main.textTryUndoRedo": "即時反映共同編集モードでは元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密モード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", "SSE.Controllers.Main.textTryUndoRedoWarn": "即時反映の共同編集モードでは、元に戻す/やり直し機能が無効になります。", "SSE.Controllers.Main.textUndo": "元に戻す", @@ -2426,6 +2431,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "ポイント", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "ポルトガル語 (ブラジル)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "ポルトガル語(ポルトガル)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "クイックプリントボタンをエディタヘッダーに表示", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "最後に選択した、またはデフォルトのプリンターで印刷されます。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "地域", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "ルーマニア語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "ロシア語", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index cf50164a7..6e4645481 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -402,6 +402,7 @@ "Common.Views.Header.tipDownload": "Transferir arquivo", "Common.Views.Header.tipGoEdit": "Editar arquivo atual", "Common.Views.Header.tipPrint": "Imprimir arquivo", + "Common.Views.Header.tipPrintQuick": "Impressão rápida", "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Salvar", "Common.Views.Header.tipSearch": "Pesquisar", @@ -2426,6 +2427,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Ponto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Português (Brasil)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Português (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Mostrar o botão Impressão rápida no cabeçalho do editor", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "O documento será impresso na última impressora selecionada ou padrão", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Região", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romeno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index cdebeab17..7b6a1bf2e 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -100,7 +100,168 @@ "Common.define.conditionalData.textUnique": "Unice", "Common.define.conditionalData.textValue": "Valoarea este", "Common.define.conditionalData.textYesterday": "Ieri", + "Common.define.smartArt.textAccentedPicture": "Imagine cu accent", + "Common.define.smartArt.textAccentProcess": "Proces accent", + "Common.define.smartArt.textAlternatingFlow": "Flux alternativ", + "Common.define.smartArt.textAlternatingHexagons": "Hexagoane alternante", + "Common.define.smartArt.textAlternatingPictureBlocks": "Blocuri de imagini alternative", + "Common.define.smartArt.textAlternatingPictureCircles": "Cercuri de imagini alternative", + "Common.define.smartArt.textArchitectureLayout": "Aspect arhitectură", + "Common.define.smartArt.textArrowRibbon": "Panglică săgeată", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Proces de imagini ascendent cu accent", + "Common.define.smartArt.textBalance": "Balanță", + "Common.define.smartArt.textBasicBendingProcess": "Proces de îndoire de bază", + "Common.define.smartArt.textBasicBlockList": "Listă de blocare de bază", + "Common.define.smartArt.textBasicChevronProcess": "Proces zigzag de bază", + "Common.define.smartArt.textBasicCycle": "Ciclu de bază", + "Common.define.smartArt.textBasicMatrix": "Matrice de bază", + "Common.define.smartArt.textBasicPie": "Structură radială de bază", + "Common.define.smartArt.textBasicProcess": "Proces de bază", + "Common.define.smartArt.textBasicPyramid": "Piramidă de bază", + "Common.define.smartArt.textBasicRadial": "Radială de bază", + "Common.define.smartArt.textBasicTarget": "Țintă de bază", + "Common.define.smartArt.textBasicTimeline": "Cronologie de bază", + "Common.define.smartArt.textBasicVenn": "Venn de bază", + "Common.define.smartArt.textBendingPictureAccentList": "Listă de accentuare imagini", + "Common.define.smartArt.textBendingPictureBlocks": "Blocuri de imagini cu îndoire", + "Common.define.smartArt.textBendingPictureCaption": "Legendă de imagini cu îndoire", + "Common.define.smartArt.textBendingPictureCaptionList": "Listă de legende de imagini cu îndoire", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Imagini cu îndoire și text semitransparent", + "Common.define.smartArt.textBlockCycle": "Ciclu în bloc", + "Common.define.smartArt.textBubblePictureList": "Listă de imagini cu bule", + "Common.define.smartArt.textCaptionedPictures": "Imagini cu legendă", + "Common.define.smartArt.textChevronAccentProcess": "Proces accent zigzag", + "Common.define.smartArt.textChevronList": "Listă zigzag", + "Common.define.smartArt.textCircleAccentTimeline": "Cronologie accent circular", + "Common.define.smartArt.textCircleArrowProcess": "Proces cu săgeți circular", + "Common.define.smartArt.textCirclePictureHierarchy": "Ierarhie cu imagini circulare", + "Common.define.smartArt.textCircleProcess": "Proces circular", + "Common.define.smartArt.textCircleRelationship": "Relație circulară", + "Common.define.smartArt.textCircularBendingProcess": "Proces de îndoire circulară", + "Common.define.smartArt.textCircularPictureCallout": "Explicație cu imagini circulare", + "Common.define.smartArt.textClosedChevronProcess": "Proces zigzag închis", + "Common.define.smartArt.textContinuousArrowProcess": "Săgeți de proces continuu", + "Common.define.smartArt.textContinuousBlockProcess": "Proces de blocare continuu", + "Common.define.smartArt.textContinuousCycle": "Ciclu continuu", + "Common.define.smartArt.textContinuousPictureList": "Listă continuă de imagini", + "Common.define.smartArt.textConvergingArrows": "Săgeți convergente", + "Common.define.smartArt.textConvergingRadial": "Radială convergentă", + "Common.define.smartArt.textConvergingText": "Text convergent", + "Common.define.smartArt.textCounterbalanceArrows": "Săgeți contrabalansate", + "Common.define.smartArt.textCycle": "Ciclu", + "Common.define.smartArt.textCycleMatrix": "Matrice ciclică", + "Common.define.smartArt.textDescendingBlockList": "Listă de blocuri descrescătoare", + "Common.define.smartArt.textDescendingProcess": "Proces descendent", + "Common.define.smartArt.textDetailedProcess": "Proces detaliat", + "Common.define.smartArt.textDivergingArrows": "Săgeți divergente", + "Common.define.smartArt.textDivergingRadial": "Radială divergentă", + "Common.define.smartArt.textEquation": "Ecuație", + "Common.define.smartArt.textFramedTextPicture": "Imagine cu text încadrat", + "Common.define.smartArt.textFunnel": "Extrage", + "Common.define.smartArt.textGear": "Roată dințată", + "Common.define.smartArt.textGridMatrix": "Matrice grilă", + "Common.define.smartArt.textGroupedList": "Listă grupată", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Organigramă semicirculară", + "Common.define.smartArt.textHexagonCluster": "Cluster hexagonal", + "Common.define.smartArt.textHexagonRadial": "Hexagoane radiale", + "Common.define.smartArt.textHierarchy": "Ierarhie", + "Common.define.smartArt.textHierarchyList": "Listă ierarhică", + "Common.define.smartArt.textHorizontalBulletList": "Listă orizontală cu marcatori", + "Common.define.smartArt.textHorizontalHierarchy": "Ierarhie orizontală", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Ierarhie orizontală etichetată", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Ierarhie orizontală pe mai multe niveluri", + "Common.define.smartArt.textHorizontalOrganizationChart": "Organigramă orizontală", + "Common.define.smartArt.textHorizontalPictureList": "Listă orizontală de imagini", + "Common.define.smartArt.textIncreasingArrowProcess": "Proces cu săgeți crescător", + "Common.define.smartArt.textIncreasingCircleProcess": "Proces circular crescător", + "Common.define.smartArt.textInterconnectedBlockProcess": "Proces cu blocuri interconectate", + "Common.define.smartArt.textInterconnectedRings": "Inele interconectate", + "Common.define.smartArt.textInvertedPyramid": "Piramidă inversată", + "Common.define.smartArt.textLabeledHierarchy": "Ierarhie etichetată", + "Common.define.smartArt.textLinearVenn": "Venn liniar", + "Common.define.smartArt.textLinedList": "Listă liniată", + "Common.define.smartArt.textList": "Listă", + "Common.define.smartArt.textMatrix": "Matrice", + "Common.define.smartArt.textMultidirectionalCycle": "Ciclu multidirecțional", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigramă nume și titlu", + "Common.define.smartArt.textNestedTarget": "Țintă imbricată", + "Common.define.smartArt.textNondirectionalCycle": "Ciclu nondirecțional", + "Common.define.smartArt.textOpposingArrows": "Săgeți opuse", + "Common.define.smartArt.textOpposingIdeas": "Idei opuse", + "Common.define.smartArt.textOrganizationChart": "Organigramă", + "Common.define.smartArt.textOther": "Altele", + "Common.define.smartArt.textPhasedProcess": "Proces în etape", + "Common.define.smartArt.textPicture": "Imagine", + "Common.define.smartArt.textPictureAccentBlocks": "Blocuri de imagini cu accent", + "Common.define.smartArt.textPictureAccentList": "Listă de accentuare imagini", + "Common.define.smartArt.textPictureAccentProcess": "Proces accent imagine", + "Common.define.smartArt.textPictureCaptionList": "Listă legendă imagine", + "Common.define.smartArt.textPictureFrame": "RamăDeFotografie", + "Common.define.smartArt.textPictureGrid": "Grilă de imagini", + "Common.define.smartArt.textPictureLineup": "Aliniere imagini", + "Common.define.smartArt.textPictureOrganizationChart": "Organigramă cu imagini", + "Common.define.smartArt.textPictureStrips": "Benzi cu imagini", + "Common.define.smartArt.textPieProcess": "Proces structură radială", + "Common.define.smartArt.textPlusAndMinus": "Plus și minus", + "Common.define.smartArt.textProcess": "Proces", + "Common.define.smartArt.textProcessArrows": "Săgeți proces", + "Common.define.smartArt.textProcessList": "Listă proces", + "Common.define.smartArt.textPyramid": "Piramidă", + "Common.define.smartArt.textPyramidList": "Listă piramidală", + "Common.define.smartArt.textRadialCluster": "Cluster radial", + "Common.define.smartArt.textRadialCycle": "Ciclu radial", + "Common.define.smartArt.textRadialList": "Listă radială", + "Common.define.smartArt.textRadialPictureList": "Listă radială de imagini", + "Common.define.smartArt.textRadialVenn": "Venn radială", + "Common.define.smartArt.textRandomToResultProcess": "Proces de idei aleatoare cu rezultat", + "Common.define.smartArt.textRelationship": "Relație", + "Common.define.smartArt.textRepeatingBendingProcess": "Proces de îndoire repetată", + "Common.define.smartArt.textReverseList": "Inversare listă", + "Common.define.smartArt.textSegmentedCycle": "Ciclu segmentat", + "Common.define.smartArt.textSegmentedProcess": "Proces segmentat", + "Common.define.smartArt.textSegmentedPyramid": "Piramidă segmentată", + "Common.define.smartArt.textSnapshotPictureList": "Listă imagini instantanee", + "Common.define.smartArt.textSpiralPicture": "Imagini în spirală", + "Common.define.smartArt.textSquareAccentList": "Listă accent pătrat", + "Common.define.smartArt.textStackedList": "Listă suprapusă", + "Common.define.smartArt.textStackedVenn": "Venn suprapus", + "Common.define.smartArt.textStaggeredProcess": "Proces decalat", + "Common.define.smartArt.textStepDownProcess": "Proces descendent", + "Common.define.smartArt.textStepUpProcess": "Proces ascendent", + "Common.define.smartArt.textSubStepProcess": "Proces cu subpași", + "Common.define.smartArt.textTabbedArc": "Arc cu file", + "Common.define.smartArt.textTableHierarchy": "Ierarhie tabel", + "Common.define.smartArt.textTableList": "Listă tabel", + "Common.define.smartArt.textTabList": "Listă file", + "Common.define.smartArt.textTargetList": "Listă ținte", + "Common.define.smartArt.textTextCycle": "Ciclu text", + "Common.define.smartArt.textThemePictureAccent": "Imagini cu accent și temă", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Imagini cu accent alternativ și temă", + "Common.define.smartArt.textThemePictureGrid": "Grilă de imagini cu temă", + "Common.define.smartArt.textTitledMatrix": "Matrice cu titlu", + "Common.define.smartArt.textTitledPictureAccentList": "Listă imagini cu titlu și accent", + "Common.define.smartArt.textTitledPictureBlocks": "Blocuri de imagini cu titlu", + "Common.define.smartArt.textTitlePictureLineup": "Imagini aliniate cu titlu", + "Common.define.smartArt.textTrapezoidList": "Listă trapezoidală", + "Common.define.smartArt.textUpwardArrow": "Săgeată ascendentă", + "Common.define.smartArt.textVaryingWidthList": "Listă de lățime variabilă", + "Common.define.smartArt.textVerticalAccentList": "Listă verticală cu accent", + "Common.define.smartArt.textVerticalArrowList": "Listă săgeți verticale", + "Common.define.smartArt.textVerticalBendingProcess": "Proces de îndoire verticală", + "Common.define.smartArt.textVerticalBlockList": "Listă bloc vertical", + "Common.define.smartArt.textVerticalBoxList": "Listă de blocuri verticală", + "Common.define.smartArt.textVerticalBracketList": "Listă paranteze verticale", + "Common.define.smartArt.textVerticalBulletList": "Listă verticală cu marcatori", + "Common.define.smartArt.textVerticalChevronList": "Listă zigzag verticală", + "Common.define.smartArt.textVerticalCircleList": "Listă cercuri verticale", + "Common.define.smartArt.textVerticalCurvedList": "Listă curbată verticală", + "Common.define.smartArt.textVerticalEquation": "Ecuație verticală", + "Common.define.smartArt.textVerticalPictureAccentList": "Listă accent imagine verticală", + "Common.define.smartArt.textVerticalPictureList": "Listă verticală imagine", + "Common.define.smartArt.textVerticalProcess": "Proces vertical", "Common.Translation.textMoreButton": "Mai multe", + "Common.Translation.tipFileLocked": "Acest document este blocat pentru editare. Îl puteți modifica și salva mai târziu ca o copie pe unitatea locală.", + "Common.Translation.tipFileReadOnly": "Documentul este disponibil doar în citire și este blocat pentru editare. Puteți îl modifica și salva mai târziu ca o copie pe unitatea locală.", "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", @@ -232,6 +393,7 @@ "Common.Views.Header.textCompactView": "Ascundere bară de instrumente", "Common.Views.Header.textHideLines": "Ascundere rigle", "Common.Views.Header.textHideStatusBar": "A îmbina selectorii foii de lucru cu bara de stare", + "Common.Views.Header.textReadOnly": "Doar în citire", "Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe", "Common.Views.Header.textSaveBegin": "Salvare în progres...", "Common.Views.Header.textSaveChanged": "Modificat", @@ -243,6 +405,7 @@ "Common.Views.Header.tipDownload": "Descărcare fișier", "Common.Views.Header.tipGoEdit": "Editare acest fișier", "Common.Views.Header.tipPrint": "Se imprimă tot fișierul", + "Common.Views.Header.tipPrintQuick": "Imprimare rapidă", "Common.Views.Header.tipRedo": "Refacere", "Common.Views.Header.tipSave": "Salvează", "Common.Views.Header.tipSearch": "Căutare", @@ -264,23 +427,26 @@ "Common.Views.ImageFromUrlDialog.txtEmpty": "Câmp obligatoriu", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\" ", "Common.Views.ListSettingsDialog.textBulleted": "Cu marcatori", - "Common.Views.ListSettingsDialog.textFromFile": "Din Fișier", + "Common.Views.ListSettingsDialog.textFromFile": "Din fișier", "Common.Views.ListSettingsDialog.textFromStorage": "Din serviciul stocare", "Common.Views.ListSettingsDialog.textFromUrl": "Prin URL-ul", "Common.Views.ListSettingsDialog.textNumbering": "Numerotat", + "Common.Views.ListSettingsDialog.textSelect": "Selectare din", "Common.Views.ListSettingsDialog.tipChange": "Modificare marcator", "Common.Views.ListSettingsDialog.txtBullet": "Marcator", "Common.Views.ListSettingsDialog.txtColor": "Culoare", "Common.Views.ListSettingsDialog.txtImage": "Imagine", + "Common.Views.ListSettingsDialog.txtImport": "Import", "Common.Views.ListSettingsDialog.txtNewBullet": "Marcator nou", + "Common.Views.ListSettingsDialog.txtNewImage": "Imagine nouă", "Common.Views.ListSettingsDialog.txtNone": "Niciunul", "Common.Views.ListSettingsDialog.txtOfText": "% din text", "Common.Views.ListSettingsDialog.txtSize": "Dimensiune", "Common.Views.ListSettingsDialog.txtStart": "Pornire de la", "Common.Views.ListSettingsDialog.txtSymbol": "Simbol", - "Common.Views.ListSettingsDialog.txtTitle": "Setări lista", + "Common.Views.ListSettingsDialog.txtTitle": "Setări listă", "Common.Views.ListSettingsDialog.txtType": "Tip", - "Common.Views.OpenDialog.closeButtonText": "Închide fișierul", + "Common.Views.OpenDialog.closeButtonText": "Închidere fișier", "Common.Views.OpenDialog.textInvalidRange": "Zona de celule nu este validă", "Common.Views.OpenDialog.textSelectData": "Selectare date", "Common.Views.OpenDialog.txtAdvanced": "Avansat", @@ -315,6 +481,7 @@ "Common.Views.Plugins.textStart": "Pornire", "Common.Views.Plugins.textStop": "Oprire", "Common.Views.Protection.hintAddPwd": "Criptare utilizând o parolă", + "Common.Views.Protection.hintDelPwd": "Ștergere parola", "Common.Views.Protection.hintPwd": "Modificarea sau eliminarea parolei", "Common.Views.Protection.hintSignature": "Adăugarea semnăturii digitale sau liniei de semnătură", "Common.Views.Protection.txtAddPwd": "Adăugare parola", @@ -385,6 +552,7 @@ "Common.Views.ReviewPopover.textCancel": "Anulare", "Common.Views.ReviewPopover.textClose": "Închidere", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Comentați aici", "Common.Views.ReviewPopover.textMention": "+mentionare pentru a furniza accesul la document și a trimite un e-mail", "Common.Views.ReviewPopover.textMentionNotify": "+mentionare pentru a notifica utilizatorul prin e-mail", "Common.Views.ReviewPopover.textOpenAgain": "Deschidere din nou", @@ -400,6 +568,7 @@ "Common.Views.SearchPanel.textCaseSensitive": "Sensibil la litere mari și mici", "Common.Views.SearchPanel.textCell": "Celula", "Common.Views.SearchPanel.textCloseSearch": "Închide căutare", + "Common.Views.SearchPanel.textContentChanged": "Documentul a fost modificat.", "Common.Views.SearchPanel.textFind": "Găsire", "Common.Views.SearchPanel.textFindAndReplace": "Găsire și înlocuire", "Common.Views.SearchPanel.textFormula": "Formula", @@ -414,6 +583,7 @@ "Common.Views.SearchPanel.textReplaceAll": "Înlocuire peste tot", "Common.Views.SearchPanel.textReplaceWith": "Înlocuire cu", "Common.Views.SearchPanel.textSearch": "Căutare", + "Common.Views.SearchPanel.textSearchAgain": "{0}Efectuați o nouă căutare{1} pentru rezultate mai precise.", "Common.Views.SearchPanel.textSearchHasStopped": "Сăutarea s-a oprit", "Common.Views.SearchPanel.textSearchOptions": "Opțiuni de căutare", "Common.Views.SearchPanel.textSearchResults": "Rezultatele căutării: {0}/{1}", @@ -429,7 +599,7 @@ "Common.Views.SearchPanel.tipNextResult": "Următorul rezultat", "Common.Views.SearchPanel.tipPreviousResult": "Rezultatul anterior", "Common.Views.SelectFileDlg.textLoading": "Încărcare", - "Common.Views.SelectFileDlg.textTitle": "Selectați sursa de date", + "Common.Views.SelectFileDlg.textTitle": "Selectare sursă de date", "Common.Views.SignDialog.textBold": "Aldin", "Common.Views.SignDialog.textCertificate": "Certificat", "Common.Views.SignDialog.textChange": "Modificare", @@ -438,7 +608,7 @@ "Common.Views.SignDialog.textNameError": "Numele semnatarului trebuie completat.", "Common.Views.SignDialog.textPurpose": "Scopul semnării acestui document", "Common.Views.SignDialog.textSelect": "Selectare", - "Common.Views.SignDialog.textSelectImage": "Selectați imaginea", + "Common.Views.SignDialog.textSelectImage": "Selectare imagine", "Common.Views.SignDialog.textSignature": "Semnătura arată ca", "Common.Views.SignDialog.textTitle": "Semnare document", "Common.Views.SignDialog.textUseImage": "sau faceți clic pe Selectare imagine pentru a selecta o imagine de utilizat ca semnătură", @@ -446,9 +616,10 @@ "Common.Views.SignDialog.tipFontName": "Denumire font", "Common.Views.SignDialog.tipFontSize": "Dimensiune font", "Common.Views.SignSettingsDialog.textAllowComment": "Se permite semnatarului să adauge comentarii în dialogul Semnare", - "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", - "Common.Views.SignSettingsDialog.textInfoName": "Nume", - "Common.Views.SignSettingsDialog.textInfoTitle": "Funcția semnatarului", + "Common.Views.SignSettingsDialog.textDefInstruction": "Înninte de semnarea documentului, verificați corectitudinea conținutului acestuia.", + "Common.Views.SignSettingsDialog.textInfoEmail": "Adresa e-mail a semnatarului sugerat", + "Common.Views.SignSettingsDialog.textInfoName": "Semnatar sugerat", + "Common.Views.SignSettingsDialog.textInfoTitle": "Funcția semnatarului sugerat", "Common.Views.SignSettingsDialog.textInstructions": "Sugestie pentru semnatar", "Common.Views.SignSettingsDialog.textShowDate": "Se afișează data semnării în linia semnăturii", "Common.Views.SignSettingsDialog.textTitle": "Configurare semnătură", @@ -488,6 +659,7 @@ "SSE.Controllers.DataTab.textRows": "Rânduri", "SSE.Controllers.DataTab.textWizard": "Text în coloane", "SSE.Controllers.DataTab.txtDataValidation": "Validarea datelor", + "SSE.Controllers.DataTab.txtErrorExternalLink": "Eroare: actealizarea a eșuat", "SSE.Controllers.DataTab.txtExpand": "Extindere", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Datele lângă selecție nu se vor elimina. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", "SSE.Controllers.DataTab.txtExtendDataValidation": "Zona selectată conține celulele pentru care regulile de validare a datelor nu sunt configutare.
Doriți să aplicați regulile de validare acestor celule?", @@ -515,8 +687,8 @@ "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Lățimea coloanei {0} simboluri ({1} pixeli)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Înălțime rând {0} puncte ({1} pixeli)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Faceți clic pe link pentu a-l deschide sau apăsați și țineți apăsat butonul mouse-ului pentru a selecta celula.", - "SSE.Controllers.DocumentHolder.textInsertLeft": "Inserare la stânga", - "SSE.Controllers.DocumentHolder.textInsertTop": "Inserare dedesubt", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Inserare coloane la stânga", + "SSE.Controllers.DocumentHolder.textInsertTop": "Inserare rând deasupra", "SSE.Controllers.DocumentHolder.textPasteSpecial": "Lipire specială", "SSE.Controllers.DocumentHolder.textStopExpand": "Anularea extinderei automate de tabel", "SSE.Controllers.DocumentHolder.textSym": "sym", @@ -686,6 +858,9 @@ "SSE.Controllers.LeftMenu.textWorkbook": "Registru de calcul", "SSE.Controllers.LeftMenu.txtUntitled": "Fără titlu", "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.confirmAddCellWatches": "Această acţiune va adăuga {0} supravegheri în celule.
Doriți să continuați?", + "SSE.Controllers.Main.confirmAddCellWatchesMax": "Această acţiune va adăuga numai {0} supravegheri în celule din motivul economisirii spațiului de memorie.
Doriți să continuați?", + "SSE.Controllers.Main.confirmMaxChangesSize": "Numărul comenzilor depășește limita prevăzută pentru serverul dvs.
Apăsați butonul Anulare pentru a anula ultima comanda dvs. sau apăsați butonul Continuare pentru a executa comanda în mod local (încărcați fișierul sau copiați conținutul pentru a se asigura că nu se pierde nimic).", "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?", @@ -703,6 +878,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "Operațiunea nu poare fi efectuată pentru celulele selectate.
Selectați o altă zonă de date uniformă și încercați din nou.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
Reafișați elementele filtrate și încercați din nou.", "SSE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", + "SSE.Controllers.Main.errorCannotPasteImg": "Imposibil de lipit imaginea din clipboardul, dar puteți să o salvați pe dispozitivul dvs și să o inserați de acolo, sau puteți să copiați imaginea fără text și să o lipiți în foaia de calcul.", "SSE.Controllers.Main.errorCannotUngroup": "Imposibil de anulat grupare. Pentru a crea o schiță, selectați rândurile sau coloanele de detalii și le grupați.", "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Nu puteți folosi această comandă într-o foaie de calcul protejată. Ca să o folosiți, protejarea foii trebuie anulată.
Introducerea parolei poate fi necesară.", "SSE.Controllers.Main.errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", @@ -721,6 +897,7 @@ "SSE.Controllers.Main.errorDefaultMessage": "Codul de eroare: %1", "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Dvs încercați să ștergeți o coloană care conține celule blocate. Este imposibil să ștergeți celulele blocate până când foaia de calcul rămâne protejată.
Trebuie să anulați protecția foii de calcul ca să ștergeți celula blocată. Este posibil să fie necesară introducerea parolei.", "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Dvs încercați să ștergeți un rând care conține celule blocate. Este imposibil să ștergeți celulele blocate până când foaia de calcul rămâne protejată.
Trebuie să anulați protecția foii de calcul ca să ștergeți celula blocată. Este posibil să fie necesară introducerea parolei.", + "SSE.Controllers.Main.errorDirectUrl": "Verificați linkul la document.
Trebuie să fie un link direct spre fișierul de încărcat.", "SSE.Controllers.Main.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca", "SSE.Controllers.Main.errorEditingSaveas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Salvare ca...", "SSE.Controllers.Main.errorEditView": "Editările în vizualizarea curentă nu pot fi efectuate dar și o vizualizare nouă nu puteți crea deoarece unii dintre ei sunt editate în acest moment.", @@ -739,6 +916,11 @@ "SSE.Controllers.Main.errorFrmlWrongReferences": "Funcția se referă la o foaie inexistentă.
Verificați datele și încercați din nou.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operațiunea nu poate fi efectuată pentru zonă de celule selectată.
Selectați o zonă de celule în așa fel încât primul rând din tabel să coincide
și tabelul rezultat să suprapune peste tabelul curent.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operațiunea nu poate fi efectuată pentru zonă de celule selectată.
Selectați o zonă de celule care nu conține alte tabele.", + "SSE.Controllers.Main.errorInconsistentExt": "Eroare la deschiderea fișierului.
Conținutul fișierului nu corespunde cu extensia numelui de fișier.", + "SSE.Controllers.Main.errorInconsistentExtDocx": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unui format de document text (ex. docx), dar extensia numelui de fișier nu se potrivește: %1.", + "SSE.Controllers.Main.errorInconsistentExtPdf": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unuia dintre următoarele formate: pdf/djvu/xps/oxps, dar extensia numelui de fișier nu se potrivește: %1.", + "SSE.Controllers.Main.errorInconsistentExtPptx": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unui format de prezentare (ex. pptx), dar extensia numelui de fișier nu se potrivește: %1.", + "SSE.Controllers.Main.errorInconsistentExtXlsx": "Eroare la deschiderea fișierului.
Conținutul fișierului corespunde unui format de foaie de calcul (ex. xlsx), dar extensia numelui de fișier nu se potrivește: %1.", "SSE.Controllers.Main.errorInvalidRef": "Introduceți numele din selecție corect sau o referință validă de accesat.", "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", "SSE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", @@ -817,6 +999,7 @@ "SSE.Controllers.Main.textCloseTip": "Faceți clic pentru a închide sfatul", "SSE.Controllers.Main.textConfirm": "Confirmare", "SSE.Controllers.Main.textContactUs": "Contactați Departamentul de Vânzări", + "SSE.Controllers.Main.textContinue": "Continuare", "SSE.Controllers.Main.textConvertEquation": "Această ecuație a fost creată în versiunea mai veche a editorului de ecuații, care nu mai este acceptată. Dacă doriți să o editați, trebuie să o convertiți în formatul Office Math ML.
Doriți să o convertiți acum?", "SSE.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.", "SSE.Controllers.Main.textDisconnect": "Conexiune pierdută", @@ -843,8 +1026,10 @@ "SSE.Controllers.Main.textRequestMacros": "O macrocomandă trimite o solicitare URL. Doriți să permiteți ca solicitarea să fie trimisă către %1?", "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modul strict", + "SSE.Controllers.Main.textTryQuickPrint": "Dvs v-ați ales opțiunea de Imprimare rapidă: imprimanta este setată se inprime un document întreg este ultima imprimantă utilizată sau imprimantă implicită.
Doriți să continuați?", "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.textUndo": "Anulare", "SSE.Controllers.Main.textYes": "Da", "SSE.Controllers.Main.titleLicenseExp": "Licența a expirat", "SSE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", @@ -1271,6 +1456,17 @@ "SSE.Controllers.Toolbar.txtFunction_Sinh": "Fincția sinus hiperbolic", "SSE.Controllers.Toolbar.txtFunction_Tan": "Funcția tangentă", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Fincția tangentă hiperbolică", + "SSE.Controllers.Toolbar.txtGroupCell_Custom": "Particularizat", + "SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Date și model", + "SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Pozitiv, negativ și neutru", + "SSE.Controllers.Toolbar.txtGroupCell_NoName": "Fără nume", + "SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Formatul de număr", + "SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Stiluri celule tematice", + "SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Titluri și anteturi", + "SSE.Controllers.Toolbar.txtGroupTable_Custom": "Particularizat", + "SSE.Controllers.Toolbar.txtGroupTable_Dark": "Întunecat", + "SSE.Controllers.Toolbar.txtGroupTable_Light": "Luminos", + "SSE.Controllers.Toolbar.txtGroupTable_Medium": "Mediu", "SSE.Controllers.Toolbar.txtInsertCells": "Inserare celule", "SSE.Controllers.Toolbar.txtIntegral": "Integrală", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferențială de theta", @@ -1640,27 +1836,42 @@ "SSE.Views.ChartSettings.strLineWeight": "Stil linie", "SSE.Views.ChartSettings.strSparkColor": "Culoare", "SSE.Views.ChartSettings.strTemplate": "Șablon", + "SSE.Views.ChartSettings.text3dDepth": "Adâncime (% din bază)", + "SSE.Views.ChartSettings.text3dHeight": "Înălțime (% din bază)", + "SSE.Views.ChartSettings.text3dRotation": "Rotație 3D", "SSE.Views.ChartSettings.textAdvanced": "Afișare setări avansate", + "SSE.Views.ChartSettings.textAutoscale": "Autoscalare", "SSE.Views.ChartSettings.textBorderSizeErr": "Valoarea introdusă nu este corectă.
Selectați valoarea cuprinsă înte 0 pt și 1584 pt.", "SSE.Views.ChartSettings.textChangeType": "Modificare tip", "SSE.Views.ChartSettings.textChartType": "Modificare tip diagramă", + "SSE.Views.ChartSettings.textDefault": "Rotație implicită", + "SSE.Views.ChartSettings.textDown": "În jos", "SSE.Views.ChartSettings.textEditData": "Schimbare data și locația", "SSE.Views.ChartSettings.textFirstPoint": "Primul punct", "SSE.Views.ChartSettings.textHeight": "Înălțime", "SSE.Views.ChartSettings.textHighPoint": "Punct ridicat", "SSE.Views.ChartSettings.textKeepRatio": "Dimensiuni constante", "SSE.Views.ChartSettings.textLastPoint": "Ultimul punct", + "SSE.Views.ChartSettings.textLeft": "Stânga", "SSE.Views.ChartSettings.textLowPoint": "Punct scăzut", "SSE.Views.ChartSettings.textMarkers": "Marcatori", + "SSE.Views.ChartSettings.textNarrow": "Unghi de vizualizare îngust", "SSE.Views.ChartSettings.textNegativePoint": "Punct negativ", + "SSE.Views.ChartSettings.textPerspective": "Perspectivă", "SSE.Views.ChartSettings.textRanges": "Zonă de date", + "SSE.Views.ChartSettings.textRight": "Dreapta", + "SSE.Views.ChartSettings.textRightAngle": "Axe în unghi drept", "SSE.Views.ChartSettings.textSelectData": "Selectare date", "SSE.Views.ChartSettings.textShow": "Afișează", "SSE.Views.ChartSettings.textSize": "Dimensiune", "SSE.Views.ChartSettings.textStyle": "Stil", "SSE.Views.ChartSettings.textSwitch": "Comutare rând/coloană", "SSE.Views.ChartSettings.textType": "Tip", + "SSE.Views.ChartSettings.textUp": "În sus", + "SSE.Views.ChartSettings.textWiden": "Unghi de vizualizare larg", "SSE.Views.ChartSettings.textWidth": "Lățime", + "SSE.Views.ChartSettings.textX": "Axa de rotație X", + "SSE.Views.ChartSettings.textY": "Axa de rotație Y", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "EROARE! Numărul maxim de puncte de date într-o serie de date pentru diagram este 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "EROARE! Numărul maxim de serii de date dintr-o diagramă este 255", "SSE.Views.ChartSettingsDlg.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.", @@ -1813,8 +2024,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Eliminare dubluri", "SSE.Views.DataTab.capBtnTextToCol": "Text în coloane", "SSE.Views.DataTab.capBtnUngroup": "Anularea grupării", + "SSE.Views.DataTab.capDataExternalLinks": "Linkuri externe", "SSE.Views.DataTab.capDataFromText": "Obținere date", - "SSE.Views.DataTab.mniFromFile": "Din fișier local", + "SSE.Views.DataTab.mniFromFile": "Din fișier local TXT/CSV", "SSE.Views.DataTab.mniFromUrl": "Prin adresa URL a fișierului TXT/CSV", "SSE.Views.DataTab.textBelow": "Rânduri rezumative sub detalii", "SSE.Views.DataTab.textClear": "Golire schiță", @@ -1826,6 +2038,7 @@ "SSE.Views.DataTab.tipCustomSort": "Sortare particularizată", "SSE.Views.DataTab.tipDataFromText": "Colectare date din fișierul text/CSV", "SSE.Views.DataTab.tipDataValidation": "Validarea datelor", + "SSE.Views.DataTab.tipExternalLinks": "Vizualizați toate celelalte fișiere de care este legată această foaie de calcul ", "SSE.Views.DataTab.tipGroup": "Grupare zonă de celule", "SSE.Views.DataTab.tipRemDuplicates": "Eliminarea rândurilor dublate dintr-o foaie", "SSE.Views.DataTab.tipToColumns": "Scindarea textului din celulă în coloane", @@ -1911,15 +2124,20 @@ "SSE.Views.DigitalFilterDialog.textUse1": "Utilizați ? pentru a reprezenta orice caracter unic", "SSE.Views.DigitalFilterDialog.textUse2": "Utilizați * pentru a reprezenta o serie de caractere", "SSE.Views.DigitalFilterDialog.txtTitle": "Filtru particularizat", + "SSE.Views.DocumentHolder.advancedEquationText": "Setări ecuație", "SSE.Views.DocumentHolder.advancedImgText": "Setări avansate imagine", "SSE.Views.DocumentHolder.advancedShapeText": "Setări avansate forma", "SSE.Views.DocumentHolder.advancedSlicerText": "Setări avansate slicer", + "SSE.Views.DocumentHolder.allLinearText": "Tot - Linear", + "SSE.Views.DocumentHolder.allProfText": "Tot - Profesional", "SSE.Views.DocumentHolder.bottomCellText": "Aliniere jos", "SSE.Views.DocumentHolder.bulletsText": "Marcatori și numerotare", "SSE.Views.DocumentHolder.centerCellText": "Aliniere la mijloc", "SSE.Views.DocumentHolder.chartDataText": "Selectați datele diagramei", "SSE.Views.DocumentHolder.chartText": "Setări avansate diagrama", "SSE.Views.DocumentHolder.chartTypeText": "Modificare tip diagramă", + "SSE.Views.DocumentHolder.currLinearText": "Curent - Linear", + "SSE.Views.DocumentHolder.currProfText": "Curent - Profesional", "SSE.Views.DocumentHolder.deleteColumnText": "Coloană", "SSE.Views.DocumentHolder.deleteRowText": "Rând", "SSE.Views.DocumentHolder.deleteTableText": "Tabel", @@ -1933,6 +2151,7 @@ "SSE.Views.DocumentHolder.insertColumnRightText": "Coloană din dreapta", "SSE.Views.DocumentHolder.insertRowAboveText": "Rândul deasupra", "SSE.Views.DocumentHolder.insertRowBelowText": "Rândul dedesubt", + "SSE.Views.DocumentHolder.latexText": "LaTeX", "SSE.Views.DocumentHolder.originalSizeText": "Dimensiunea reală", "SSE.Views.DocumentHolder.removeHyperlinkText": "Eliminare hyperlink", "SSE.Views.DocumentHolder.selectColumnText": "Întreaga coloană", @@ -1996,7 +2215,7 @@ "SSE.Views.DocumentHolder.tipMarkersStar": "Marcatori stele", "SSE.Views.DocumentHolder.topCellText": "Aliniere sus", "SSE.Views.DocumentHolder.txtAccounting": "Contabilitate", - "SSE.Views.DocumentHolder.txtAddComment": "Adaugă comentariu", + "SSE.Views.DocumentHolder.txtAddComment": "Adăugare comentariu", "SSE.Views.DocumentHolder.txtAddNamedRange": "Definire nume", "SSE.Views.DocumentHolder.txtArrange": "Aranjare", "SSE.Views.DocumentHolder.txtAscending": "Ascendent", @@ -2042,6 +2261,7 @@ "SSE.Views.DocumentHolder.txtPaste": "Lipire", "SSE.Views.DocumentHolder.txtPercentage": "Procentaj", "SSE.Views.DocumentHolder.txtReapply": "Reaplicare", + "SSE.Views.DocumentHolder.txtRefresh": "Actualizare", "SSE.Views.DocumentHolder.txtRow": "Întreg rând", "SSE.Views.DocumentHolder.txtRowHeight": "Setare rând la înălțime", "SSE.Views.DocumentHolder.txtScientific": "Științific ", @@ -2061,7 +2281,19 @@ "SSE.Views.DocumentHolder.txtTime": "Oră", "SSE.Views.DocumentHolder.txtUngroup": "Anularea grupării", "SSE.Views.DocumentHolder.txtWidth": "Lățime", + "SSE.Views.DocumentHolder.unicodeText": "Unicode", "SSE.Views.DocumentHolder.vertAlignText": "Aliniere verticală", + "SSE.Views.ExternalLinksDlg.closeButtonText": "Închidere", + "SSE.Views.ExternalLinksDlg.textDelete": "Întrerupere linkuri", + "SSE.Views.ExternalLinksDlg.textDeleteAll": "Întrerupere toate linkuri", + "SSE.Views.ExternalLinksDlg.textOk": "OK", + "SSE.Views.ExternalLinksDlg.textSource": "Sursă", + "SSE.Views.ExternalLinksDlg.textStatus": "Stare", + "SSE.Views.ExternalLinksDlg.textUnknown": "Necunoscut", + "SSE.Views.ExternalLinksDlg.textUpdate": "Actualizare valori", + "SSE.Views.ExternalLinksDlg.textUpdateAll": "Actualizare totală", + "SSE.Views.ExternalLinksDlg.textUpdating": "În curs de actualizare...", + "SSE.Views.ExternalLinksDlg.txtTitle": "Linkuri externe", "SSE.Views.FieldSettingsDialog.strLayout": "Aspect", "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotaluri", "SSE.Views.FieldSettingsDialog.textReport": "Formular de raport", @@ -2125,6 +2357,7 @@ "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locația", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoane care au dreptul de acces", "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subiect", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichete", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titlu", "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S-a încărcat", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modificare permisiuni", @@ -2199,6 +2432,8 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punct", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugeză (Brazilia)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugheză", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Afișează butonul Imprimare rapidă în antetul aplicației de editare", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "Imprimanta este setată se imprime documentul este ultima imprimantă utilizată sau imprimantă implicită", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Regiune", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Română", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rusă", @@ -2285,7 +2520,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minim", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punct minim", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativ", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Сuloare particularizată", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Adăugați o culoare nouă particularizată", "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", @@ -2407,7 +2642,7 @@ "SSE.Views.FormatSettingsDialog.txtUpto3": "Până la trei cifre (131/135)", "SSE.Views.FormulaDialog.sDescription": "Descriere", "SSE.Views.FormulaDialog.textGroupDescription": "Selectați grup de funcții", - "SSE.Views.FormulaDialog.textListDescription": "Selectați o funcție", + "SSE.Views.FormulaDialog.textListDescription": "Selectați funcția", "SSE.Views.FormulaDialog.txtRecommended": "Recomandate", "SSE.Views.FormulaDialog.txtSearch": "Căutare", "SSE.Views.FormulaDialog.txtTitle": "Inserare funcție", @@ -2417,6 +2652,7 @@ "SSE.Views.FormulaTab.textManual": "Manual", "SSE.Views.FormulaTab.tipCalculate": "Calculare", "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calculare întreg registrul de calcul", + "SSE.Views.FormulaTab.tipWatch": "Adăugare celule în lista Fereastră supraveghere", "SSE.Views.FormulaTab.txtAdditional": "Suplimentar", "SSE.Views.FormulaTab.txtAutosum": "Însumare automată", "SSE.Views.FormulaTab.txtAutosumTip": "Sumă", @@ -2425,6 +2661,7 @@ "SSE.Views.FormulaTab.txtFormulaTip": "Inserare funcție", "SSE.Views.FormulaTab.txtMore": "Mai multe funcții", "SSE.Views.FormulaTab.txtRecent": "Utilizate recent", + "SSE.Views.FormulaTab.txtWatch": "Fereastră de supraveghere", "SSE.Views.FormulaWizard.textAny": "Orice", "SSE.Views.FormulaWizard.textArgument": "Argument", "SSE.Views.FormulaWizard.textFunction": "Funcție", @@ -2454,7 +2691,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Cursiv", "SSE.Views.HeaderFooterDialog.textLeft": "Stânga", "SSE.Views.HeaderFooterDialog.textMaxError": "Șirul de text este prea lung. Reduceți numărul de caractere introduse.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Сuloare particularizată", + "SSE.Views.HeaderFooterDialog.textNewColor": "Adăugați o culoare nouă particularizată", "SSE.Views.HeaderFooterDialog.textOdd": "Pagină impară", "SSE.Views.HeaderFooterDialog.textPageCount": "Numerotarea paginilor", "SSE.Views.HeaderFooterDialog.textPageNum": "Număr de pagină", @@ -2722,6 +2959,7 @@ "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Descriere", "SSE.Views.PivotSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme automate, diagramei sau tabele.", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Titlu", + "SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Potrivire automată a lățimii coloanelor la actualizare", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Zonă de date", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Sursa de date", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Afișare câmpuri în zona de filtru raport", @@ -2764,12 +3002,21 @@ "SSE.Views.PivotTable.tipCreatePivot": "Inserare tabel Pivot", "SSE.Views.PivotTable.tipGrandTotals": "Afișare sau ascundere totaluri generale", "SSE.Views.PivotTable.tipRefresh": "Actualizarea sursei de informație", + "SSE.Views.PivotTable.tipRefreshCurrent": "Actualizarea informațiilor din sursa de date pentru tabelul curent", "SSE.Views.PivotTable.tipSelect": "Selectați tabel Pivot întreg", "SSE.Views.PivotTable.tipSubtotals": "Afișare sau ascundere subtotaluri", "SSE.Views.PivotTable.txtCreate": "Inserare tabel", + "SSE.Views.PivotTable.txtGroupPivot_Custom": "Particularizat", + "SSE.Views.PivotTable.txtGroupPivot_Dark": "Întunecat", + "SSE.Views.PivotTable.txtGroupPivot_Light": "Luminos", + "SSE.Views.PivotTable.txtGroupPivot_Medium": "Mediu", "SSE.Views.PivotTable.txtPivotTable": "Tabelă Pivot", "SSE.Views.PivotTable.txtRefresh": "Actualizare", + "SSE.Views.PivotTable.txtRefreshAll": "Reîmprospătare totală", "SSE.Views.PivotTable.txtSelect": "Selectare", + "SSE.Views.PivotTable.txtTable_PivotStyleDark": "Stil întunecat tabel pivot", + "SSE.Views.PivotTable.txtTable_PivotStyleLight": "Stil luminos tabel pivot", + "SSE.Views.PivotTable.txtTable_PivotStyleMedium": "Stil mediu tabel pivot", "SSE.Views.PrintSettings.btnDownload": "Salvare și descărcare", "SSE.Views.PrintSettings.btnPrint": "Salvare și imprimare", "SSE.Views.PrintSettings.strBottom": "Jos", @@ -2804,7 +3051,7 @@ "SSE.Views.PrintSettings.textRepeatLeft": "Coloane de repetat la stânga", "SSE.Views.PrintSettings.textRepeatTop": "Rânduri de repetat la început", "SSE.Views.PrintSettings.textSelection": "Selecție", - "SSE.Views.PrintSettings.textSettings": "Setăti foaia", + "SSE.Views.PrintSettings.textSettings": "Setări foaia", "SSE.Views.PrintSettings.textShowDetails": "Afișare detalii", "SSE.Views.PrintSettings.textShowGrid": "Afișare linii de grilă", "SSE.Views.PrintSettings.textShowHeadings": "Afișare anteturi de rânduri și coloane", @@ -2887,18 +3134,18 @@ "SSE.Views.ProtectDialog.txtSelLocked": "Selectează celulele blocate", "SSE.Views.ProtectDialog.txtSelUnLocked": "Selectează celulele deblocate", "SSE.Views.ProtectDialog.txtSheetDescription": "Împiedicați modificările nedorite prin limitarea permisiunilor pentru editare.", - "SSE.Views.ProtectDialog.txtSheetTitle": "Protejarea foii de calcul", + "SSE.Views.ProtectDialog.txtSheetTitle": "Protejare foaie", "SSE.Views.ProtectDialog.txtSort": "Sortare", "SSE.Views.ProtectDialog.txtWarning": "Atenție: Dacă pierdeți sau uitați parola, ea nu poate fi recuperată. Să o păstrați într-un loc sigur.", "SSE.Views.ProtectDialog.txtWBDescription": "Puteți proteja structura registrului de calcul prin parolă pentru împiedicarea utilizatorilor de a vizualiza registrele de calcul mascate, de a adăuga, deplasa, șterge, masca și redenumi registrele de calcul. ", - "SSE.Views.ProtectDialog.txtWBTitle": "Protejarea structurei registrului de calcul", + "SSE.Views.ProtectDialog.txtWBTitle": "Protecție structură registru de lucru", "SSE.Views.ProtectRangesDlg.guestText": "Invitat", "SSE.Views.ProtectRangesDlg.lockText": "Blocat", "SSE.Views.ProtectRangesDlg.textDelete": "Ștergere", "SSE.Views.ProtectRangesDlg.textEdit": "Editare", "SSE.Views.ProtectRangesDlg.textEmpty": "Zonele permise pentru editare nu sunt", "SSE.Views.ProtectRangesDlg.textNew": "Nou", - "SSE.Views.ProtectRangesDlg.textProtect": "Protejarea foii de calcul", + "SSE.Views.ProtectRangesDlg.textProtect": "Protejare foaie", "SSE.Views.ProtectRangesDlg.textPwd": "Parola", "SSE.Views.ProtectRangesDlg.textRange": "Zona", "SSE.Views.ProtectRangesDlg.textRangesDesc": "Zonele deblocate prin parolă când foaia de calcul este protejată (se aplică numai celulelor blocate)", @@ -3007,13 +3254,13 @@ "SSE.Views.ShapeSettingsAdvanced.textArrows": "Săgeți", "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Potrivire automată", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Dimensiune inițială", - "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Tip început", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Stil început", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Unghi ascuțit", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Jos", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Tip capăt", "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Număr de coloane", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Dimensiune sfârșit", - "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Tip sfârșit", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Stil sfârșit", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plat", "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Răsturnat", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Înălțime", @@ -3222,8 +3469,8 @@ "SSE.Views.Statusbar.itemTabColor": "Culoare filă", "SSE.Views.Statusbar.itemUnProtect": "Anularea protecției", "SSE.Views.Statusbar.RenameDialog.errNameExists": "O foaie de calcul cu același nume există deja.", - "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Numele foii nu poate conține următoarele caracterele: \\/*?[]:", - "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Numele foii", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Numele foii nu poate conține următoarele caracterele: \\/*?[]: sau caracterul ' la începutul sau sfârșitul", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nume foaie", "SSE.Views.Statusbar.selectAllSheets": "Selectare totală foi", "SSE.Views.Statusbar.sheetIndexText": "Foaia de calcul {0} din {1}", "SSE.Views.Statusbar.textAverage": "Medie", @@ -3296,6 +3543,13 @@ "SSE.Views.TableSettingsAdvanced.textAltTip": "Furnizarea textului alternativ pentru conținut vizual destinat persoanelor cu deficiențe de vedere și cognitive pentru a le ajuta să înțăleagă mai bine conținutul unei imagini, forme automate, diagramei sau tabele.", "SSE.Views.TableSettingsAdvanced.textAltTitle": "Titlu", "SSE.Views.TableSettingsAdvanced.textTitle": "Tabel - Setări avansate", + "SSE.Views.TableSettingsAdvanced.txtGroupTable_Custom": "Particularizat", + "SSE.Views.TableSettingsAdvanced.txtGroupTable_Dark": "Întunecat", + "SSE.Views.TableSettingsAdvanced.txtGroupTable_Light": "Luminos", + "SSE.Views.TableSettingsAdvanced.txtGroupTable_Medium": "Mediu", + "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleDark": "Stil tabel întunecat", + "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleLight": "Stil tabel deschis", + "SSE.Views.TableSettingsAdvanced.txtTable_TableStyleMedium": "Stil tabel mediu", "SSE.Views.TextArtSettings.strBackground": "Culoare de fundal", "SSE.Views.TextArtSettings.strColor": "Culoare", "SSE.Views.TextArtSettings.strFill": "Umplere", @@ -3346,6 +3600,7 @@ "SSE.Views.Toolbar.capBtnComment": "Comentariu", "SSE.Views.Toolbar.capBtnInsHeader": "Antet și subsol", "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", + "SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "SSE.Views.Toolbar.capBtnInsSymbol": "Simbol", "SSE.Views.Toolbar.capBtnMargins": "Margini", "SSE.Views.Toolbar.capBtnPageOrient": "Orientare", @@ -3365,6 +3620,7 @@ "SSE.Views.Toolbar.capInsertSpark": "Diagramă sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.capInsertText": "Casetă text", + "SSE.Views.Toolbar.capInsertTextart": "TextArt", "SSE.Views.Toolbar.mniImageFromFile": "Imaginea din fișier", "SSE.Views.Toolbar.mniImageFromStorage": "Imaginea din serviciul stocare", "SSE.Views.Toolbar.mniImageFromUrl": "Imaginea prin URL", @@ -3390,6 +3646,7 @@ "SSE.Views.Toolbar.textClockwise": "Unghi de rotație în sens orar", "SSE.Views.Toolbar.textColorScales": "Scale de culori", "SSE.Views.Toolbar.textCounterCw": "Unghi de rotație în sens antiorar", + "SSE.Views.Toolbar.textCustom": "Particularizat", "SSE.Views.Toolbar.textDataBars": "Bare de date", "SSE.Views.Toolbar.textDelLeft": "Deplasare celule la stânga", "SSE.Views.Toolbar.textDelUp": "Deplasare celule în sus", @@ -3501,16 +3758,19 @@ "SSE.Views.Toolbar.tipInsertChart": "Inserare diagramă", "SSE.Views.Toolbar.tipInsertChartSpark": "Inserare diagramă", "SSE.Views.Toolbar.tipInsertEquation": "Inserare ecuație", + "SSE.Views.Toolbar.tipInsertHorizontalText": "Inserare casetă text orizontală", "SSE.Views.Toolbar.tipInsertHyperlink": "Adăugare hyperlink", "SSE.Views.Toolbar.tipInsertImage": "Inserare imagine", "SSE.Views.Toolbar.tipInsertOpt": "Inserare celule", "SSE.Views.Toolbar.tipInsertShape": "Inserare formă automată", "SSE.Views.Toolbar.tipInsertSlicer": "Inserare slicer", + "SSE.Views.Toolbar.tipInsertSmartArt": "Inserare SmartArt", "SSE.Views.Toolbar.tipInsertSpark": "Inserare diagramă sparkline", "SSE.Views.Toolbar.tipInsertSymbol": "Inserare simbol", "SSE.Views.Toolbar.tipInsertTable": "Inserare tabel", "SSE.Views.Toolbar.tipInsertText": "Inserare casetă text", "SSE.Views.Toolbar.tipInsertTextart": "Inserare TextArt", + "SSE.Views.Toolbar.tipInsertVerticalText": "Inserare casetă text verticală", "SSE.Views.Toolbar.tipMerge": "Îmbinare și centrare", "SSE.Views.Toolbar.tipNone": "Niciuna", "SSE.Views.Toolbar.tipNumFormat": "Formatul de număr", @@ -3540,6 +3800,7 @@ "SSE.Views.Toolbar.txtAdditional": "Suplimentar", "SSE.Views.Toolbar.txtAscending": "Ascendent", "SSE.Views.Toolbar.txtAutosumTip": "Sumă", + "SSE.Views.Toolbar.txtCellStyle": "Stil celula", "SSE.Views.Toolbar.txtClearAll": "Toate", "SSE.Views.Toolbar.txtClearComments": "Comentarii", "SSE.Views.Toolbar.txtClearFilter": "Golire filtru", @@ -3671,8 +3932,10 @@ "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.textInterfaceTheme": "Tema interfeței", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema de interfață", + "SSE.Views.ViewTab.textLeftMenu": "Panou stânga", "SSE.Views.ViewTab.textManager": "Manager vizualizări", + "SSE.Views.ViewTab.textRightMenu": "Panou dreapta", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afișare umbră pentru panouri înghețate", "SSE.Views.ViewTab.textUnFreeze": "Dezghețare panouri", "SSE.Views.ViewTab.textZeros": "Afișare un zero", @@ -3682,6 +3945,17 @@ "SSE.Views.ViewTab.tipFreeze": "Înghețare panouri", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema interfeței", "SSE.Views.ViewTab.tipSheetView": "Vizualizare de foaie", + "SSE.Views.WatchDialog.closeButtonText": "Închidere", + "SSE.Views.WatchDialog.textAdd": "Adăugare supraveghere", + "SSE.Views.WatchDialog.textBook": "Registru", + "SSE.Views.WatchDialog.textCell": "Celula", + "SSE.Views.WatchDialog.textDelete": "Ștergere supraveghere", + "SSE.Views.WatchDialog.textDeleteAll": "Ștergere totală", + "SSE.Views.WatchDialog.textFormula": "Formula", + "SSE.Views.WatchDialog.textName": "Denumire", + "SSE.Views.WatchDialog.textSheet": "Foaie", + "SSE.Views.WatchDialog.textValue": "Valoare", + "SSE.Views.WatchDialog.txtTitle": "Fereastră de supraveghere", "SSE.Views.WBProtection.hintAllowRanges": "Se permite modificarea zonelor", "SSE.Views.WBProtection.hintProtectSheet": "Protejarea foii de calcul", "SSE.Views.WBProtection.hintProtectWB": "Protejarea registrului de calcul", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 1b75d0265..5e77dbb34 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -3781,6 +3781,7 @@ "SSE.Views.Toolbar.tipPrColor": "Цвет заливки", "SSE.Views.Toolbar.tipPrint": "Печать", "SSE.Views.Toolbar.tipPrintArea": "Область печати", + "SSE.Views.Toolbar.tipPrintQuick": "Быстрая печать", "SSE.Views.Toolbar.tipPrintTitles": "Печатать заголовки", "SSE.Views.Toolbar.tipRedo": "Повторить", "SSE.Views.Toolbar.tipSave": "Сохранить", From 43ddfbf351980d986eab1b3c540b6315d07f4c2c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 9 Dec 2022 16:52:07 +0300 Subject: [PATCH 14/54] [Mobile] Update translation --- apps/documenteditor/mobile/locale/az.json | 2 ++ apps/documenteditor/mobile/locale/be.json | 2 ++ apps/documenteditor/mobile/locale/bg.json | 4 +++- apps/documenteditor/mobile/locale/ca.json | 4 +++- apps/documenteditor/mobile/locale/cs.json | 4 +++- apps/documenteditor/mobile/locale/da.json | 4 +++- apps/documenteditor/mobile/locale/de.json | 4 +++- apps/documenteditor/mobile/locale/el.json | 4 +++- apps/documenteditor/mobile/locale/en.json | 4 ++-- apps/documenteditor/mobile/locale/es.json | 4 +++- apps/documenteditor/mobile/locale/eu.json | 4 +++- apps/documenteditor/mobile/locale/fi.json | 4 +++- apps/documenteditor/mobile/locale/fr.json | 4 +++- apps/documenteditor/mobile/locale/gl.json | 4 +++- apps/documenteditor/mobile/locale/hu.json | 4 +++- apps/documenteditor/mobile/locale/hy.json | 8 +++++--- apps/documenteditor/mobile/locale/id.json | 4 +++- apps/documenteditor/mobile/locale/it.json | 4 +++- apps/documenteditor/mobile/locale/ja.json | 4 +++- apps/documenteditor/mobile/locale/ko.json | 2 ++ apps/documenteditor/mobile/locale/lo.json | 2 ++ apps/documenteditor/mobile/locale/lv.json | 4 +++- apps/documenteditor/mobile/locale/ms.json | 4 +++- apps/documenteditor/mobile/locale/nb.json | 4 +++- apps/documenteditor/mobile/locale/nl.json | 2 ++ apps/documenteditor/mobile/locale/pl.json | 4 +++- apps/documenteditor/mobile/locale/pt-pt.json | 4 +++- apps/documenteditor/mobile/locale/pt.json | 4 +++- apps/documenteditor/mobile/locale/ro.json | 4 +++- apps/documenteditor/mobile/locale/ru.json | 2 ++ apps/documenteditor/mobile/locale/sk.json | 2 ++ apps/documenteditor/mobile/locale/sl.json | 2 ++ apps/documenteditor/mobile/locale/sv.json | 4 +++- apps/documenteditor/mobile/locale/tr.json | 4 +++- apps/documenteditor/mobile/locale/uk.json | 2 ++ apps/documenteditor/mobile/locale/vi.json | 4 +++- apps/documenteditor/mobile/locale/zh-tw.json | 4 +++- apps/documenteditor/mobile/locale/zh.json | 4 +++- apps/presentationeditor/mobile/locale/be.json | 2 +- apps/presentationeditor/mobile/locale/sl.json | 2 +- apps/presentationeditor/mobile/locale/uk.json | 2 +- apps/spreadsheeteditor/mobile/locale/da.json | 2 +- apps/spreadsheeteditor/mobile/locale/pt-pt.json | 4 ++-- 43 files changed, 112 insertions(+), 38 deletions(-) diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index 729f77c79..7e3f52253 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -561,7 +561,9 @@ "warnNoLicense": "Siz 1% redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnNoLicenseUsers": "1% redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnProcessRightsChange": "Bu faylı redaktə etmək icazəniz yoxdur.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textNoTextFound": "Text not found", + "textOk": "Ok", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 5e916e711..00d654644 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -555,6 +555,8 @@ "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRemember": "Remember my choice", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 13d523cfa..7735ff24f 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.", "warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per conèixer les condicions d'actualització personal.", "warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", - "warnProcessRightsChange": "No teniu permís per editar aquest fitxer." + "warnProcessRightsChange": "No teniu permís per editar aquest fitxer.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "El fitxer està protegit", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index c1adf6ad2..a66a59cea 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Zabezpečený soubor", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 65c56eafe..2e7f0099a 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", - "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten." + "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Geschützte Datei", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index a2c624ade..b8d7b4f3b 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου." + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Προστατευμένο Αρχείο", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 013b6cd6d..c414be24b 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -476,8 +476,6 @@ "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "notcriticalErrorTitle": "Warning", - "textDocumentProtected": "The document is protected. Edit settings are not available", - "textOk": "Ok", "SDK": { " -Section ": " -Section ", "above": "above", @@ -545,11 +543,13 @@ "textClose": "Close", "textContactUs": "Contact sales", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", "textNoTextFound": "Text not found", + "textOk": "Ok", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 9d6e4ca32..f2130fcd8 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con su administrador para saber más.", "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", - "warnProcessRightsChange": "No tiene permiso para editar este archivo." + "warnProcessRightsChange": "No tiene permiso para editar este archivo.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Archivo protegido", diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json index 5341e891a..5569b5f7c 100644 --- a/apps/documenteditor/mobile/locale/eu.json +++ b/apps/documenteditor/mobile/locale/eu.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan zure administratzailearekin informazio gehiagorako.", "warnNoLicense": "Aldibereko %1 editoreren konexio-mugara iritsi zara. Dokumentu hau ikusteko bakarrik irekiko da. Jarri harremanetan %1 salmenta taldearekin eguneraketa pertsonalaren baldintzak jakiteko.", "warnNoLicenseUsers": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan %1 salmenta taldearekin mailaz igotzeko baldintzak ezagutzeko.", - "warnProcessRightsChange": "Ez duzu fitxategi hau editatzeko baimenik." + "warnProcessRightsChange": "Ez duzu fitxategi hau editatzeko baimenik.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Babestutako fitxategia", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 7eff0555f..392e23a02 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -564,7 +564,9 @@ "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." + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Fichier protégé", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index b18ea256b..4eb41822f 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.", "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", - "warnProcessRightsChange": "Non ten permiso para editar este ficheiro." + "warnProcessRightsChange": "Non ten permiso para editar este ficheiro.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Ficheiro protexido", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index d17de7da3..97726b213 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználó számának korlátját. További információért forduljon rendszergazdájához.", "warnNoLicense": "Ön elérte az egyidejű kapcsolódás határát a %1 szerkesztőhöz. Ez a dokumentum csak megtekintésre lesz megnyitva. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a perszonális frissítés feltételéhez.", "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "warnProcessRightsChange": "Nincs jogosultsága a fájl szerkesztéséhez." + "warnProcessRightsChange": "Nincs jogosultsága a fájl szerkesztéséhez.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Védett fájl", diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json index 0d84a0520..0265de8f8 100644 --- a/apps/documenteditor/mobile/locale/hy.json +++ b/apps/documenteditor/mobile/locale/hy.json @@ -222,6 +222,7 @@ "textAllowOverlap": "Թույլ տալ վերածածկում", "textAmountOfLevels": "Մակարդակների չափը", "textApril": "Ապրիլ", + "textArrange": "Դասավորել", "textAugust": "Օգոստոս", "textAuto": "Ինքնաշխատ", "textAutomatic": "Ինքնաշխատ", @@ -375,8 +376,7 @@ "textType": "Տեսակ", "textWe": "Չրք", "textWrap": "Ծալում", - "textWrappingStyle": "Ծալման ոճ", - "textArrange": "Arrange" + "textWrappingStyle": "Ծալման ոճ" }, "Error": { "convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։", @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։Կապվեք Ձեր ադմինիստրատորի հետ՝ ավելին իմանալու համար:", "warnNoLicense": "Դուք հասել եք %1 խմբագիրների հետ միաժամանակյա միացումների սահմանաչափին:Այս փաստաթուղթը կբացվի միայն դիտելու համար:նձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:", "warnNoLicenseUsers": "Դուք հասել եք %1 խմբագիրների օգտվողի սահմանաչափին:Անձնական թարմացման պայմանների համար կապվեք %1 վաճառքի թիմի հետ:", - "warnProcessRightsChange": "Դուք այս ֆայլը խմբագրելու թույլտվություն չունեք:" + "warnProcessRightsChange": "Դուք այս ֆայլը խմբագրելու թույլտվություն չունեք:", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Պաշտպանված նիշք", diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json index 94299fbbc..b4062b6ad 100644 --- a/apps/documenteditor/mobile/locale/id.json +++ b/apps/documenteditor/mobile/locale/id.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", "warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi %1 tim sales untuk syarat personal upgrade.", "warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", - "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini." + "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "File yang Diproteksi", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 53bf12e8f..4c7a3d004 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare questo file." + "warnProcessRightsChange": "Non hai il permesso di modificare questo file.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "File protetto", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index b136d45ac..578cc1d64 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", - "warnProcessRightsChange": "ファイルを編集する権限がありません!" + "warnProcessRightsChange": "ファイルを編集する権限がありません!", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "保護されたファイル", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 79c2247ae..4640910a4 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -564,6 +564,8 @@ "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "warnProcessRightsChange": "파일을 편집 할 권한이 없습니다.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 29fe14dcc..411019b6a 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -564,6 +564,8 @@ "warnNoLicense": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ທີມຂາຍ %1 ສຳຫລັບເງື່ອນໄຂການອັບເກດສ່ວນບຸກຄົນ", "warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", "warnProcessRightsChange": "ທ່ານບໍ່ມີສິດໃນການແກ້ໄຂໄຟລ໌ນີ້.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index e523da3ae..b3d389574 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.", "warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", "warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", - "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini." + "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Fail Dilindungi", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 5b7078f60..5b0113ef0 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -561,7 +561,9 @@ "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.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textNoTextFound": "Text not found", + "textOk": "Ok", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json index 7a99cdfa2..238d5a539 100644 --- a/apps/documenteditor/mobile/locale/pt-pt.json +++ b/apps/documenteditor/mobile/locale/pt-pt.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", - "warnProcessRightsChange": "Não tem autorização para editar este ficheiro." + "warnProcessRightsChange": "Não tem autorização para editar este ficheiro.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Ficheiro protegido", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 47c113253..7a9aaded9 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", "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.", - "warnProcessRightsChange": "Você não tem permissão para editar este arquivo." + "warnProcessRightsChange": "Você não tem permissão para editar este arquivo.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Arquivo protegido", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 850488bce..cd3a8a0b4 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %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 ai %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." + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Fișierul protejat", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index d2a328f30..367cb8bdc 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -543,11 +543,13 @@ "textClose": "Закрыть", "textContactUs": "Отдел продаж", "textCustomLoader": "К сожалению, у вас нет прав изменять экран, отображаемый при загрузке. Обратитесь в наш отдел продаж, чтобы сделать запрос.", + "textDocumentProtected": "Документ защищен. Настройки редактирования недоступны", "textGuest": "Гость", "textHasMacros": "Файл содержит автозапускаемые макросы.
Хотите запустить макросы?", "textNo": "Нет", "textNoLicenseTitle": "Лицензионное ограничение", "textNoTextFound": "Текст не найден", + "textOk": "Ok", "textPaidFeature": "Платная функция", "textRemember": "Запомнить мой выбор", "textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index d90ae9b88..9084b77ed 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -564,6 +564,8 @@ "warnNoLicense": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Kontaktujte predajný tím %1 pre osobné podmienky inovácie.", "warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "warnProcessRightsChange": "Nemáte povolenie na úpravu tohto súboru.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index a94973c92..c7e9779ad 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -454,11 +454,13 @@ "textClose": "Close", "textContactUs": "Contact sales", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", "textNoTextFound": "Text not found", + "textOk": "Ok", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index c8e6df9b4..370880002 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Daha fazla bilgi edinmek için yöneticinizle iletişime geçin.", "warnNoLicense": "%1 düzenleyiciye eşzamanlı bağlantı sınırına ulaştınız. Bu belge yalnızca görüntüleme için açılacaktır. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", - "warnProcessRightsChange": "Bu dosyayı düzenleme izniniz yok." + "warnProcessRightsChange": "Bu dosyayı düzenleme izniniz yok.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Korumalı dosya", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 3b07ef0e2..5f3e2d972 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -564,6 +564,8 @@ "warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду. Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови оновлення.", "warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "warnProcessRightsChange": "У вас немає прав на редагування цього файлу.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json index 27c812475..382bbba43 100644 --- a/apps/documenteditor/mobile/locale/zh-tw.json +++ b/apps/documenteditor/mobile/locale/zh-tw.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", "warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。", "warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", - "warnProcessRightsChange": "您沒有編輯這個文件的權限。" + "warnProcessRightsChange": "您沒有編輯這個文件的權限。", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "受保護的檔案", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index a932c5fc5..3dfb07685 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", - "warnProcessRightsChange": "你没有编辑这个文件的权限。" + "warnProcessRightsChange": "你没有编辑这个文件的权限。", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "受保护的文件", diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index f9f70ec48..e1af5ff02 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -126,7 +126,7 @@ "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "txtIncorrectPwd": "Password is incorrect", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 1363950dd..e213a2d2f 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -410,7 +410,7 @@ "txtIncorrectPwd": "Password is incorrect", "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 2a3c8199d..8898f5b39 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -126,7 +126,7 @@ "txtIncorrectPwd": "Password is incorrect", "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 2e7e5bba8..3ce42ec79 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -306,6 +306,7 @@ "textErrorRemoveSheet": "Kan ikke slette regneark.", "textHide": "Skjul", "textMore": "Mere", + "textMoveToEnd": "(Flyt til slutning)", "textOk": "Ok", "notcriticalErrorTitle": "Warning", "textErrNameExists": "Worksheet with this name already exists.", @@ -314,7 +315,6 @@ "textHidden": "Hidden", "textMove": "Move", "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", diff --git a/apps/spreadsheeteditor/mobile/locale/pt-pt.json b/apps/spreadsheeteditor/mobile/locale/pt-pt.json index 2d9fc4a32..dc08cd4ce 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt-pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt-pt.json @@ -232,6 +232,7 @@ "errorSessionIdle": "O documento não foi editado durante muito tempo. Por favor, recarregue a página.", "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, recarregue a página.", "errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "errorToken": "O token de segurança do documento não está formado corretamente.
Entre em contato com o administrador do Servidor de Documentos.", "errorTokenExpire": "O 'token' de segurança do documento expirou.
Entre em contacto com o administrador do servidor de documentos.", "errorUnexpectedGuid": "Erro externo.
GUID inesperado. Por favor, contacte o suporte.", "errorUpdateVersionOnDisconnect": "A ligação foi restaurada e a versão do ficheiro foi alterada.
Antes de poder continuar a trabalhar, é necessário descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada se perde e depois voltar a carregar esta página.", @@ -251,8 +252,7 @@ "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", "uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", - "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.", - "errorToken": "The document security token is not correctly formed.
Please contact your Document Server administrator." + "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB." }, "LongActions": { "advDRMPassword": "Palavra-passe", From 955c01d65deb223c41c837a9d3cdfb5f03c26e22 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 10 Dec 2022 00:47:01 +0300 Subject: [PATCH 15/54] [SSE] for bug 59924 --- apps/common/main/lib/controller/Desktop.js | 50 ++++++++++++++++++- .../main/app/controller/Main.js | 8 +++ .../main/app/view/FileMenu.js | 3 +- .../main/app/view/FileMenuPanels.js | 8 --- .../main/app/view/FormulaWizard.js | 29 +++++++++-- 5 files changed, 83 insertions(+), 15 deletions(-) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index a064822b7..43e510ce1 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -62,7 +62,8 @@ define([ 'btn-save-coauth': 'coauth', 'btn-synch': 'synch' }; - var nativevars; + var nativevars, + helpUrl; if ( !!native ) { native.features = native.features || {}; @@ -236,6 +237,45 @@ define([ } } + const _checkHelpAvailable = function () { + const curr_lang = Common.Locale.getCurrentLanguage(); + let url = 'resources/help/' + curr_lang; + fetch(url + '/Contents.json').then(function (response) { + if ( response.ok ) { + /* local help avail */ + helpUrl = url; + } else + if ( curr_lang != Common.Locale.getDefaultLanguage() ) { + url = 'resources/help/' + Common.Locale.getDefaultLanguage(); + fetch(url + '/Contents.json').then(function (response){ + if ( response.ok ) { + /* local help avail. def lang */ + helpUrl = url; + } else + if ( this.helpUrl() ) { + url = this.helpUrl() + curr_lang; + fetch(url + '/Contents.json').then(function (response){ + if ( response.ok ) { + /* remote help avail */ + helpUrl = url; + } else { + url = this.helpUrl() + Common.getDefaultLanguage(); + fetch(url + '/Contents.json').then(function (response){ + if ( response.ok ) { + /* remote help avail. def lang */ + helpUrl = url; + } else { + /* no help avail. open help center */ + } + }); + } + }); + } + }); + } + }); + } + return { init: function (opts) { _.extend(config, opts); @@ -281,6 +321,8 @@ define([ this.close(); }).show(); } + + _checkHelpAvailable(); } }); @@ -450,6 +492,9 @@ define([ } }, helpUrl: function () { + if ( helpUrl ) + return helpUrl; + if ( !!nativevars && nativevars.helpUrl ) { var webapp = window.SSE ? 'spreadsheeteditor' : window.PE ? 'presentationeditor' : 'documenteditor'; @@ -458,6 +503,9 @@ define([ return undefined; }, + helpAvailable: function () { + return !!helpUrl; + }, getDefaultPrinterName: function () { return nativevars ? nativevars.defaultPrinterName : ''; }, diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 946af7870..42d6165d5 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -197,6 +197,14 @@ define([ Common.Utils.InternalSettings.set("sse-settings-fontrender", value); this.api.asc_setFontRenderingMode(parseInt(value)); + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_SSE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_SSE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + Common.Utils.InternalSettings.set("url-help-center", _url_obj.toString()); + } + } + this.api.asc_registerCallback('asc_onOpenDocumentProgress', _.bind(this.onOpenDocument, this)); this.api.asc_registerCallback('asc_onEndAction', _.bind(this.onLongActionEnd, this)); this.api.asc_registerCallback('asc_onError', _.bind(this.onError, this)); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index 84b635217..22a2e0c6e 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -59,7 +59,8 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); + const helpCenter = Common.Utils.InternalSettings.get('url-help-center'); + !!helpCenter && window.open(helpCenter, '_blank'); return; } } diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 76c2ca4b6..f855086e5 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1923,14 +1923,6 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - if ( !Common.Utils.isIE ) { - if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_SSE}}') ) { - const _url_obj = new URL('{{HELP_CENTER_WEB_SSE}}'); - _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); - this.urlHelpCenter = _url_obj.toString(); - } - } - this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Spreadsheet Editor user interface", "headername": "Program Interface"}, {"src": "ProgramInterface/FileTab.htm", "name": "File tab"}, diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 2bcb0f506..617c49802 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -456,24 +456,43 @@ define([ lang = (this.lang) ? this.lang.split(/[\-\_]/)[0] : 'en'; var me = this, - name = '/Functions/' + this.funcprops.origin.toLocaleLowerCase().replace(/\./g, '-') + '.htm', + func = this.funcprops.origin.toLocaleLowerCase().replace(/\./g, '-'), + name = '/Functions/' + func + '.htm', url = 'resources/help/' + lang + name; + if ( Common.Controllers.Desktop.isActive() ) { + if ( Common.Controllers.Desktop.helpAvailable() ) + url = Common.Controllers.Desktop.helpUrl() + name; + else { + const helpCenter = Common.Utils.InternalSettings.get('url-help-center'); + if ( helpCenter ) { + const _url_obj = new URL(helpCenter); + _url_obj.searchParams.set('function', func); + + window.open(_url_obj.toString(), '_blank'); + } + + return; + } + } + fetch(url).then(function(response){ if ( response.ok ) { Common.Utils.InternalSettings.set("sse-settings-func-help", lang); me.helpUrl = url; me.showHelp(); } else { - lang = '{{DEFAULT_LANG}}'; - url = 'resources/help/' + lang + name; + url = 'resources/help/' + '{{DEFAULT_LANG}}' + name; fetch(url).then(function(response){ if ( response.ok ) { - Common.Utils.InternalSettings.set("sse-settings-func-help", lang); + Common.Utils.InternalSettings.set("sse-settings-func-help", '{{DEFAULT_LANG}}'); me.helpUrl = url; me.showHelp(); } else { - me.helpUrl = null; + // me.helpUrl = null; + if ( Common.Controllers.Desktop.isActive() ) { + url = 'resources/help/' + lang + name; + } } }); } From a350d98f8f102ac5b79ebb158ee9df4a09726664 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sun, 11 Dec 2022 12:11:00 +0300 Subject: [PATCH 16/54] [SSE] refactoring --- apps/common/main/lib/controller/Desktop.js | 2 +- apps/spreadsheeteditor/main/app/view/FormulaWizard.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 43e510ce1..02be64126 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -503,7 +503,7 @@ define([ return undefined; }, - helpAvailable: function () { + isHelpAvailable: function () { return !!helpUrl; }, getDefaultPrinterName: function () { diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 617c49802..891692b21 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -461,7 +461,7 @@ define([ url = 'resources/help/' + lang + name; if ( Common.Controllers.Desktop.isActive() ) { - if ( Common.Controllers.Desktop.helpAvailable() ) + if ( Common.Controllers.Desktop.isHelpAvailable() ) url = Common.Controllers.Desktop.helpUrl() + name; else { const helpCenter = Common.Utils.InternalSettings.get('url-help-center'); From 2c15f82cb91966e6e42577d96648ff1fea470945 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sun, 11 Dec 2022 12:12:52 +0300 Subject: [PATCH 17/54] [desktop] fix bug 59925 --- apps/common/main/lib/controller/Desktop.js | 71 ++++++++++--------- .../main/app/view/FileMenuPanels.js | 34 ++++----- .../main/app/view/FormulaWizard.js | 6 +- 3 files changed, 56 insertions(+), 55 deletions(-) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 02be64126..e901d8869 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -238,42 +238,44 @@ define([ } const _checkHelpAvailable = function () { - const curr_lang = Common.Locale.getCurrentLanguage(); - let url = 'resources/help/' + curr_lang; - fetch(url + '/Contents.json').then(function (response) { - if ( response.ok ) { - /* local help avail */ - helpUrl = url; - } else - if ( curr_lang != Common.Locale.getDefaultLanguage() ) { - url = 'resources/help/' + Common.Locale.getDefaultLanguage(); - fetch(url + '/Contents.json').then(function (response){ - if ( response.ok ) { - /* local help avail. def lang */ - helpUrl = url; - } else - if ( this.helpUrl() ) { - url = this.helpUrl() + curr_lang; - fetch(url + '/Contents.json').then(function (response){ + const me = this; + const build_url = function (arg1, arg2, arg3) { + const re_ls = /\/$/; + return (re_ls.test(arg1) ? arg1 : arg1 + '/') + arg2 + arg3; + } + + fetch(build_url('resources/help/', Common.Locale.getDefaultLanguage(), '/Contents.json')) + .then(function (response) { + if ( response.ok ) { + /* local help avail */ + fetch(build_url('resources/help/', Common.Locale.getCurrentLanguage(), '/Contents.json')) + .then(function (response){ + if ( response.ok ) + helpUrl = build_url('resources/help/', Common.Locale.getCurrentLanguage(), ''); + }) + .catch(function (e) { + helpUrl = build_url('resources/help/', Common.Locale.getDefaultLanguage(), ''); + }) + } + }).catch(function (e) { + if ( me.helpUrl() ) { + fetch(build_url(me.helpUrl(), Common.Locale.getDefaultLanguage(), '/Contents.json')) + .then(function (response) { if ( response.ok ) { /* remote help avail */ - helpUrl = url; - } else { - url = this.helpUrl() + Common.getDefaultLanguage(); - fetch(url + '/Contents.json').then(function (response){ - if ( response.ok ) { - /* remote help avail. def lang */ - helpUrl = url; - } else { - /* no help avail. open help center */ - } - }); + fetch(build_url(me.helpUrl(), Common.Locale.getCurrentLanguage(), '/Contents.json')) + .then(function (response) { + if ( response.ok ) { + helpUrl = build_url(me.helpUrl(), Common.Locale.getCurrentLanguage(), ''); + } + }) + .catch(function (e) { + helpUrl = build_url(me.helpUrl(), Common.Locale.getDefaultLanguage(), ''); + }); } - }); - } - }); - } - }); + }) + } + }); } return { @@ -281,6 +283,7 @@ define([ _.extend(config, opts); if ( config.isDesktopApp ) { + const me = this; let is_win_xp = nativevars && nativevars.os === 'winxp'; Common.UI.Themes.setAvailable(!is_win_xp); @@ -322,7 +325,7 @@ define([ }).show(); } - _checkHelpAvailable(); + _checkHelpAvailable.call(me); } }); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index f855086e5..09c72c0d3 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -2028,20 +2028,8 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ store.url = 'resources/help/{{DEFAULT_LANG}}/Contents.json'; store.fetch(config); } else { - if ( Common.Controllers.Desktop.isActive() ) { - if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) { - me.noHelpContents = true; - me.iFrame.src = '../../common/main/resources/help/download.html'; - } else { - store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; - store.url = me.urlPref + 'Contents.json'; - store.fetch(config); - } - } else { - me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; - store.reset(me.en_data); - } + me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; + store.reset(me.en_data); } }, success: function () { @@ -2055,9 +2043,21 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src')); } }; - store.url = 'resources/help/' + lang + '/Contents.json'; - store.fetch(config); - this.urlPref = 'resources/help/' + lang + '/'; + + if ( Common.Controllers.Desktop.isActive() ) { + if ( !Common.Controllers.Desktop.isHelpAvailable() ) { + me.noHelpContents = true; + me.iFrame.src = '../../common/main/resources/help/download.html'; + } else { + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/'; + store.url = me.urlPref + 'Contents.json'; + store.fetch(config); + } + } else { + store.url = 'resources/help/' + lang + '/Contents.json'; + store.fetch(config); + this.urlPref = 'resources/help/' + lang + '/'; + } } }, diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 891692b21..b1b135b62 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -472,6 +472,7 @@ define([ window.open(_url_obj.toString(), '_blank'); } + me.helpUrl = null; return; } } @@ -489,10 +490,7 @@ define([ me.helpUrl = url; me.showHelp(); } else { - // me.helpUrl = null; - if ( Common.Controllers.Desktop.isActive() ) { - url = 'resources/help/' + lang + name; - } + me.helpUrl = null; } }); } From 7188921e5a69e7295582230405ccc3d118f87baf Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sun, 11 Dec 2022 13:40:41 +0300 Subject: [PATCH 18/54] [DE PE] refactoring --- .../main/app/controller/Main.js | 8 ++++ apps/documenteditor/main/app/view/FileMenu.js | 3 +- .../main/app/view/FileMenuPanels.js | 42 ++++++++----------- .../main/app/controller/Main.js | 8 ++++ .../main/app/view/FileMenu.js | 3 +- .../main/app/view/FileMenuPanels.js | 42 ++++++++----------- 6 files changed, 54 insertions(+), 52 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index f6b100557..2ce4257c9 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -207,6 +207,14 @@ define([ case '2': this.api.SetFontRenderingMode(2); break; } + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + Common.Utils.InternalSettings.set("url-help-center", _url_obj.toString()); + } + } + this.api.asc_registerCallback('asc_onError', _.bind(this.onError, this)); this.api.asc_registerCallback('asc_onDocumentContentReady', _.bind(this.onDocumentContentReady, this)); this.api.asc_registerCallback('asc_onOpenDocumentProgress', _.bind(this.onOpenDocument, this)); diff --git a/apps/documenteditor/main/app/view/FileMenu.js b/apps/documenteditor/main/app/view/FileMenu.js index 3748d4a7c..34c8bcf90 100644 --- a/apps/documenteditor/main/app/view/FileMenu.js +++ b/apps/documenteditor/main/app/view/FileMenu.js @@ -69,7 +69,8 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); + const helpCenter = Common.Utils.InternalSettings.get('url-help-center'); + !!helpCenter && window.open(helpCenter, '_blank'); return; } } diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 45b458d75..a506fe5bb 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -2041,14 +2041,6 @@ define([ this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - if ( !Common.Utils.isIE ) { - if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) { - const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}'); - _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); - this.urlHelpCenter = _url_obj.toString(); - } - } - this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"}, {"src": "ProgramInterface/FileTab.htm", "name": "File tab"}, @@ -2169,20 +2161,8 @@ define([ store.url = 'resources/help/{{DEFAULT_LANG}}/Contents.json'; store.fetch(config); } else { - if ( Common.Controllers.Desktop.isActive() ) { - if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) { - me.noHelpContents = true; - me.iFrame.src = '../../common/main/resources/help/download.html'; - } else { - store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; - store.url = me.urlPref + 'Contents.json'; - store.fetch(config); - } - } else { - me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; - store.reset(me.en_data); - } + me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; + store.reset(me.en_data); } }, success: function () { @@ -2196,9 +2176,21 @@ define([ me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src')); } }; - store.url = 'resources/help/' + lang + '/Contents.json'; - store.fetch(config); - this.urlPref = 'resources/help/' + lang + '/'; + + if ( Common.Controllers.Desktop.isActive() ) { + if ( !Common.Controllers.Desktop.isHelpAvailable() ) { + me.noHelpContents = true; + me.iFrame.src = '../../common/main/resources/help/download.html'; + } else { + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/'; + store.url = me.urlPref + 'Contents.json'; + store.fetch(config); + } + } else { + store.url = 'resources/help/' + lang + '/Contents.json'; + store.fetch(config); + this.urlPref = 'resources/help/' + lang + '/'; + } } }, diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 3b34cf287..087535355 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -182,6 +182,14 @@ define([ Common.Utils.InternalSettings.set("pe-settings-fontrender", value); this.api.SetFontRenderingMode(parseInt(value)); + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_PE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_PE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + Common.Utils.InternalSettings.set("url-help-center", _url_obj.toString()); + } + } + this.api.asc_registerCallback('asc_onError', _.bind(this.onError, this)); this.api.asc_registerCallback('asc_onDocumentContentReady', _.bind(this.onDocumentContentReady, this)); this.api.asc_registerCallback('asc_onOpenDocumentProgress', _.bind(this.onOpenDocument, this)); diff --git a/apps/presentationeditor/main/app/view/FileMenu.js b/apps/presentationeditor/main/app/view/FileMenu.js index 134a7625c..1b2d588d7 100644 --- a/apps/presentationeditor/main/app/view/FileMenu.js +++ b/apps/presentationeditor/main/app/view/FileMenu.js @@ -72,7 +72,8 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); + const helpCenter = Common.Utils.InternalSettings.get('url-help-center'); + !!helpCenter && window.open(helpCenter, '_blank'); return; } } diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 13301004e..5db0ee3ce 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -1535,14 +1535,6 @@ define([ this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - if ( !Common.Utils.isIE ) { - if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_PE}}') ) { - const _url_obj = new URL('{{HELP_CENTER_WEB_PE}}'); - _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); - this.urlHelpCenter = _url_obj.toString(); - } - } - this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"}, {"src": "ProgramInterface/FileTab.htm", "name": "File tab"}, @@ -1646,20 +1638,8 @@ define([ store.url = 'resources/help/{{DEFAULT_LANG}}/Contents.json'; store.fetch(config); } else { - if ( Common.Controllers.Desktop.isActive() ) { - if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) { - me.noHelpContents = true; - me.iFrame.src = '../../common/main/resources/help/download.html'; - } else { - store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; - store.url = me.urlPref + 'Contents.json'; - store.fetch(config); - } - } else { - me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; - store.reset(me.en_data); - } + me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; + store.reset(me.en_data); } }, success: function () { @@ -1673,9 +1653,21 @@ define([ me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src')); } }; - store.url = 'resources/help/' + lang + '/Contents.json'; - store.fetch(config); - this.urlPref = 'resources/help/' + lang + '/'; + + if ( Common.Controllers.Desktop.isActive() ) { + if ( !Common.Controllers.Desktop.isHelpAvailable() ) { + me.noHelpContents = true; + me.iFrame.src = '../../common/main/resources/help/download.html'; + } else { + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/'; + store.url = me.urlPref + 'Contents.json'; + store.fetch(config); + } + } else { + store.url = 'resources/help/' + lang + '/Contents.json'; + store.fetch(config); + this.urlPref = 'resources/help/' + lang + '/'; + } } }, From 60520b232c24c01f37e37ba4a740340ebbf70822 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 12 Dec 2022 16:05:13 +0300 Subject: [PATCH 19/54] Fix Bug 60103 --- .../main/app/view/FileMenuPanels.js | 38 +++++++++---------- .../main/app/view/FileMenuPanels.js | 38 +++++++++---------- .../main/app/view/FileMenuPanels.js | 30 +++++++-------- .../main/app/view/PrintSettings.js | 30 +++++++-------- 4 files changed, 68 insertions(+), 68 deletions(-) diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index a506fe5bb..73f7d3934 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -2491,23 +2491,23 @@ define([ takeFocusOnClose: true, cls: 'input-group-nr', data: [ - { value: 0, displayValue:'US Letter (21,59cm x 27,94cm)', caption: 'US Letter', size: [215.9, 279.4]}, - { value: 1, displayValue:'US Legal (21,59cm x 35,56cm)', caption: 'US Legal', size: [215.9, 355.6]}, - { value: 2, displayValue:'A4 (21cm x 29,7cm)', caption: 'A4', size: [210, 297]}, - { value: 3, displayValue:'A5 (14,8cm x 21cm)', caption: 'A5', size: [148, 210]}, - { value: 4, displayValue:'B5 (17,6cm x 25cm)', caption: 'B5', size: [176, 250]}, - { value: 5, displayValue:'Envelope #10 (10,48cm x 24,13cm)', caption: 'Envelope #10', size: [104.8, 241.3]}, - { value: 6, displayValue:'Envelope DL (11cm x 22cm)', caption: 'Envelope DL', size: [110, 220]}, - { value: 7, displayValue:'Tabloid (27,94cm x 43,18cm)', caption: 'Tabloid', size: [279.4, 431.8]}, - { value: 8, displayValue:'A3 (29,7cm x 42cm)', caption: 'A3', size: [297, 420]}, - { value: 9, displayValue:'Tabloid Oversize (30,48cm x 45,71cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]}, - { value: 10, displayValue:'ROC 16K (19,68cm x 27,3cm)', caption: 'ROC 16K', size: [196.8, 273]}, - { value: 11, displayValue:'Envelope Choukei 3 (11,99cm x 23,49cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]}, - { value: 12, displayValue:'Super B/A3 (33,02cm x 48,25cm)', caption: 'Super B/A3', size: [330.2, 482.5]}, - { value: 13, displayValue:'A4 (84,1cm x 118,9cm)', caption: 'A0', size: [841, 1189]}, - { value: 14, displayValue:'A4 (59,4cm x 84,1cm)', caption: 'A1', size: [594, 841]}, - { value: 16, displayValue:'A4 (42cm x 59,4cm)', caption: 'A2', size: [420, 594]}, - { value: 17, displayValue:'A4 (10,5cm x 14,8cm)', caption: 'A6', size: [105, 148]}, + { value: 0, displayValue:'US Letter (21,59 cm x 27,94 cm)', caption: 'US Letter', size: [215.9, 279.4]}, + { value: 1, displayValue:'US Legal (21,59 cm x 35,56 cm)', caption: 'US Legal', size: [215.9, 355.6]}, + { value: 2, displayValue:'A4 (21 cm x 29,7 cm)', caption: 'A4', size: [210, 297]}, + { value: 3, displayValue:'A5 (14,8 cm x 21 cm)', caption: 'A5', size: [148, 210]}, + { value: 4, displayValue:'B5 (17,6 cm x 25 cm)', caption: 'B5', size: [176, 250]}, + { value: 5, displayValue:'Envelope #10 (10,48 cm x 24,13 cm)', caption: 'Envelope #10', size: [104.8, 241.3]}, + { value: 6, displayValue:'Envelope DL (11 cm x 22 cm)', caption: 'Envelope DL', size: [110, 220]}, + { value: 7, displayValue:'Tabloid (27,94 cm x 43,18 cm)', caption: 'Tabloid', size: [279.4, 431.8]}, + { value: 8, displayValue:'A3 (29,7 cm x 42 cm)', caption: 'A3', size: [297, 420]}, + { value: 9, displayValue:'Tabloid Oversize (30,48 cm x 45,71 cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]}, + { value: 10, displayValue:'ROC 16K (19,68 cm x 27,3 cm)', caption: 'ROC 16K', size: [196.8, 273]}, + { value: 11, displayValue:'Envelope Choukei 3 (11,99 cm x 23,49 cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]}, + { value: 12, displayValue:'Super B/A3 (33,02 cm x 48,25 cm)', caption: 'Super B/A3', size: [330.2, 482.5]}, + { value: 13, displayValue:'A4 (84,1 cm x 118,9 cm)', caption: 'A0', size: [841, 1189]}, + { value: 14, displayValue:'A4 (59,4 cm x 84,1 cm)', caption: 'A1', size: [594, 841]}, + { value: 16, displayValue:'A4 (42 cm x 59,4 cm)', caption: 'A2', size: [420, 594]}, + { value: 17, displayValue:'A4 (10,5 cm x 14,8 cm)', caption: 'A6', size: [105, 148]}, { value: -1, displayValue: this.txtCustom, caption: this.txtCustom, size: []} ], dataHint: '2', @@ -2670,8 +2670,8 @@ define([ pagewidth = size[0], pageheight = size[1]; - item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' + - parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')'); + item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ')'); } this.cmbPaperSize.onResetItems(); this.cmbPaperMargins.onResetItems(); diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 5db0ee3ce..230973a9a 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -1960,23 +1960,23 @@ define([ takeFocusOnClose: true, cls: 'input-group-nr', data: [ - { value: 0, displayValue:'US Letter (21,59cm x 27,94cm)', caption: 'US Letter', size: [215.9, 279.4]}, - { value: 1, displayValue:'US Legal (21,59cm x 35,56cm)', caption: 'US Legal', size: [215.9, 355.6]}, - { value: 2, displayValue:'A4 (21cm x 29,7cm)', caption: 'A4', size: [210, 297]}, - { value: 3, displayValue:'A5 (14,8cm x 21cm)', caption: 'A5', size: [148, 210]}, - { value: 4, displayValue:'B5 (17,6cm x 25cm)', caption: 'B5', size: [176, 250]}, - { value: 5, displayValue:'Envelope #10 (10,48cm x 24,13cm)', caption: 'Envelope #10', size: [104.8, 241.3]}, - { value: 6, displayValue:'Envelope DL (11cm x 22cm)', caption: 'Envelope DL', size: [110, 220]}, - { value: 7, displayValue:'Tabloid (27,94cm x 43,18cm)', caption: 'Tabloid', size: [279.4, 431.8]}, - { value: 8, displayValue:'A3 (29,7cm x 42cm)', caption: 'A3', size: [297, 420]}, - { value: 9, displayValue:'Tabloid Oversize (30,48cm x 45,71cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]}, - { value: 10, displayValue:'ROC 16K (19,68cm x 27,3cm)', caption: 'ROC 16K', size: [196.8, 273]}, - { value: 11, displayValue:'Envelope Choukei 3 (11,99cm x 23,49cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]}, - { value: 12, displayValue:'Super B/A3 (33,02cm x 48,25cm)', caption: 'Super B/A3', size: [330.2, 482.5]}, - { value: 13, displayValue:'A4 (84,1cm x 118,9cm)', caption: 'A0', size: [841, 1189]}, - { value: 14, displayValue:'A4 (59,4cm x 84,1cm)', caption: 'A1', size: [594, 841]}, - { value: 16, displayValue:'A4 (42cm x 59,4cm)', caption: 'A2', size: [420, 594]}, - { value: 17, displayValue:'A4 (10,5cm x 14,8cm)', caption: 'A6', size: [105, 148]} + { value: 0, displayValue:'US Letter (21,59 cm x 27,94 cm)', caption: 'US Letter', size: [215.9, 279.4]}, + { value: 1, displayValue:'US Legal (21,59 cm x 35,56 cm)', caption: 'US Legal', size: [215.9, 355.6]}, + { value: 2, displayValue:'A4 (21 cm x 29,7 cm)', caption: 'A4', size: [210, 297]}, + { value: 3, displayValue:'A5 (14,8 cm x 21 cm)', caption: 'A5', size: [148, 210]}, + { value: 4, displayValue:'B5 (17,6 cm x 25 cm)', caption: 'B5', size: [176, 250]}, + { value: 5, displayValue:'Envelope #10 (10,48 cm x 24,13 cm)', caption: 'Envelope #10', size: [104.8, 241.3]}, + { value: 6, displayValue:'Envelope DL (11 cm x 22 cm)', caption: 'Envelope DL', size: [110, 220]}, + { value: 7, displayValue:'Tabloid (27,94 cm x 43,18 cm)', caption: 'Tabloid', size: [279.4, 431.8]}, + { value: 8, displayValue:'A3 (29,7 cm x 42 cm)', caption: 'A3', size: [297, 420]}, + { value: 9, displayValue:'Tabloid Oversize (30,48 cm x 45,71 cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]}, + { value: 10, displayValue:'ROC 16K (19,68 cm x 27,3 cm)', caption: 'ROC 16K', size: [196.8, 273]}, + { value: 11, displayValue:'Envelope Choukei 3 (11,99 cm x 23,49 cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]}, + { value: 12, displayValue:'Super B/A3 (33,02 cm x 48,25 cm)', caption: 'Super B/A3', size: [330.2, 482.5]}, + { value: 13, displayValue:'A4 (84,1 cm x 118,9 cm)', caption: 'A0', size: [841, 1189]}, + { value: 14, displayValue:'A4 (59,4 cm x 84,1 cm)', caption: 'A1', size: [594, 841]}, + { value: 16, displayValue:'A4 (42 cm x 59,4 cm)', caption: 'A2', size: [420, 594]}, + { value: 17, displayValue:'A4 (10,5 cm x 14,8 cm)', caption: 'A6', size: [105, 148]} ], dataHint: '2', dataHintDirection: 'bottom', @@ -2117,8 +2117,8 @@ define([ pagewidth = size[0], pageheight = size[1]; - item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' + - parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')'); + item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ')'); } var value = this.cmbPaperSize.getValue(); this.cmbPaperSize.onResetItems(); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 09c72c0d3..80c113152 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -2419,19 +2419,19 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ takeFocusOnClose: true, cls: 'input-group-nr', data: [ - {value:'215.9|279.4', displayValue:'US Letter (21,59cm x 27,94cm)', caption: 'US Letter'}, - {value:'215.9|355.6', displayValue:'US Legal (21,59cm x 35,56cm)', caption: 'US Legal'}, - {value:'210|297', displayValue:'A4 (21cm x 29,7cm)', caption: 'A4'}, - {value:'148|210', displayValue:'A5 (14,8cm x 21cm)', caption: 'A5'}, - {value:'176|250', displayValue:'B5 (17,6cm x 25cm)', caption: 'B5'}, - {value:'104.8|241.3', displayValue:'Envelope #10 (10,48cm x 24,13cm)', caption: 'Envelope #10'}, - {value:'110|220', displayValue:'Envelope DL (11cm x 22cm)', caption: 'Envelope DL'}, - {value:'279.4|431.8', displayValue:'Tabloid (27,94cm x 43,18cm)', caption: 'Tabloid'}, - {value:'297|420', displayValue:'A3 (29,7cm x 42cm)', caption: 'A3'}, - {value:'304.8|457.1', displayValue:'Tabloid Oversize (30,48cm x 45,71cm)', caption: 'Tabloid Oversize'}, - {value:'196.8|273', displayValue:'ROC 16K (19,68cm x 27,3cm)', caption: 'ROC 16K'}, - {value:'119.9|234.9', displayValue:'Envelope Choukei 3 (11,99cm x 23,49cm)', caption: 'Envelope Choukei 3'}, - {value:'330.2|482.5', displayValue:'Super B/A3 (33,02cm x 48,25cm)', caption: 'Super B/A3'} + {value:'215.9|279.4', displayValue:'US Letter (21,59 cm x 27,94 cm)', caption: 'US Letter'}, + {value:'215.9|355.6', displayValue:'US Legal (21,59 cm x 35,56 cm)', caption: 'US Legal'}, + {value:'210|297', displayValue:'A4 (21 cm x 29,7 cm)', caption: 'A4'}, + {value:'148|210', displayValue:'A5 (14,8 cm x 21 cm)', caption: 'A5'}, + {value:'176|250', displayValue:'B5 (17,6 cm x 25 cm)', caption: 'B5'}, + {value:'104.8|241.3', displayValue:'Envelope #10 (10,48 cm x 24,13 cm)', caption: 'Envelope #10'}, + {value:'110|220', displayValue:'Envelope DL (11 cm x 22 cm)', caption: 'Envelope DL'}, + {value:'279.4|431.8', displayValue:'Tabloid (27,94 cm x 43,18 cm)', caption: 'Tabloid'}, + {value:'297|420', displayValue:'A3 (29,7 cm x 42 cm)', caption: 'A3'}, + {value:'304.8|457.1', displayValue:'Tabloid Oversize (30,48 cm x 45,71 cm)', caption: 'Tabloid Oversize'}, + {value:'196.8|273', displayValue:'ROC 16K (19,68 cm x 27,3 cm)', caption: 'ROC 16K'}, + {value:'119.9|234.9', displayValue:'Envelope Choukei 3 (11,99 cm x 23,49 cm)', caption: 'Envelope Choukei 3'}, + {value:'330.2|482.5', displayValue:'Super B/A3 (33,02 cm x 48,25 cm)', caption: 'Super B/A3'} ], dataHint: '2', dataHintDirection: 'bottom', @@ -2729,8 +2729,8 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ pagewidth = /^\d{3}\.?\d*/.exec(value), pageheight = /\d{3}\.?\d*$/.exec(value); - item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' + - parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')'); + item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ')'); } this.cmbPaperSize.onResetItems(); }, diff --git a/apps/spreadsheeteditor/main/app/view/PrintSettings.js b/apps/spreadsheeteditor/main/app/view/PrintSettings.js index 2a6ce5442..6c710e361 100644 --- a/apps/spreadsheeteditor/main/app/view/PrintSettings.js +++ b/apps/spreadsheeteditor/main/app/view/PrintSettings.js @@ -126,19 +126,19 @@ define([ 'text!spreadsheeteditor/main/app/template/PrintSettings.template', takeFocusOnClose: true, cls : 'input-group-nr', data : [ - {value:'215.9|279.4', displayValue:'US Letter (21,59cm x 27,94cm)', caption: 'US Letter'}, - {value:'215.9|355.6', displayValue:'US Legal (21,59cm x 35,56cm)', caption: 'US Legal'}, - {value:'210|297', displayValue:'A4 (21cm x 29,7cm)', caption: 'A4'}, - {value:'148|210', displayValue:'A5 (14,8cm x 21cm)', caption: 'A5'}, - {value:'176|250', displayValue:'B5 (17,6cm x 25cm)', caption: 'B5'}, - {value:'104.8|241.3', displayValue:'Envelope #10 (10,48cm x 24,13cm)', caption: 'Envelope #10'}, - {value:'110|220', displayValue:'Envelope DL (11cm x 22cm)', caption: 'Envelope DL'}, - {value:'279.4|431.8', displayValue:'Tabloid (27,94cm x 43,18cm)', caption: 'Tabloid'}, - {value:'297|420', displayValue:'A3 (29,7cm x 42cm)', caption: 'A3'}, - {value:'304.8|457.1', displayValue:'Tabloid Oversize (30,48cm x 45,71cm)', caption: 'Tabloid Oversize'}, - {value:'196.8|273', displayValue:'ROC 16K (19,68cm x 27,3cm)', caption: 'ROC 16K'}, - {value:'119.9|234.9', displayValue:'Envelope Choukei 3 (11,99cm x 23,49cm)', caption: 'Envelope Choukei 3'}, - {value:'330.2|482.5', displayValue:'Super B/A3 (33,02cm x 48,25cm)', caption: 'Super B/A3'} + {value:'215.9|279.4', displayValue:'US Letter (21,59 cm x 27,94 cm)', caption: 'US Letter'}, + {value:'215.9|355.6', displayValue:'US Legal (21,59 cm x 35,56 cm)', caption: 'US Legal'}, + {value:'210|297', displayValue:'A4 (21 cm x 29,7 cm)', caption: 'A4'}, + {value:'148|210', displayValue:'A5 (14,8 cm x 21 cm)', caption: 'A5'}, + {value:'176|250', displayValue:'B5 (17,6 cm x 25 cm)', caption: 'B5'}, + {value:'104.8|241.3', displayValue:'Envelope #10 (10,48 cm x 24,13 cm)', caption: 'Envelope #10'}, + {value:'110|220', displayValue:'Envelope DL (11 cm x 22 cm)', caption: 'Envelope DL'}, + {value:'279.4|431.8', displayValue:'Tabloid (27,94 cm x 43,18 cm)', caption: 'Tabloid'}, + {value:'297|420', displayValue:'A3 (29,7 cm x 42 cm)', caption: 'A3'}, + {value:'304.8|457.1', displayValue:'Tabloid Oversize (30,48 cm x 45,71 cm)', caption: 'Tabloid Oversize'}, + {value:'196.8|273', displayValue:'ROC 16K (19,68 cm x 27,3 cm)', caption: 'ROC 16K'}, + {value:'119.9|234.9', displayValue:'Envelope Choukei 3 (11,99 cm x 23,49 cm)', caption: 'Envelope Choukei 3'}, + {value:'330.2|482.5', displayValue:'Super B/A3 (33,02 cm x 48,25 cm)', caption: 'Super B/A3'} ] }); @@ -345,8 +345,8 @@ define([ 'text!spreadsheeteditor/main/app/template/PrintSettings.template', pagewidth = /^\d{3}\.?\d*/.exec(value), pageheight = /\d{3}\.?\d*$/.exec(value); - item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' + - parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')'); + item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ')'); } this.cmbPaperSize.onResetItems(); }, From 262a6dec219963f36574668ba6afdfbad501b3a2 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 12 Dec 2022 20:18:50 +0300 Subject: [PATCH 20/54] [SSE] By bug 60109 --- apps/spreadsheeteditor/main/app/controller/Search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Search.js b/apps/spreadsheeteditor/main/app/controller/Search.js index efbbeda6f..f300fc0d0 100644 --- a/apps/spreadsheeteditor/main/app/controller/Search.js +++ b/apps/spreadsheeteditor/main/app/controller/Search.js @@ -446,7 +446,7 @@ define([ '
' + (item[1] ? item[1] : '') + '
' + '
' + (item[2] ? item[2] : '') + '
' + '
' + (item[3] ? item[3] : '') + '
' + - '
' + (item[4] ? item[4] : '') + '
' + + '
' + (item[4] ? Common.Utils.String.htmlEncode(item[4]) : '') + '
' + '
' + (item[5] ? item[5] : '') + '
' + ''; var $item = $(tr).appendTo($innerResults); From 9186805225ccc49f80d6031dbacdbd953defb8ca Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 13 Dec 2022 14:53:21 +0300 Subject: [PATCH 21/54] [SSE] Fix saving of print settings --- .../main/app/controller/Print.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 5b5fa13b9..5a6c12201 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -419,25 +419,25 @@ define([ querySavePrintSettings: function(print) { if ( this.checkMargins(this.printSettings) ) { + var view = SSE.getController('Toolbar').getView('Toolbar'); this.savePageOptions(this.printSettings); this._isPrint = print; this.printSettings.applySettings(); - if (print) { - var view = SSE.getController('Toolbar').getView('Toolbar'); - var printType = this.printSettings.getRange(); - this.adjPrintParams.asc_setPrintType(printType); - this.adjPrintParams.asc_setPageOptionsMap(this._changedProps); - this.adjPrintParams.asc_setIgnorePrintArea(this.printSettings.getIgnorePrintArea()); - Common.localStorage.setItem("sse-print-settings-range", printType); + var printType = this.printSettings.getRange(); + this.adjPrintParams.asc_setPrintType(printType); + this.adjPrintParams.asc_setPageOptionsMap(this._changedProps); + this.adjPrintParams.asc_setIgnorePrintArea(this.printSettings.getIgnorePrintArea()); + Common.localStorage.setItem("sse-print-settings-range", printType); + if (print) { var opts = new Asc.asc_CDownloadOptions(null, Common.Utils.isChrome || Common.Utils.isOpera || Common.Utils.isGecko && Common.Utils.firefoxVersion>86); opts.asc_setAdvancedOptions(this.adjPrintParams); this.api.asc_Print(opts); - Common.NotificationCenter.trigger('edit:complete', view); this._isPrint = false; } + Common.NotificationCenter.trigger('edit:complete', view); } }, From 5bade65f02fd77599cea9a75be573c477da97601 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 13 Dec 2022 19:43:12 +0400 Subject: [PATCH 22/54] [DE mobile] Fix Bug 59855 --- .../lib/view/collaboration/Collaboration.jsx | 15 +++++++++------ apps/documenteditor/mobile/src/page/main.jsx | 5 ++--- apps/presentationeditor/mobile/src/page/main.jsx | 4 ++-- apps/spreadsheeteditor/mobile/src/page/main.jsx | 4 ++-- 4 files changed, 15 insertions(+), 13 deletions(-) diff --git a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx index 5eed9bd99..43a867c71 100644 --- a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx +++ b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx @@ -92,6 +92,9 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => { const { t } = useTranslation(); const _t = t('Common.Collaboration', {returnObjects: true}); const appOptions = props.storeAppOptions; + const documentInfo = props.documentInfo; + const dataDoc = documentInfo && documentInfo.dataDoc; + const fileType = dataDoc && dataDoc.fileType; const sharingSettingsUrl = appOptions.sharingSettingsUrl; const isViewer = appOptions.isViewer; @@ -108,7 +111,7 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => { } - {sharingSettingsUrl && + {(sharingSettingsUrl && fileType !== 'oform') && @@ -148,10 +151,10 @@ class CollaborationView extends Component { return ( show_popover ? this.props.onclosed()} closeByOutsideClick={false}> - + : this.props.onclosed()}> - + ) } @@ -177,9 +180,9 @@ const Collaboration = props => { }; return ( - + ) }; -export {PageCollaboration} -export default Collaboration; +const CollaborationDocument = inject('storeDocumentInfo')(observer(Collaboration)); +export {Collaboration, CollaborationDocument}; diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index b06d0d5e6..f0c88ee5e 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -7,7 +7,7 @@ import { withTranslation } from 'react-i18next'; import EditOptions from '../view/edit/Edit'; import AddOptions from '../view/add/Add'; import Settings from '../controller/settings/Settings'; -import Collaboration from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' +import { CollaborationDocument } from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' import { Device } from '../../../../common/mobile/utils/device' import { Search, SearchSettings } from '../controller/Search'; import ContextMenu from '../controller/ContextMenu'; @@ -229,8 +229,7 @@ class MainPage extends Component { } { !this.state.collaborationVisible ? null : - + } { !this.state.navigationVisible ? null : diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index f063d3584..d3e8d3af3 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -6,7 +6,7 @@ import { Device } from '../../../../common/mobile/utils/device'; import EditOptions from '../view/edit/Edit'; import AddOptions from '../view/add/Add'; import Settings from '../view/settings/Settings'; -import CollaborationView from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx'; +import { Collaboration } from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx'; import { Preview } from "../controller/Preview"; import { Search, SearchSettings } from '../controller/Search'; import ContextMenu from '../controller/ContextMenu'; @@ -179,7 +179,7 @@ class MainPage extends Component { } { !this.state.collaborationVisible ? null : - + } {appOptions.isDocReady && }
diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index c24dc6ef9..b49c1ba35 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -4,7 +4,7 @@ import { observer, inject } from "mobx-react"; import { Device } from '../../../../common/mobile/utils/device'; import Settings from '../view/settings/Settings'; -import CollaborationView from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' +import { Collaboration } from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' import CellEditor from '../controller/CellEditor'; import { Statusbar } from '../controller/Statusbar'; import FilterOptionsController from '../controller/FilterOptions.jsx' @@ -167,7 +167,7 @@ class MainPage extends Component { } { !this.state.collaborationVisible ? null : - + } {appOptions.isDocReady && From e4ceba55af74ebde99ad58676e7c0ad460dd7e0e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 13 Dec 2022 20:07:24 +0300 Subject: [PATCH 23/54] [SSE] For Bug 47036 --- .../spreadsheeteditor/main/app/controller/DataTab.js | 2 ++ apps/spreadsheeteditor/main/app/controller/Main.js | 7 +++++-- apps/spreadsheeteditor/main/app/view/DataTab.js | 12 ++++++++++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 070045995..ebe933563 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -267,6 +267,7 @@ define([ } else if (type === 'storage') { // Common.NotificationCenter.trigger('storage:data-load', 'add'); } else if (type === 'xml') { + Common.Utils.InternalSettings.set('import-xml-start', true); this.api && this.api.asc_ImportXmlStart(_.bind(this.onDataFromXMLCallback, this)); } }, @@ -290,6 +291,7 @@ define([ }, onDataFromXMLCallback: function(fileContent) { + Common.Utils.InternalSettings.set('import-xml-start', false); if (!fileContent) return; var me = this; diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 42d6165d5..b634ac63f 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -2009,7 +2009,9 @@ define([ case Asc.c_oAscError.ID.ConvertationOpenFormat: config.maxwidth = 600; - if (errData === 'pdf') + if (Common.Utils.InternalSettings.get('import-xml-start')) + config.msg = this.errorConvertXml; + else if (errData === 'pdf') config.msg = this.errorInconsistentExtPdf.replace('%1', this.appOptions.spreadsheet.fileType || ''); else if (errData === 'docx') config.msg = this.errorInconsistentExtDocx.replace('%1', this.appOptions.spreadsheet.fileType || ''); @@ -3763,7 +3765,8 @@ define([ errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.', errorCannotPasteImg: 'We can\'t paste this image from the Clipboard, but you can save it to your device and \ninsert it from there, or you can copy the image without text and paste it into the spreadsheet.', - textTryQuickPrint: 'You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?' + textTryQuickPrint: 'You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?', + errorConvertXml: 'An error has occurred while opening the file.
Only Spreadsheet Xml 2003 format is supported.' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index 4bec61b70..0cb9b9e1d 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -310,10 +310,17 @@ define([ me.btnDataFromText.updateHint(me.tipDataFromText); me.btnDataFromText.menu && me.btnDataFromText.setMenu(new Common.UI.Menu({ + style: 'max-width: 300px;', items: [ { caption: me.mniFromFile, value: 'file' }, { caption: me.mniFromUrl, value: 'url' }, - { caption: me.mniFromXMLFile, value: 'xml' } + { caption: '--'}, + { caption: me.mniFromXMLFile, + value: 'xml', + description: me.mniFromXMLFileDesc, + template:_.template('
<%= caption %>
' + + '
') + } // { caption: me.mniImageFromStorage, value: 'storage'} ] })); @@ -402,7 +409,8 @@ define([ mniFromUrl: 'Get Data from URL', capDataExternalLinks: 'External Links', tipExternalLinks: 'View other files this spreadsheet is linked to', - mniFromXMLFile: 'From Local XML' + mniFromXMLFile: 'From Local XML', + mniFromXMLFileDesc: 'Only Spreadsheet Xml 2003 format is supported' } }()), SSE.Views.DataTab || {})); }); From 5cbbf902c8536c075eef365a8f111d216df7ecf4 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Tue, 13 Dec 2022 22:18:45 +0300 Subject: [PATCH 24/54] [all] fix bug 59485 --- apps/common/main/lib/controller/HintManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index de1d4703c..cf913714e 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -324,7 +324,7 @@ Common.UI.HintManager = new(function() { index++; } var title = el.attr('data-hint-title'); - if (!title) { + if (!title && !(index > _arrLetters.length)) { el.attr('data-hint-title', _arrLetters[index].toUpperCase()); index++; } From fc830b9cb529d251598dcd6e1fd0484de668b3a6 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 13 Dec 2022 23:40:04 +0300 Subject: [PATCH 25/54] [SSE] Update external links on editor opening. Warn when user adds links --- .../main/app/controller/DataTab.js | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 070045995..bb318ecca 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -115,10 +115,11 @@ define([ Common.NotificationCenter.on('data:remduplicates', _.bind(this.onRemoveDuplicates, this)); Common.NotificationCenter.on('data:sortcustom', _.bind(this.onCustomSort, this)); if (this.toolbar.mode.canRequestReferenceData && this.api) { - // this.api.asc_registerCallback('asc_onNeedUpdateExternalReferenceOnOpen', _.bind(this.onNeedUpdateExternalReferenceOnOpen, this)); + this.api.asc_registerCallback('asc_onNeedUpdateExternalReferenceOnOpen', _.bind(this.onNeedUpdateExternalReferenceOnOpen, this)); this.api.asc_registerCallback('asc_onStartUpdateExternalReference', _.bind(this.onStartUpdateExternalReference, this)); this.api.asc_registerCallback('asc_onUpdateExternalReference', _.bind(this.onUpdateExternalReference, this)); this.api.asc_registerCallback('asc_onErrorUpdateExternalReference', _.bind(this.onErrorUpdateExternalReference, this)); + this.api.asc_registerCallback('asc_onAddExternalReference', _.bind(this.onAddExternalReference, this)); Common.Gateway.on('setreferencedata', _.bind(this.setReferenceData, this)); } }, @@ -559,8 +560,17 @@ define([ }, onNeedUpdateExternalReferenceOnOpen: function() { - var links = this.api.asc_getExternalReferences(); - links && (links.length>0) && this.api.asc_updateExternalReferences(links); + Common.UI.warning({ + msg: this.warnUpdateExternalData, + buttons: [{value: 'ok', caption: this.textUpdate, primary: true}, {value: 'cancel', caption: this.textDontUpdate}], + maxwidth: 600, + callback: _.bind(function(btn) { + if (btn==='ok') { + var links = this.api.asc_getExternalReferences(); + links && (links.length>0) && this.api.asc_updateExternalReferences(links); + } + }, this) + }); }, onErrorUpdateExternalReference: function(id) { @@ -569,6 +579,12 @@ define([ } }, + onAddExternalReference: function() { + var val = Common.localStorage.getBool("sse-hide-add-external-warn"); + !val && Common.NotificationCenter.trigger('showmessage', {msg: this.textAddExternalData}); + Common.localStorage.setBool("sse-hide-add-external-warn", true); + }, + onWorksheetLocked: function(index,locked) { if (index == this.api.asc_getActiveWorksheetIndex()) { Common.Utils.lockControls(Common.enumLock.sheetLock, locked, {array: this.view.btnsSortDown.concat(this.view.btnsSortUp, this.view.btnCustomSort, this.view.btnGroup, this.view.btnUngroup)}); @@ -612,7 +628,11 @@ define([ txtImportWizard: 'Text Import Wizard', txtUrlTitle: 'Paste a data URL', txtErrorExternalLink: 'Error: updating is failed', - strSheet: 'Sheet' + strSheet: 'Sheet', + warnUpdateExternalData: 'This workbook contains links to one or more external sources that could be unsafe.
If you trust the links, update them to get the latest data.', + textUpdate: 'Update', + textDontUpdate: 'Don\'t Update', + textAddExternalData: 'Added link to external source. You can update such links in the Data tab.' }, SSE.Controllers.DataTab || {})); }); \ No newline at end of file From 4ddb7ecf3f5a68039a68626264ec5eed410d3a91 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 14 Dec 2022 13:26:08 +0300 Subject: [PATCH 26/54] [DE] Fix protection tooltips --- .../main/app/controller/DocProtection.js | 18 ++++++++++++------ .../main/app/view/DocProtection.js | 7 +------ apps/documenteditor/main/locale/en.json | 15 ++++++++++----- apps/documenteditor/main/locale/ru.json | 10 +++++----- 4 files changed, 28 insertions(+), 22 deletions(-) diff --git a/apps/documenteditor/main/app/controller/DocProtection.js b/apps/documenteditor/main/app/controller/DocProtection.js index ab8488fc0..bd5be8645 100644 --- a/apps/documenteditor/main/app/controller/DocProtection.js +++ b/apps/documenteditor/main/app/controller/DocProtection.js @@ -209,19 +209,19 @@ define([ if (userId && this.userCollection) { var recUser = this.userCollection.findOriginalUser(userId); if (recUser && (recUser.get('idOriginal') !== this.currentUserId)) { - var str = this.view.txtWasUnprotected; + var str = this.txtWasUnprotected; switch (this._state.docProtection.type) { case Asc.c_oAscEDocProtect.ReadOnly: - str = this.view.txtWasProtectedView; + str = this.txtWasProtectedView; break; case Asc.c_oAscEDocProtect.Comments: - str = this.view.txtWasProtectedComment; + str = this.txtWasProtectedComment; break; case Asc.c_oAscEDocProtect.Forms: - str = this.view.txtWasProtectedForms; + str = this.txtWasProtectedForms; break; case Asc.c_oAscEDocProtect.TrackedChanges: - str = this.view.txtWasProtectedTrack; + str = this.txtWasProtectedTrack; break; } str && Common.NotificationCenter.trigger('showmessage', {msg: str}, {timeout: 5000, hideCloseTip: true}); @@ -269,7 +269,13 @@ define([ if (this._docProtectDlg && this._docProtectDlg.isVisible()) this._docProtectDlg.SetDisabled(state || this._state.docProtection && (this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly || this._state.docProtection.isReviewOnly)); - } + }, + + txtWasProtectedView: 'Document has been protected by another user.\nYou may only view this document.', + txtWasProtectedTrack: 'Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.', + txtWasProtectedComment: 'Document has been protected by another user.\nYou may only insert comments to this document.', + txtWasProtectedForms: 'Document has been protected by another user.\nYou may only fill in forms in this document.', + txtWasUnprotected: 'Document has been unprotected.' }, DE.Controllers.DocProtection || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/DocProtection.js b/apps/documenteditor/main/app/view/DocProtection.js index 24151040c..81bf01e1f 100644 --- a/apps/documenteditor/main/app/view/DocProtection.js +++ b/apps/documenteditor/main/app/view/DocProtection.js @@ -142,12 +142,7 @@ define([ txtDocProtectedForms: 'Document is protected.
You may only fill in forms in this document.', hintProtectDoc: 'Protect document', txtDocUnlockDescription: 'Enter a password to unprotect document', - txtUnlockTitle: 'Unprotect Document', - txtWasProtectedView: 'Document has been protected by another user.\nYou may only view this document.', - txtWasProtectedTrack: 'Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.', - txtWasProtectedComment: 'Document has been protected by another user.\nYou may only insert comments to this document.', - txtWasProtectedForms: 'Document has been protected by another user.\nYou may only fill in forms in this document.', - txtWasUnprotected: 'Document has been unprotected.' + txtUnlockTitle: 'Unprotect Document' } }()), DE.Views.DocProtection || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 37c8592b4..8bd663e4f 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1634,11 +1634,16 @@ "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document", "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", - "DE.Views.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", - "DE.Views.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", - "DE.Views.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", - "DE.Views.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", - "DE.Views.DocProtection.txtWasUnprotected": "Document has been unprotected.", + "del_DE.Views.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", + "del_DE.Views.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", + "del_DE.Views.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "del_DE.Views.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", + "del_DE.Views.DocProtection.txtWasUnprotected": "Document has been unprotected.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 8d456eddd..527126ad4 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1634,11 +1634,11 @@ "DE.Views.DocProtection.txtDocUnlockDescription": "Введите пароль, чтобы снять защиту документа", "DE.Views.DocProtection.txtProtectDoc": "Защитить документ", "DE.Views.DocProtection.txtUnlockTitle": "Снять защиту документа", - "DE.Views.DocProtection.txtWasProtectedComment": "Документ защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.", - "DE.Views.DocProtection.txtWasProtectedForms": "Документ защищен другим пользователем.\nВы можете только заполнять формы в этом документе.", - "DE.Views.DocProtection.txtWasProtectedTrack": "Документ защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", - "DE.Views.DocProtection.txtWasProtectedView": "Документ защищен другим пользователем.\nВы можете только просматривать этот документ.", - "DE.Views.DocProtection.txtWasUnprotected": "Защита документа снята.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Документ защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Документ защищен другим пользователем.\nВы можете только заполнять формы в этом документе.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Документ защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Документ защищен другим пользователем.\nВы можете только просматривать этот документ.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Защита документа снята.", "DE.Views.DocumentHolder.aboveText": "Выше", "DE.Views.DocumentHolder.addCommentText": "Добавить комментарий", "DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы", From 8f06fbf1675da6e1edaae9e666e61f37b370f731 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 14 Dec 2022 17:33:42 +0400 Subject: [PATCH 27/54] [DE mobile] Fix Bug 60079 --- apps/documenteditor/mobile/src/view/Toolbar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx index 4f6978bd6..d642d8bd9 100644 --- a/apps/documenteditor/mobile/src/view/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx @@ -62,7 +62,7 @@ const ToolbarView = props => { onRedoClick: props.onRedo })} {/*isAvailableExt && !props.disabledControls &&*/} - {(isViewer || !Device.phone) && { + {((isViewer || !Device.phone) && isAvailableExt) && { await props.changeMobileView(); await props.openOptions('snackbar'); setTimeout(() => { From 1718dcdee45b17e347f31c8333a2db691d9a21c1 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 14 Dec 2022 20:14:47 +0300 Subject: [PATCH 28/54] Fix Bug 60136 --- apps/documenteditor/main/app/view/ChartSettings.js | 12 ++++++------ .../main/app/view/ChartSettings.js | 12 ++++++------ .../spreadsheeteditor/main/app/view/ChartSettings.js | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index 77089a90f..bdb5851e5 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -357,7 +357,7 @@ define([ }); this.lockedControls.push(this.btnLeft); this.btnLeft.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() - 10); + this.spnX.setValue(Math.ceil((this.spnX.getNumberValue() - 10)/10)*10); }, this)); this.btnRight = new Common.UI.Button({ @@ -370,7 +370,7 @@ define([ }); this.lockedControls.push(this.btnRight); this.btnRight.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() + 10); + this.spnX.setValue(Math.floor((this.spnX.getNumberValue() + 10)/10)*10); }, this)); this.spnY = new Common.UI.MetricSpinner({ @@ -399,7 +399,7 @@ define([ }); this.lockedControls.push(this.btnUp); this.btnUp.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() - 10); + this.spnY.setValue(Math.ceil((this.spnY.getNumberValue() - 10)/10)*10); }, this)); this.btnDown= new Common.UI.Button({ @@ -412,7 +412,7 @@ define([ }); this.lockedControls.push(this.btnDown); this.btnDown.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() + 10); + this.spnY.setValue(Math.floor((this.spnY.getNumberValue() + 10)/10)*10); }, this)); this.spnPerspective = new Common.UI.MetricSpinner({ @@ -441,7 +441,7 @@ define([ }); this.lockedControls.push(this.btnNarrow); this.btnNarrow.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + this.spnPerspective.setValue(Math.ceil((this.spnPerspective.getNumberValue() - 5)/5)*5); }, this)); this.btnWiden= new Common.UI.Button({ @@ -454,7 +454,7 @@ define([ }); this.lockedControls.push(this.btnWiden); this.btnWiden.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + this.spnPerspective.setValue(Math.floor((this.spnPerspective.getNumberValue() + 5)/5)*5); }, this)); this.chRightAngle = new Common.UI.CheckBox({ diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index a1beac866..1d5196727 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -366,7 +366,7 @@ define([ }); this.lockedControls.push(this.btnLeft); this.btnLeft.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() - 10); + this.spnX.setValue(Math.ceil((this.spnX.getNumberValue() - 10)/10)*10); }, this)); this.btnRight= new Common.UI.Button({ @@ -379,7 +379,7 @@ define([ }); this.lockedControls.push(this.btnRight); this.btnRight.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() + 10); + this.spnX.setValue(Math.floor((this.spnX.getNumberValue() + 10)/10)*10); }, this)); this.spnY = new Common.UI.MetricSpinner({ @@ -408,7 +408,7 @@ define([ }); this.lockedControls.push(this.btnUp); this.btnUp.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() - 10); + this.spnY.setValue(Math.ceil((this.spnY.getNumberValue() - 10)/10)*10); }, this)); this.btnDown= new Common.UI.Button({ @@ -421,7 +421,7 @@ define([ }); this.lockedControls.push(this.btnDown); this.btnDown.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() + 10); + this.spnY.setValue(Math.floor((this.spnY.getNumberValue() + 10)/10)*10); }, this)); this.spnPerspective = new Common.UI.MetricSpinner({ @@ -450,7 +450,7 @@ define([ }); this.lockedControls.push(this.btnNarrow); this.btnNarrow.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + this.spnPerspective.setValue(Math.ceil((this.spnPerspective.getNumberValue() - 5)/5)*5); }, this)); this.btnWiden= new Common.UI.Button({ @@ -463,7 +463,7 @@ define([ }); this.lockedControls.push(this.btnWiden); this.btnWiden.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + this.spnPerspective.setValue(Math.floor((this.spnPerspective.getNumberValue() + 5)/5)*5); }, this)); this.chRightAngle = new Common.UI.CheckBox({ diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettings.js b/apps/spreadsheeteditor/main/app/view/ChartSettings.js index 2bd693270..e4f07f647 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettings.js @@ -858,7 +858,7 @@ define([ }); this.lockedControls.push(this.btnLeft); this.btnLeft.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() - 10); + this.spnX.setValue(Math.ceil((this.spnX.getNumberValue() - 10)/10)*10); }, this)); this.btnRight= new Common.UI.Button({ @@ -871,7 +871,7 @@ define([ }); this.lockedControls.push(this.btnRight); this.btnRight.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() + 10); + this.spnX.setValue(Math.floor((this.spnX.getNumberValue() + 10)/10)*10); }, this)); this.spnY = new Common.UI.MetricSpinner({ @@ -900,7 +900,7 @@ define([ }); this.lockedControls.push(this.btnUp); this.btnUp.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() - 10); + this.spnY.setValue(Math.ceil((this.spnY.getNumberValue() - 10)/10)*10); }, this)); this.btnDown= new Common.UI.Button({ @@ -913,7 +913,7 @@ define([ }); this.lockedControls.push(this.btnDown); this.btnDown.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() + 10); + this.spnY.setValue(Math.floor((this.spnY.getNumberValue() + 10)/10)*10); }, this)); this.spnPerspective = new Common.UI.MetricSpinner({ @@ -942,7 +942,7 @@ define([ }); this.lockedControls.push(this.btnNarrow); this.btnNarrow.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + this.spnPerspective.setValue(Math.ceil((this.spnPerspective.getNumberValue() - 5)/5)*5); }, this)); this.btnWiden= new Common.UI.Button({ @@ -955,7 +955,7 @@ define([ }); this.lockedControls.push(this.btnWiden); this.btnWiden.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + this.spnPerspective.setValue(Math.floor((this.spnPerspective.getNumberValue() + 5)/5)*5); }, this)); this.chRightAngle = new Common.UI.CheckBox({ From 3a9d32a90fcd32b77dae0e95db376639f5ccb676 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 14 Dec 2022 21:08:37 +0300 Subject: [PATCH 29/54] For Bug 55586 --- .../main/app/controller/DocumentHolder.js | 26 +++++++++++++++++ .../main/app/controller/DocumentHolder.js | 29 ++++++++++++++++++- 2 files changed, 54 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index a5f42263c..84bcb1c79 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -214,6 +214,9 @@ define([ this.api.asc_registerCallback('asc_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this)); this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this)); this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this)); + this.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.Image, _.bind(this.onInsertImage, this)); + this.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.ImageUrl, _.bind(this.onInsertImageUrl, this)); + } this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); @@ -2495,6 +2498,29 @@ define([ } }, + onInsertImage: function(obj, x, y) { + if (this.api) + this.api.asc_addImage(obj); + this.editComplete(); + }, + + onInsertImageUrl: function(obj, x, y) { + var me = this; + (new Common.Views.ImageFromUrlDialog({ + handler: function(result, value) { + if (result == 'ok') { + if (me.api) { + var checkUrl = value.replace(/ /g, ''); + if (!_.isEmpty(checkUrl)) { + me.api.AddImageUrl([checkUrl], undefined, undefined, obj); + } + } + } + me.editComplete(); + } + })).show(); + }, + editComplete: function() { this.documentHolder && this.documentHolder.fireEvent('editcomplete', this.documentHolder); } diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index e5147d165..80599fdde 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -374,8 +374,12 @@ define([ this.api.asc_registerCallback('asc_onInputMessage', _.bind(this.onInputMessage, this)); this.api.asc_registerCallback('asc_onTableTotalMenu', _.bind(this.onTableTotalMenu, this)); this.api.asc_registerCallback('asc_onShowPivotGroupDialog', _.bind(this.onShowPivotGroupDialog, this)); - if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle) + if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle) { this.api.asc_registerCallback('asc_doubleClickOnTableOleObject', _.bind(this.onDoubleClickOnTableOleObject, this)); + this.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.Image, _.bind(this.onInsertImage, this)); + this.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.ImageUrl, _.bind(this.onInsertImageUrl, this)); + + } this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this)); this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this)); } @@ -4411,6 +4415,29 @@ define([ } }, + onInsertImage: function(obj, x, y) { + if (this.api) + this.api.asc_addImage(obj); + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + }, + + onInsertImageUrl: function(obj, x, y) { + var me = this; + (new Common.Views.ImageFromUrlDialog({ + handler: function(result, value) { + if (result == 'ok') { + if (me.api) { + var checkUrl = value.replace(/ /g, ''); + if (!_.isEmpty(checkUrl)) { + me.api.AddImageUrl([checkUrl], undefined, undefined, obj); + } + } + } + Common.NotificationCenter.trigger('edit:complete', me.documentHolder); + } + })).show(); + }, + getUserName: function(id){ var usersStore = SSE.getCollection('Common.Collections.Users'); if (usersStore){ From 9c2c938522bb238f71f35e608ad10ea4cbb977ae Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 14 Dec 2022 22:19:30 +0300 Subject: [PATCH 30/54] [SSE] Update external reference --- apps/spreadsheeteditor/main/app/controller/DataTab.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index bb318ecca..7a9a17901 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -119,7 +119,7 @@ define([ this.api.asc_registerCallback('asc_onStartUpdateExternalReference', _.bind(this.onStartUpdateExternalReference, this)); this.api.asc_registerCallback('asc_onUpdateExternalReference', _.bind(this.onUpdateExternalReference, this)); this.api.asc_registerCallback('asc_onErrorUpdateExternalReference', _.bind(this.onErrorUpdateExternalReference, this)); - this.api.asc_registerCallback('asc_onAddExternalReference', _.bind(this.onAddExternalReference, this)); + this.api.asc_registerCallback('asc_onNeedUpdateExternalReference', _.bind(this.onNeedUpdateExternalReference, this)); Common.Gateway.on('setreferencedata', _.bind(this.setReferenceData, this)); } }, @@ -579,7 +579,7 @@ define([ } }, - onAddExternalReference: function() { + onNeedUpdateExternalReference: function() { var val = Common.localStorage.getBool("sse-hide-add-external-warn"); !val && Common.NotificationCenter.trigger('showmessage', {msg: this.textAddExternalData}); Common.localStorage.setBool("sse-hide-add-external-warn", true); From f7bb67ed677d622cf9ca9fe993bc6e3cee7f24a9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 00:33:57 +0300 Subject: [PATCH 31/54] [DE] Show warning on opening protected document --- .../main/app/controller/DocProtection.js | 47 +++++++++++++++++-- apps/documenteditor/main/locale/en.json | 4 ++ apps/documenteditor/main/locale/ru.json | 4 ++ 3 files changed, 51 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/main/app/controller/DocProtection.js b/apps/documenteditor/main/app/controller/DocProtection.js index bd5be8645..113b949fb 100644 --- a/apps/documenteditor/main/app/controller/DocProtection.js +++ b/apps/documenteditor/main/app/controller/DocProtection.js @@ -170,8 +170,8 @@ define([ }, onAppReady: function (config) { - if (!this.view) return; - + if (!this.api) return; + var me = this; (new Promise(function (resolve) { resolve(); @@ -180,12 +180,47 @@ define([ type = props ? props.asc_getEditType() : Asc.c_oAscEDocProtect.None, isProtected = (type === Asc.c_oAscEDocProtect.ReadOnly || type === Asc.c_oAscEDocProtect.Comments || type === Asc.c_oAscEDocProtect.TrackedChanges || type === Asc.c_oAscEDocProtect.Forms); - me.view.btnProtectDoc.toggle(!!isProtected, true); + me.view && me.view.btnProtectDoc.toggle(!!isProtected, true); + + if (isProtected) { + var str; + switch (type) { + case Asc.c_oAscEDocProtect.ReadOnly: + str = me.txtIsProtectedView; + break; + case Asc.c_oAscEDocProtect.Comments: + str = me.txtIsProtectedComment; + break; + case Asc.c_oAscEDocProtect.Forms: + str = me.txtIsProtectedForms; + break; + case Asc.c_oAscEDocProtect.TrackedChanges: + str = me.txtIsProtectedTrack; + break; + } + me._protectionTip = new Common.UI.SynchronizeTip({ + extCls: 'no-arrow', + placement: 'bottom', + target: $('.toolbar'), + text: str, + showLink: false, + style: 'max-width: 400px;' + }); + me._protectionTip.on('closeclick', function () { + this.close(); + }).show(); + } + props && me.applyRestrictions(type); }); }, onChangeProtectDocument: function(userId) { + if (this._protectionTip && this._protectionTip.isVisible()) { + this._protectionTip.close(); + this._protectionTip = undefined; + } + var props = this.getDocProps(true), isProtected = props && (props.isReadOnly || props.isCommentsOnly || props.isFormsOnly || props.isReviewOnly); this.view && this.view.btnProtectDoc.toggle(isProtected, true); @@ -275,7 +310,11 @@ define([ txtWasProtectedTrack: 'Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.', txtWasProtectedComment: 'Document has been protected by another user.\nYou may only insert comments to this document.', txtWasProtectedForms: 'Document has been protected by another user.\nYou may only fill in forms in this document.', - txtWasUnprotected: 'Document has been unprotected.' + txtWasUnprotected: 'Document has been unprotected.', + txtIsProtectedView: 'Document is protected. You may only view this document.', + txtIsProtectedTrack: 'Document is protected. You may edit this document, but all changes will be tracked.', + txtIsProtectedComment: 'Document is protected. You may only insert comments to this document.', + txtIsProtectedForms: 'Document is protected. You may only fill in forms in this document.' }, DE.Controllers.DocProtection || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 8bd663e4f..6894860a1 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1644,6 +1644,10 @@ "DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", "DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", "DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Document is protected. You may only view this document.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Document is protected. You may edit this document, but all changes will be tracked.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Document is protected. You may only insert comments to this document.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Document is protected. You may only fill in forms in this document.", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 527126ad4..bfe8644f8 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1639,6 +1639,10 @@ "DE.Controllers.DocProtection.txtWasProtectedTrack": "Документ защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", "DE.Controllers.DocProtection.txtWasProtectedView": "Документ защищен другим пользователем.\nВы можете только просматривать этот документ.", "DE.Controllers.DocProtection.txtWasUnprotected": "Защита документа снята.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Документ защищен. Вы можете только просматривать этот документ.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Документ защищен. Вы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Документ защищен. Вы можете только добавлять комментарии к этому документу.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Документ защищен. Вы можете только заполнять формы в этом документе.", "DE.Views.DocumentHolder.aboveText": "Выше", "DE.Views.DocumentHolder.addCommentText": "Добавить комментарий", "DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы", From c75ef98444e5b7d2e2d531c4cb9e07fa6b82b2d7 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 15 Dec 2022 12:38:17 +0300 Subject: [PATCH 32/54] [DE PE] Fix bug 59023 --- apps/documenteditor/main/app/controller/Search.js | 2 +- apps/presentationeditor/main/app/controller/Search.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Search.js b/apps/documenteditor/main/app/controller/Search.js index 23b9fbd25..545837edc 100644 --- a/apps/documenteditor/main/app/controller/Search.js +++ b/apps/documenteditor/main/app/controller/Search.js @@ -124,7 +124,7 @@ define([ for (var l = 0; l < text.length; l++) { var charCode = text.charCodeAt(l), char = text.charAt(l); - if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') { + if (AscCommon.IsPunctuation(charCode) || char.trim() === '') { isPunctuation = true; break; } diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js index 803114b60..5453d5e3c 100644 --- a/apps/presentationeditor/main/app/controller/Search.js +++ b/apps/presentationeditor/main/app/controller/Search.js @@ -138,7 +138,7 @@ define([ for (var l = 0; l < text.length; l++) { var charCode = text.charCodeAt(l), char = text.charAt(l); - if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') { + if (AscCommon.IsPunctuation(charCode) || char.trim() === '') { isPunctuation = true; break; } From cb0a41f8d63a3baa4bc6ee6c7f50a4586512d59c Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 13:44:48 +0300 Subject: [PATCH 33/54] [SSE] Fix for import xml error --- apps/spreadsheeteditor/main/app/controller/DataTab.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index ebe933563..1c74176c0 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -291,7 +291,10 @@ define([ }, onDataFromXMLCallback: function(fileContent) { - Common.Utils.InternalSettings.set('import-xml-start', false); + setTimeout(function() { + Common.Utils.InternalSettings.set('import-xml-start', false); + }, 500); + if (!fileContent) return; var me = this; From 91b9b2ce0c0a38c3e9184610ab81517c7cbd3850 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 14:00:31 +0300 Subject: [PATCH 34/54] [SSE] Add tooltip for import data from xml --- apps/spreadsheeteditor/main/app/view/DataTab.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index 0cb9b9e1d..d1dcf40c0 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -310,16 +310,17 @@ define([ me.btnDataFromText.updateHint(me.tipDataFromText); me.btnDataFromText.menu && me.btnDataFromText.setMenu(new Common.UI.Menu({ - style: 'max-width: 300px;', + // style: 'max-width: 300px;', items: [ { caption: me.mniFromFile, value: 'file' }, { caption: me.mniFromUrl, value: 'url' }, - { caption: '--'}, + // { caption: '--'}, { caption: me.mniFromXMLFile, value: 'xml', - description: me.mniFromXMLFileDesc, - template:_.template('
<%= caption %>
' + - '
') + hint: me.mniFromXMLFileDesc + // description: me.mniFromXMLFileDesc, + // template:_.template('
<%= caption %>
' + + // '
') } // { caption: me.mniImageFromStorage, value: 'storage'} ] From ffdff0a70aaa7710b08754c97146a848641718c5 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 14:39:00 +0300 Subject: [PATCH 35/54] [SSE] Change import from xml menu item --- apps/spreadsheeteditor/main/app/view/DataTab.js | 12 +++--------- apps/spreadsheeteditor/main/locale/en.json | 1 + 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index d1dcf40c0..bd48c26a4 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -310,17 +310,12 @@ define([ me.btnDataFromText.updateHint(me.tipDataFromText); me.btnDataFromText.menu && me.btnDataFromText.setMenu(new Common.UI.Menu({ - // style: 'max-width: 300px;', items: [ { caption: me.mniFromFile, value: 'file' }, { caption: me.mniFromUrl, value: 'url' }, - // { caption: '--'}, + { caption: '--'}, { caption: me.mniFromXMLFile, - value: 'xml', - hint: me.mniFromXMLFileDesc - // description: me.mniFromXMLFileDesc, - // template:_.template('
<%= caption %>
' + - // '
') + value: 'xml' } // { caption: me.mniImageFromStorage, value: 'storage'} ] @@ -410,8 +405,7 @@ define([ mniFromUrl: 'Get Data from URL', capDataExternalLinks: 'External Links', tipExternalLinks: 'View other files this spreadsheet is linked to', - mniFromXMLFile: 'From Local XML', - mniFromXMLFileDesc: 'Only Spreadsheet Xml 2003 format is supported' + mniFromXMLFile: 'From Local XML' } }()), SSE.Views.DataTab || {})); }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 1ecb7098f..2ca3d8668 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1030,6 +1030,7 @@ "SSE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "SSE.Controllers.Main.errorConvertXml": "An error has occurred while opening the file.
Only Spreadsheet Xml 2003 format is supported.", "SSE.Controllers.Main.textUndo": "Undo", "SSE.Controllers.Main.textYes": "Yes", "SSE.Controllers.Main.titleLicenseExp": "License expired", From c9af36d98765f770633d8b66cf0de3f12113f185 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 15:11:05 +0300 Subject: [PATCH 36/54] [SSE] Update translation --- apps/spreadsheeteditor/main/app/controller/Main.js | 2 +- apps/spreadsheeteditor/main/locale/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index b634ac63f..c840ff3e1 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -3766,7 +3766,7 @@ define([ errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.', errorCannotPasteImg: 'We can\'t paste this image from the Clipboard, but you can save it to your device and \ninsert it from there, or you can copy the image without text and paste it into the spreadsheet.', textTryQuickPrint: 'You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?', - errorConvertXml: 'An error has occurred while opening the file.
Only Spreadsheet Xml 2003 format is supported.' + errorConvertXml: 'The file has an unsupported format.
Only XML Spreadsheet 2003 format can be used.' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 2ca3d8668..2fb81166a 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1030,7 +1030,7 @@ "SSE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "SSE.Controllers.Main.errorConvertXml": "An error has occurred while opening the file.
Only Spreadsheet Xml 2003 format is supported.", + "SSE.Controllers.Main.errorConvertXml": "The file has an unsupported format.
Only XML Spreadsheet 2003 format can be used.", "SSE.Controllers.Main.textUndo": "Undo", "SSE.Controllers.Main.textYes": "Yes", "SSE.Controllers.Main.titleLicenseExp": "License expired", From e61c7dba20d050167488dc7aa5685e6ab4cd6c01 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 15 Dec 2022 17:09:05 +0400 Subject: [PATCH 37/54] [SSE mobile] Fix Bug 60059 --- apps/spreadsheeteditor/mobile/src/controller/Main.jsx | 3 --- .../mobile/src/controller/add/AddFilter.jsx | 8 ++++++-- apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx | 8 ++++++-- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index bdedc8af0..d6d8ba376 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -516,9 +516,6 @@ class MainController extends Component { storeSpreadsheetInfo.changeTitle(meta.title); } }); - - const storeAppOptions = this.props.storeAppOptions; - this.api.asc_setFilteringMode && this.api.asc_setFilteringMode(storeAppOptions.canModifyFilter); } onEntriesListMenu(validation, textArr, addArr) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx index e9efe41cc..3ce81725c 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx @@ -24,6 +24,9 @@ class AddFilterController extends Component { componentDidMount () { const api = Common.EditorApi.get(); + const appOptions = this.props.storeAppOptions; + + api.asc_setFilteringMode && api.asc_setFilteringMode(appOptions.canModifyFilter); api.asc_registerCallback('asc_onError', this.uncheckedFilter); } @@ -108,7 +111,8 @@ class AddFilterController extends Component { const api = Common.EditorApi.get(); const formatTableInfo = api.asc_getCellInfo().asc_getFormatTableInfo(); const tablename = (formatTableInfo) ? formatTableInfo.asc_getTableName() : undefined; - if (checked) { + + if (checked || tablename) { api.asc_addAutoFilter(); } else { api.asc_changeAutoFilter(tablename, Asc.c_oAscChangeFilterOptions.filter, checked); @@ -127,4 +131,4 @@ class AddFilterController extends Component { } } -export default inject("storeWorksheets")(observer(withTranslation()(AddFilterController))); \ No newline at end of file +export default inject("storeWorksheets", "storeAppOptions")(observer(withTranslation()(AddFilterController))); \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx index 049fd73da..19d45a651 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddFilter.jsx @@ -5,7 +5,7 @@ import { useTranslation } from 'react-i18next'; const AddSortAndFilter = props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); - const isFilter = props.isFilter; + const [isFilter, setIsFilter] = useState(props.isFilter); const wsLock = props.wsLock; return ( @@ -27,7 +27,11 @@ const AddSortAndFilter = props => { props.onInsertFilter(!isFilter)}/> + onToggleChange={() => { + setIsFilter(!isFilter); + props.onInsertFilter(!isFilter)} + } + /> } From 17ce2ce7f0977d6447112f96cc17a085d390bb48 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 16:32:01 +0300 Subject: [PATCH 38/54] [SSE] Add translation --- apps/spreadsheeteditor/main/app/controller/DataTab.js | 2 +- apps/spreadsheeteditor/main/locale/en.json | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 7a9a17901..745ed7d96 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -632,7 +632,7 @@ define([ warnUpdateExternalData: 'This workbook contains links to one or more external sources that could be unsafe.
If you trust the links, update them to get the latest data.', textUpdate: 'Update', textDontUpdate: 'Don\'t Update', - textAddExternalData: 'Added link to external source. You can update such links in the Data tab.' + textAddExternalData: 'The link to an external source has been added. You can update such links in the Data tab.' }, SSE.Controllers.DataTab || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 1ecb7098f..af35da78e 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -669,6 +669,10 @@ "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
Erase current settings and continue?", "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", + "SSE.Controllers.DataTab.warnUpdateExternalData": "This workbook contains links to one or more external sources that could be unsafe.
If you trust the links, update them to get the latest data.", + "SSE.Controllers.DataTab.textUpdate": "Update", + "SSE.Controllers.DataTab.textDontUpdate": "Don't Update", + "SSE.Controllers.DataTab.textAddExternalData": "The link to an external source has been added. You can update such links in the Data tab.", "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", From 061a5c6a2b642c472ccfca9852605b309dbc68db Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 17:13:40 +0300 Subject: [PATCH 39/54] [SSE] Hide update button when cannot request reference data --- apps/spreadsheeteditor/main/app/controller/DataTab.js | 1 + apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 745ed7d96..94fca66b3 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -487,6 +487,7 @@ define([ this.externalLinksDlg = (new SSE.Views.ExternalLinksDlg({ api: this.api, isUpdating: this.externalData.isUpdating, + canRequestReferenceData: this.toolbar.mode.canRequestReferenceData, handler: function(result) { Common.NotificationCenter.trigger('edit:complete'); } diff --git a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js index 254381bd1..bd5c85296 100644 --- a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js @@ -93,6 +93,7 @@ define([ this.api = options.api; this.handler = options.handler; this.isUpdating = options.isUpdating || false; + this.canRequestReferenceData = options.canRequestReferenceData || false; this.linkStatus = []; this.wrapEvents = { onUpdateExternalReferenceList: _.bind(this.refreshList, this) @@ -122,6 +123,7 @@ define([ cls: 'btn-text-split-default auto', caption: this.textUpdate, split: true, + visible: !!this.canRequestReferenceData, menu : new Common.UI.Menu({ style: 'min-width:100px;', items: [ From 451798e680e1ede4df6be1168e6522b6f771a568 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 15 Dec 2022 18:14:41 +0400 Subject: [PATCH 40/54] [DE PE SSE mobile] Fix Bug 59928 --- apps/common/mobile/lib/controller/SharingSettings.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/controller/SharingSettings.jsx b/apps/common/mobile/lib/controller/SharingSettings.jsx index ce3ae4844..17b340b96 100644 --- a/apps/common/mobile/lib/controller/SharingSettings.jsx +++ b/apps/common/mobile/lib/controller/SharingSettings.jsx @@ -28,7 +28,7 @@ const SharingSettingsController = props => { if (msgData?.needUpdate) { setSharingSettings(msgData.sharingSettings); } - f7.views.current.router.back(); + props.f7router.back(); } } }; From a5f27a927597fad14cc7d5f3aeb7ab2e33be62b9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Dec 2022 18:39:17 +0300 Subject: [PATCH 41/54] Fix Bug 60179 --- apps/documenteditor/main/app/view/ShapeSettings.js | 2 +- apps/presentationeditor/main/app/view/ShapeSettings.js | 2 +- apps/spreadsheeteditor/main/app/view/ShapeSettings.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index 85af8379f..caafdc8db 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -1214,7 +1214,7 @@ define([ this._state.GradColor = color; } - this.chShadow.setDisabled(!!shapeprops.get_FromChart()); + this.chShadow.setDisabled(!!shapeprops.get_FromChart() || this._locked); this.chShadow.setValue(!!shapeprops.asc_getShadow(), true); this._noApply = false; diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index fde3bdb0a..13b6529bb 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -1145,7 +1145,7 @@ define([ this._state.GradColor = color; } - this.chShadow.setDisabled(!!props.get_FromChart()); + this.chShadow.setDisabled(!!props.get_FromChart() || this._locked); this.chShadow.setValue(!!props.asc_getShadow(), true); this._noApply = false; diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js index fe17489b1..5361fab57 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js @@ -1140,7 +1140,7 @@ define([ this._state.GradColor = color; } - this.chShadow.setDisabled(!!shapeprops.get_FromChart()); + this.chShadow.setDisabled(!!shapeprops.get_FromChart() || this._locked); this.chShadow.setValue(!!shapeprops.asc_getShadow(), true); this._noApply = false; From 90dbdd6e219c814c6f3e5f194d67faa21bab10db Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 16 Dec 2022 16:15:22 +0300 Subject: [PATCH 42/54] [DE] Check password length (fix for Safari - paste saved passwords) --- apps/documenteditor/main/app/view/ProtectDialog.js | 8 ++++++-- apps/documenteditor/main/locale/en.json | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/ProtectDialog.js b/apps/documenteditor/main/app/view/ProtectDialog.js index 50481ae81..f314063ac 100644 --- a/apps/documenteditor/main/app/view/ProtectDialog.js +++ b/apps/documenteditor/main/app/view/ProtectDialog.js @@ -114,7 +114,10 @@ define([ maxLength: 15, validateOnBlur: false, repeatInput: this.repeatPwd, - showPwdOnClick: true + showPwdOnClick: true, + validation : function(value) { + return (value.length>15) ? me.txtLimit : true; + } }); this.rbView = new Common.UI.RadioBox({ @@ -230,7 +233,8 @@ define([ textView: 'No changes (Read only)', textForms: 'Filling forms', textReview: 'Tracked changes', - textComments: 'Comments' + textComments: 'Comments', + txtLimit: 'Password is limited to 15 characters' }, DE.Views.ProtectDialog || {})); }); diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 6894860a1..e25ab48d5 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -2644,6 +2644,7 @@ "DE.Views.ProtectDialog.txtRepeat": "Repeat password", "DE.Views.ProtectDialog.txtTitle": "Protect", "DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", + "DE.Views.ProtectDialog.txtLimit": "Password is limited to 15 characters", "DE.Views.RightMenu.txtChartSettings": "Chart settings", "DE.Views.RightMenu.txtFormSettings": "Form Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", From eb898426a9762eeadc77eab76dab74e480367514 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 16 Dec 2022 16:43:05 +0300 Subject: [PATCH 43/54] Update translation --- apps/documenteditor/forms/locale/el.json | 6 +- apps/documenteditor/main/locale/el.json | 74 ++++++ apps/documenteditor/main/locale/en.json | 213 ++++++++------- apps/documenteditor/main/locale/ro.json | 269 ++++++++++--------- apps/documenteditor/main/locale/ru.json | 230 ++++++++-------- apps/presentationeditor/main/locale/en.json | 130 ++++----- apps/presentationeditor/main/locale/hy.json | 83 ++++++ apps/presentationeditor/main/locale/ro.json | 219 ++++++++-------- apps/presentationeditor/main/locale/ru.json | 210 +++++++-------- apps/spreadsheeteditor/main/locale/en.json | 276 ++++++++++---------- apps/spreadsheeteditor/main/locale/ro.json | 227 ++++++++-------- apps/spreadsheeteditor/main/locale/ru.json | 226 ++++++++-------- 12 files changed, 1181 insertions(+), 982 deletions(-) diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index 7b7efc5c0..35c1bf45c 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -73,12 +73,12 @@ "Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση", "Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε το συνθηματικό και ανοίξετε το αρχείο, το τρέχον συνθηματικό αρχείου θα αρχικοποιηθεί.", "Common.Views.OpenDialog.txtTitle": "Διαλέξτε %1 επιλογές", - "Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο Αρχείο", + "Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο αρχείο", "Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση", "Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση", "Common.Views.SelectFileDlg.textLoading": "Γίνεται φόρτωση", - "Common.Views.SelectFileDlg.textTitle": "Επιλογή Πηγής Δεδομένων", - "Common.Views.ShareDialog.textTitle": "Διαμοιρασμός Συνδέσμου", + "Common.Views.SelectFileDlg.textTitle": "Επιλογή πηγής δεδομένων", + "Common.Views.ShareDialog.textTitle": "Διαμοιρασμός συνδέσμου", "Common.Views.ShareDialog.txtCopy": "Αντιγραφή στο πρόχειρο", "Common.Views.ShareDialog.warnCopy": "Σφάλμα φυλλομετρητή! Χρησιμοποιείστε τη συντόμευση [Ctrl]+[C]", "DE.Controllers.ApplicationController.convertationErrorText": "Αποτυχία μετατροπής.", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 1b9992089..f0efab05a 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -123,7 +123,34 @@ "Common.define.chartData.textScatterSmoothMarker": "Διασπορά με ομαλές γραμμές και δείκτες", "Common.define.chartData.textStock": "Μετοχή", "Common.define.chartData.textSurface": "Επιφάνεια", + "Common.define.smartArt.textAccentedPicture": "Εικόνα με Τόνους", + "Common.define.smartArt.textAccentProcess": "Διεργασία Τονισμού", + "Common.define.smartArt.textAlternatingFlow": "Εναλλασσόμενη Ροή", + "Common.define.smartArt.textAlternatingHexagons": "Εναλλασσόμενα Εξάγωνα", + "Common.define.smartArt.textAlternatingPictureBlocks": "Εναλλασσόμενα Μπλοκ Εικόνων", + "Common.define.smartArt.textAlternatingPictureCircles": "Εναλλασσόμενοι Κύκλοι Εικόνων", + "Common.define.smartArt.textArchitectureLayout": "Αρχιτεκτονικό Σχέδιο", + "Common.define.smartArt.textArrowRibbon": "Κορδέλα με Βέλος", + "Common.define.smartArt.textBalance": "Ισορροπία", + "Common.define.smartArt.textBasicBendingProcess": "Βασική Διεργασία Κλίσης", + "Common.define.smartArt.textBasicBlockList": "Βασική Λίστα Μπλοκ", + "Common.define.smartArt.textBasicCycle": "Βασικός Κύκλος", + "Common.define.smartArt.textBasicMatrix": "Βασικός Πίνακας", + "Common.define.smartArt.textBasicPie": "Βασική Πίτα", + "Common.define.smartArt.textBasicProcess": "Βασική Διεργασία", + "Common.define.smartArt.textBasicPyramid": "Βασική Πυραμίδα", + "Common.define.smartArt.textBasicRadial": "Βασικό Ακτινικό ", + "Common.define.smartArt.textBasicTarget": "Βασικός Στόχος", + "Common.define.smartArt.textBasicTimeline": "Βασική Χρονική Ακολουθία", + "Common.define.smartArt.textBasicVenn": "Βασικό Venn", + "Common.define.smartArt.textBendingPictureBlocks": "Κεκλιμένα Μπλοκ Εικόνων", + "Common.define.smartArt.textBendingPictureCaption": "Κεκλιμένη Λεζάντα Εικόνας", + "Common.define.smartArt.textBendingPictureCaptionList": "Κεκλιμένη Λίστα Λεζάντων Εικόνας", + "Common.define.smartArt.textCaptionedPictures": "Εικόνες με Λεζάντα", + "Common.define.smartArt.textConvergingArrows": "Συμβαλλόμενα Βέλη", + "Common.define.smartArt.textDivergingArrows": "Αποκλίνοντα Βέλη", "Common.Translation.textMoreButton": "Περισσότερα", + "Common.Translation.tipFileLocked": "Το έγγραφο είναι κλειδωμένο για επεξεργασία. Μπορείτε να κάνετε αλλαγές και να τις αποθηκεύσετε αργότερα ως τοπικό αντίγραφο.", "Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.", "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", @@ -284,6 +311,7 @@ "Common.Views.DocumentAccessDialog.textLoading": "Φόρτωση ...", "Common.Views.DocumentAccessDialog.textTitle": "Ρυθμίσεις Διαμοιρασμού", "Common.Views.ExternalDiagramEditor.textTitle": "Συντάκτης Γραφήματος", + "Common.Views.ExternalEditor.textClose": "Κλείσιμο", "Common.Views.ExternalMergeEditor.textTitle": "Παραλήπτες Συγχωνευμένης Αλληλογραφίας", "Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:", "Common.Views.Header.textAddFavorite": "Σημείωση ως αγαπημένο", @@ -349,6 +377,7 @@ "Common.Views.Plugins.textStart": "Εκκίνηση", "Common.Views.Plugins.textStop": "Διακοπή", "Common.Views.Protection.hintAddPwd": "Κρυπτογράφηση με συνθηματικό", + "Common.Views.Protection.hintDelPwd": "Διαγραφή συνθηματικού", "Common.Views.Protection.hintPwd": "Αλλαγή ή διαγραφή συνθηματικού", "Common.Views.Protection.hintSignature": "Προσθήκη ψηφιακής υπογραφής ή γραμμής υπογραφής", "Common.Views.Protection.txtAddPwd": "Προσθήκη συνθηματικού", @@ -460,6 +489,7 @@ "Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση", "Common.Views.SearchPanel.textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων", "Common.Views.SearchPanel.textCloseSearch": "Κλείσιμο αναζήτησης", + "Common.Views.SearchPanel.textContentChanged": "Το έγγραφο τροποποιήθηκε.", "Common.Views.SearchPanel.textFind": "Εύρεση", "Common.Views.SearchPanel.textFindAndReplace": "Εύρεση και Αντικατάσταση", "Common.Views.SearchPanel.textMatchUsingRegExp": "Ταίριασμα χρησιμοποιώντας κανονικές εκφράσεις (regexp)", @@ -468,6 +498,7 @@ "Common.Views.SearchPanel.textReplace": "Αντικατάσταση", "Common.Views.SearchPanel.textReplaceAll": "Αντικατάσταση Όλων", "Common.Views.SearchPanel.textReplaceWith": "Αντικατάσταση με", + "Common.Views.SearchPanel.textSearchAgain": "{0}Διενέργεια νέας αναζήτησης{1} για ακριβή αποτελέσματα.", "Common.Views.SearchPanel.textSearchResults": "Αποτελέσματα αναζήτησης: {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Υπάρχουν πάρα πολλά αποτελέσματα για εμφάνιση εδώ", "Common.Views.SearchPanel.textWholeWords": "Ολόκληρες λέξεις μόνο", @@ -491,6 +522,7 @@ "Common.Views.SignDialog.tipFontName": "Όνομα Γραμματοσειράς", "Common.Views.SignDialog.tipFontSize": "Μέγεθος Γραμματοσειράς", "Common.Views.SignSettingsDialog.textAllowComment": "Να επιτρέπεται στον υπογράφοντα να προσθέτει σχόλιο στο διάλογο υπογραφής", + "Common.Views.SignSettingsDialog.textDefInstruction": "Πριν υπογράψετε το έγγραφο, βεβαιωθείτε για την ορθότητα των περιεχομένων.", "Common.Views.SignSettingsDialog.textInfoEmail": "Ηλεκτρονική Διεύθυνση", "Common.Views.SignSettingsDialog.textInfoName": "Όνομα", "Common.Views.SignSettingsDialog.textInfoTitle": "Τίτλος Υπογράφοντος", @@ -570,6 +602,11 @@ "DE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "DE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων για λεπτομέρειες.", "DE.Controllers.Main.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "DE.Controllers.Main.errorInconsistentExt": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου δεν αντιστοιχούν στην κατάληξή του ονόματός του.", + "DE.Controllers.Main.errorInconsistentExtDocx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε αρχεία κειμένου (π.χ. docx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", + "DE.Controllers.Main.errorInconsistentExtPdf": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε μια από τις ακόλουθες μορφές: pdf/djvu/xps/oxps, αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", + "DE.Controllers.Main.errorInconsistentExtPptx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε παρουσιάσεις (π.χ. pptx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", + "DE.Controllers.Main.errorInconsistentExtXlsx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε υπολογιστικά φύλλα (π.χ. xlsx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", "DE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", "DE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", "DE.Controllers.Main.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", @@ -631,6 +668,7 @@ "DE.Controllers.Main.textClose": "Κλείσιμο", "DE.Controllers.Main.textCloseTip": "Κάντε κλικ για να κλείσει η υπόδειξη", "DE.Controllers.Main.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", + "DE.Controllers.Main.textContinue": "Συνέχεια", "DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.
Να μετατραπεί τώρα;", "DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.
Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", "DE.Controllers.Main.textDisconnect": "Η σύνδεση χάθηκε", @@ -921,6 +959,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", "DE.Controllers.Navigation.txtBeginning": "Έναρξη εγγράφου", "DE.Controllers.Navigation.txtGotoBeginning": "Μετάβαση στην αρχή του εγγράφου", + "DE.Controllers.Print.txtCustom": "Προσαρμοσμένο", "DE.Controllers.Search.notcriticalErrorTitle": "Προειδοποίηση", "DE.Controllers.Search.warnReplaceString": "{0} δεν είναι ένας έγκυρος ειδικός χαρακτήρας για το πλαίσιο Αντικατάσταση με.", "DE.Controllers.Statusbar.textDisconnect": "Η σύνδεση χάθηκε
Απόπειρα επανασύνδεσης. Παρακαλούμε, ελέγξτε τις ρυθμίσεις σύνδεσης.", @@ -1317,8 +1356,13 @@ "DE.Views.CellsAddDialog.textRow": "Γραμμές", "DE.Views.CellsAddDialog.textTitle": "Εισαγωγή Πολλών", "DE.Views.CellsAddDialog.textUp": "Πάνω από τον δρομέα", + "DE.Views.ChartSettings.text3dDepth": "Βάθος (% της βάσης)", + "DE.Views.ChartSettings.text3dRotation": "Περιστροφή 3Δ", "DE.Views.ChartSettings.textAdvanced": "Εμφάνιση προηγμένων ρυθμίσεων", + "DE.Views.ChartSettings.textAutoscale": "Αυτόματη κλιμάκωση", "DE.Views.ChartSettings.textChartType": "Αλλαγή Τύπου Γραφήματος", + "DE.Views.ChartSettings.textDefault": "Προεπιλεγμένη Περιστροφή", + "DE.Views.ChartSettings.textDown": "Κάτω", "DE.Views.ChartSettings.textEditData": "Επεξεργασία Δεδομένων", "DE.Views.ChartSettings.textHeight": "Ύψος", "DE.Views.ChartSettings.textOriginalSize": "Πραγματικό Μέγεθος", @@ -1416,6 +1460,11 @@ "DE.Views.DateTimeDialog.textLang": "Γλώσσα", "DE.Views.DateTimeDialog.textUpdate": "Αυτόματη ενημέρωση", "DE.Views.DateTimeDialog.txtTitle": "Ημερομηνία & Ώρα", + "DE.Views.DocProtection.txtDocProtectedComment": "Το έγγραφο προστατεύεται.
Μπορείτε μόνο να εισάγετε σχόλια στο έγγραφο.", + "DE.Views.DocProtection.txtDocProtectedForms": "Το έγγραφο προστατεύεται.
Μπορείτε μόνο να συμπληρώσετε φόρμες μέσα στο έγγραφο.", + "DE.Views.DocProtection.txtDocProtectedTrack": "Το έγγραφο προστατεύεται.
Μπορείτε να επεξεργαστείτε το έγγραφο, αλλά όλες οι αλλαγές θα καταγραφούν.", + "DE.Views.DocProtection.txtDocProtectedView": "Το έγγραφο προστατεύεται.
Μπορείτε μόνο να δείτε το έγγραφο.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Εισάγετε συνθηματικό για αναίρεση της προστασίας εγγράφου", "DE.Views.DocumentHolder.aboveText": "Πάνω από", "DE.Views.DocumentHolder.addCommentText": "Προσθήκη Σχολίου", "DE.Views.DocumentHolder.advancedDropCapText": "Ρυθμίσεις Αρχιγράμματος", @@ -1424,6 +1473,8 @@ "DE.Views.DocumentHolder.advancedTableText": "Προηγμένες Ρυθμίσεις Πίνακα", "DE.Views.DocumentHolder.advancedText": "Προηγμένες Ρυθμίσεις", "DE.Views.DocumentHolder.alignmentText": "Στοίχιση", + "DE.Views.DocumentHolder.allLinearText": "Όλα - Γραμμικό", + "DE.Views.DocumentHolder.allProfText": "Όλα - Επαγγελματικό", "DE.Views.DocumentHolder.belowText": "Παρακάτω", "DE.Views.DocumentHolder.breakBeforeText": "Αλλαγή σελίδας πριν", "DE.Views.DocumentHolder.bulletsText": "Κουκκίδες και Αρίθμηση", @@ -1432,6 +1483,8 @@ "DE.Views.DocumentHolder.centerText": "Κέντρο", "DE.Views.DocumentHolder.chartText": "Προηγμένες Ρυθμίσεις Γραφήματος", "DE.Views.DocumentHolder.columnText": "Στήλη", + "DE.Views.DocumentHolder.currLinearText": "Τρέχον - Γραμμικό", + "DE.Views.DocumentHolder.currProfText": "Τρέχον - Επαγγελματικό", "DE.Views.DocumentHolder.deleteColumnText": "Διαγραφή Στήλης", "DE.Views.DocumentHolder.deleteRowText": "Διαγραφή Γραμμής", "DE.Views.DocumentHolder.deleteTableText": "Διαγραφή Πίνακα", @@ -1444,6 +1497,7 @@ "DE.Views.DocumentHolder.editFooterText": "Επεξεργασία Υποσέλιδου", "DE.Views.DocumentHolder.editHeaderText": "Επεξεργασία Κεφαλίδας", "DE.Views.DocumentHolder.editHyperlinkText": "Επεξεργασία Υπερσυνδέσμου", + "DE.Views.DocumentHolder.eqToInlineText": "Αλλαγή σε Εντός Κειμένου", "DE.Views.DocumentHolder.guestText": "Επισκέπτης", "DE.Views.DocumentHolder.hyperlinkText": "Υπερσύνδεσμος", "DE.Views.DocumentHolder.ignoreAllSpellText": "Αγνόηση Όλων", @@ -1827,12 +1881,15 @@ "DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος", "DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων", "DE.Views.FormSettings.textCombobox": "Πολλαπλές Επιλογές", + "DE.Views.FormSettings.textComplex": "Σύνθετο Πεδίο", "DE.Views.FormSettings.textConnected": "Συνδεδεμένα πεδία", "DE.Views.FormSettings.textDelete": "Διαγραφή", + "DE.Views.FormSettings.textDigits": "Ψηφία", "DE.Views.FormSettings.textDisconnect": "Αποσύνδεση", "DE.Views.FormSettings.textDropDown": "Πτυσσόμενη Λίστα", "DE.Views.FormSettings.textField": "Πεδίο Κειμένου", "DE.Views.FormSettings.textFixed": "Πεδίο σταθερού μεγέθους", + "DE.Views.FormSettings.textFormatSymbols": "Επιτρεπτά Σύμβολα", "DE.Views.FormSettings.textFromFile": "Από Αρχείο", "DE.Views.FormSettings.textFromStorage": "Από Αποθηκευτικό Χώρο", "DE.Views.FormSettings.textFromUrl": "Από διεύθυνση URL", @@ -1840,6 +1897,7 @@ "DE.Views.FormSettings.textImage": "Εικόνα", "DE.Views.FormSettings.textKey": "Κλειδί", "DE.Views.FormSettings.textLock": "Κλείδωμα", + "DE.Views.FormSettings.textMask": "Τυχαία Μάσκα", "DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων", "DE.Views.FormSettings.textMulti": "Πεδίο πολλών γραμμών", "DE.Views.FormSettings.textNever": "Ποτέ", @@ -1862,8 +1920,10 @@ "DE.Views.FormSettings.textWidth": "Πλάτος κελιού", "DE.Views.FormsTab.capBtnCheckBox": "Πλαίσιο επιλογής", "DE.Views.FormsTab.capBtnComboBox": "Πολλαπλές Επιλογές", + "DE.Views.FormsTab.capBtnComplex": "Σύνθετο Πεδίο", "DE.Views.FormsTab.capBtnDownloadForm": "Λήψη ως oform", "DE.Views.FormsTab.capBtnDropDown": "Πτυσσόμενη Λίστα", + "DE.Views.FormsTab.capBtnEmail": "Διεύθυνση email", "DE.Views.FormsTab.capBtnImage": "Εικόνα", "DE.Views.FormsTab.capBtnNext": "Επόμενο Πεδίο", "DE.Views.FormsTab.capBtnPrev": "Προηγούμενο Πεδίο", @@ -2329,6 +2389,14 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Ορισμός μόνο του πάνω περιγράμματος", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Αυτόματα", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Χωρίς περιγράμματα", + "DE.Views.PrintWithPreview.txtAllPages": "Όλες οι σελίδες", + "DE.Views.PrintWithPreview.txtBottom": "Κάτω Μέρος", + "DE.Views.PrintWithPreview.txtCurrentPage": "Τρέχουσα σελίδα", + "DE.Views.PrintWithPreview.txtCustom": "Προσαρμοσμένο", + "DE.Views.PrintWithPreview.txtCustomPages": "Προσαρμοσμένη εκτύπωση", + "DE.Views.ProtectDialog.textComments": "Σχόλια", + "DE.Views.ProtectDialog.txtAllow": "Να επιτρέπεται μόνο τέτοια επεξεργασία στο έγγραφο", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Το συνθηματικό επιβεβαίωσης δεν είναι πανομοιότυπο", "DE.Views.RightMenu.txtChartSettings": "Ρυθμίσεις γραφήματος", "DE.Views.RightMenu.txtFormSettings": "Ρυθμίσεις Φόρμας", "DE.Views.RightMenu.txtHeaderFooterSettings": "Ρυθμίσεις κεφαλίδας και υποσέλιδου", @@ -2519,8 +2587,12 @@ "DE.Views.TableSettings.tipOuter": "Ορισμός μόνο του εξωτερικού περιγράμματος", "DE.Views.TableSettings.tipRight": "Ορισμός μόνο του εξωτερικού δεξιού περιγράμματος", "DE.Views.TableSettings.tipTop": "Ορισμός μόνο του εξωτερικού πάνω περιγράμματος", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Πίνακες με Περιθώρια & Γραμμές", + "DE.Views.TableSettings.txtGroupTable_Custom": "Προσαρμοσμένο", "DE.Views.TableSettings.txtNoBorders": "Χωρίς περιγράμματα", "DE.Views.TableSettings.txtTable_Accent": "Τόνος", + "DE.Views.TableSettings.txtTable_Bordered": "Με Περιθώρια", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Με Περιθώρια & Γραμμές", "DE.Views.TableSettings.txtTable_Colorful": "Πολύχρωμο", "DE.Views.TableSettings.txtTable_Dark": "Σκούρο", "DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος", @@ -2788,6 +2860,7 @@ "DE.Views.Toolbar.tipControls": "Εισαγωγή στοιχείων ελέγχου περιεχομένου", "DE.Views.Toolbar.tipCopy": "Αντιγραφή", "DE.Views.Toolbar.tipCopyStyle": "Αντιγραφή τεχνοτροπίας", + "DE.Views.Toolbar.tipCut": "Αποκοπή", "DE.Views.Toolbar.tipDateTime": "Εισαγωγή τρέχουσας ημερομηνίας και ώρας", "DE.Views.Toolbar.tipDecFont": "Μείωση μεγέθους γραμματοσειράς", "DE.Views.Toolbar.tipDecPrLeft": "Μείωση εσοχής", @@ -2882,6 +2955,7 @@ "DE.Views.ViewTab.textRulers": "Χάρακες", "DE.Views.ViewTab.textStatusBar": "Γραμμή Κατάστασης", "DE.Views.ViewTab.textZoom": "Εστίαση", + "DE.Views.ViewTab.tipDarkDocument": "Σκούρο έγγραφο", "DE.Views.WatermarkSettingsDialog.textAuto": "Αυτόματα", "DE.Views.WatermarkSettingsDialog.textBold": "Έντονα", "DE.Views.WatermarkSettingsDialog.textColor": "Χρώμα κειμένου", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index e25ab48d5..aa5a995df 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -291,7 +291,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Create a copy", "Common.Translation.warnFileLockedBtnView": "Open for viewing", "Common.UI.ButtonColored.textAutoColor": "Automatic", - "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", + "Common.UI.ButtonColored.textNewColor": "Add new custom color", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "August", "Common.UI.Calendar.textDecember": "December", @@ -353,9 +353,9 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace all", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", - "Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors", - "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", - "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", + "Common.UI.ThemeColorPalette.textRecentColors": "Recent colors", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme colors", "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeContrastDark": "Contrast Dark", "Common.UI.Themes.txtThemeDark": "Dark", @@ -565,15 +565,15 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", - "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", - "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remove all comments", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove current comments", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remove my comments", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", "Common.Views.ReviewChanges.txtCommentRemove": "Remove", "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", "Common.Views.ReviewChanges.txtCompare": "Compare", "Common.Views.ReviewChanges.txtDocLang": "Language", @@ -704,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Document is protected. You may only insert comments to this document.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Document is protected. You may only fill in forms in this document.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Document is protected. You may edit this document, but all changes will be tracked.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Document is protected. You may only view this document.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", @@ -844,7 +853,7 @@ "DE.Controllers.Main.titleUpdateVersion": "Version changed", "DE.Controllers.Main.txtAbove": "above", "DE.Controllers.Main.txtArt": "Your text here", - "DE.Controllers.Main.txtBasicShapes": "Basic Shapes", + "DE.Controllers.Main.txtBasicShapes": "Basic shapes", "DE.Controllers.Main.txtBelow": "below", "DE.Controllers.Main.txtBookmarkError": "Error! Bookmark not defined.", "DE.Controllers.Main.txtButtons": "Buttons", @@ -859,7 +868,7 @@ "DE.Controllers.Main.txtEnterDate": "Enter a date", "DE.Controllers.Main.txtErrorLoadHistory": "History loading failed", "DE.Controllers.Main.txtEvenPage": "Even Page", - "DE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "DE.Controllers.Main.txtFiguredArrows": "Figured arrows", "DE.Controllers.Main.txtFirstPage": "First Page", "DE.Controllers.Main.txtFooter": "Footer", "DE.Controllers.Main.txtFormulaNotInTable": "The Formula Not In Table", @@ -1057,8 +1066,8 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", "DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "DE.Controllers.Main.txtStyle_Caption": "Caption", - "DE.Controllers.Main.txtStyle_endnote_text": "Endnote Text", - "DE.Controllers.Main.txtStyle_footnote_text": "Footnote Text", + "DE.Controllers.Main.txtStyle_endnote_text": "Endnote text", + "DE.Controllers.Main.txtStyle_footnote_text": "Footnote text", "DE.Controllers.Main.txtStyle_Heading_1": "Heading 1", "DE.Controllers.Main.txtStyle_Heading_2": "Heading 2", "DE.Controllers.Main.txtStyle_Heading_3": "Heading 3", @@ -1138,7 +1147,7 @@ "DE.Controllers.Toolbar.textInsert": "Insert", "DE.Controllers.Toolbar.textIntegral": "Integrals", "DE.Controllers.Toolbar.textLargeOperator": "Large Operators", - "DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "DE.Controllers.Toolbar.textLimitAndLog": "Limits and Logarithms", "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operators", "DE.Controllers.Toolbar.textRadical": "Radicals", @@ -1175,12 +1184,12 @@ "DE.Controllers.Toolbar.txtAccent_Smile": "Breve", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "DE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separators", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separator", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", "DE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separators", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separator", "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", @@ -1200,15 +1209,15 @@ "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", "DE.Controllers.Toolbar.txtBracket_Round": "Parentheses", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separators", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separator", "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", "DE.Controllers.Toolbar.txtBracket_Square": "Square brackets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Right square brackets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Right and left square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder between two right square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted square brackets", "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Left square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder between two left square brackets", "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", @@ -1272,26 +1281,26 @@ "DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge with lower limit", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge with limits", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge with subscript lower limit", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge with subscript/superscript limits", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation over k of n choose k", "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation example using two indices", "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee with lower limit", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee with limits", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee with subscript lower limit", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee with subscript/superscript limits", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", @@ -1326,10 +1335,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2 by 2 matrix in double vertical bars", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2 by 2 determinant", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty 2 by 2 matrix in parentheses", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty 2 by 2 matrix in brackets", "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", @@ -1338,12 +1347,12 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix in parentheses", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix in brackets", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix with zeros", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 identity matrix with blank off-diagonal cells", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix with zeros", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix with blank off-diagonal cells", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", @@ -1355,8 +1364,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", "DE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left double arrow below", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left double arrow above", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", @@ -1365,7 +1374,7 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of Quadratic Formula", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of quadratic formula", "DE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", @@ -1634,20 +1643,6 @@ "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document", "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", - "del_DE.Views.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", - "del_DE.Views.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", - "del_DE.Views.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", - "del_DE.Views.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", - "del_DE.Views.DocProtection.txtWasUnprotected": "Document has been unprotected.", - "DE.Controllers.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", - "DE.Controllers.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", - "DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", - "DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", - "DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.", - "DE.Controllers.DocProtection.txtIsProtectedView": "Document is protected. You may only view this document.", - "DE.Controllers.DocProtection.txtIsProtectedTrack": "Document is protected. You may edit this document, but all changes will be tracked.", - "DE.Controllers.DocProtection.txtIsProtectedComment": "Document is protected. You may only insert comments to this document.", - "DE.Controllers.DocProtection.txtIsProtectedForms": "Document is protected. You may only fill in forms in this document.", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", @@ -1678,8 +1673,8 @@ "DE.Views.DocumentHolder.directHText": "Horizontal", "DE.Views.DocumentHolder.directionText": "Text direction", "DE.Views.DocumentHolder.editChartText": "Edit data", - "DE.Views.DocumentHolder.editFooterText": "Edit Footer", - "DE.Views.DocumentHolder.editHeaderText": "Edit Header", + "DE.Views.DocumentHolder.editFooterText": "Edit footer", + "DE.Views.DocumentHolder.editHeaderText": "Edit header", "DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "DE.Views.DocumentHolder.eqToInlineText": "Change to Inline", "DE.Views.DocumentHolder.guestText": "Guest", @@ -1744,7 +1739,7 @@ "DE.Views.DocumentHolder.textDistributeRows": "Distribute rows", "DE.Views.DocumentHolder.textEditControls": "Content control settings", "DE.Views.DocumentHolder.textEditPoints": "Edit Points", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit wrap boundary", "DE.Views.DocumentHolder.textFlipH": "Flip Horizontally", "DE.Views.DocumentHolder.textFlipV": "Flip Vertically", "DE.Views.DocumentHolder.textFollow": "Follow move", @@ -2332,21 +2327,21 @@ "DE.Views.Links.capBtnTOF": "Table of Figures", "DE.Views.Links.confirmDeleteFootnotes": "Do you want to delete all footnotes?", "DE.Views.Links.confirmReplaceTOF": "Do you want to replace the selected table of figures?", - "DE.Views.Links.mniConvertNote": "Convert All Notes", - "DE.Views.Links.mniDelFootnote": "Delete All Notes", - "DE.Views.Links.mniInsEndnote": "Insert Endnote", - "DE.Views.Links.mniInsFootnote": "Insert Footnote", - "DE.Views.Links.mniNoteSettings": "Notes Settings", + "DE.Views.Links.mniConvertNote": "Convert all notes", + "DE.Views.Links.mniDelFootnote": "Delete all notes", + "DE.Views.Links.mniInsEndnote": "Insert endnote", + "DE.Views.Links.mniInsFootnote": "Insert footnote", + "DE.Views.Links.mniNoteSettings": "Notes settings", "DE.Views.Links.textContentsRemove": "Remove table of contents", "DE.Views.Links.textContentsSettings": "Settings", "DE.Views.Links.textConvertToEndnotes": "Convert All Footnotes to Endnotes", "DE.Views.Links.textConvertToFootnotes": "Convert All Endnotes to Footnotes", - "DE.Views.Links.textGotoEndnote": "Go to Endnotes", - "DE.Views.Links.textGotoFootnote": "Go to Footnotes", + "DE.Views.Links.textGotoEndnote": "Go to endnotes", + "DE.Views.Links.textGotoFootnote": "Go to footnotes", "DE.Views.Links.textSwapNotes": "Swap Footnotes and Endnotes", "DE.Views.Links.textUpdateAll": "Update entire table", "DE.Views.Links.textUpdatePages": "Update page numbers only", - "DE.Views.Links.tipAddText": "Include heading in the Table of Contents", + "DE.Views.Links.tipAddText": "Include heading in the table of contents", "DE.Views.Links.tipBookmarks": "Create a bookmark", "DE.Views.Links.tipCaption": "Insert caption", "DE.Views.Links.tipContents": "Insert table of contents", @@ -2357,7 +2352,7 @@ "DE.Views.Links.tipTableFigures": "Insert table of figures", "DE.Views.Links.tipTableFiguresUpdate": "Update table of figures", "DE.Views.Links.titleUpdateTOF": "Update Table of Figures", - "DE.Views.Links.txtDontShowTof": "Do Not Show in Table of Contents", + "DE.Views.Links.txtDontShowTof": "Do not show in table of contents", "DE.Views.Links.txtLevel": "Level", "DE.Views.ListSettingsDialog.textAuto": "Automatic", "DE.Views.ListSettingsDialog.textCenter": "Center", @@ -2638,13 +2633,13 @@ "DE.Views.ProtectDialog.textView": "No changes (Read only)", "DE.Views.ProtectDialog.txtAllow": "Allow only this type of editing in the document", "DE.Views.ProtectDialog.txtIncorrectPwd": "Confirmation password is not identical", + "DE.Views.ProtectDialog.txtLimit": "Password is limited to 15 characters", "DE.Views.ProtectDialog.txtOptional": "optional", "DE.Views.ProtectDialog.txtPassword": "Password", "DE.Views.ProtectDialog.txtProtect": "Protect", "DE.Views.ProtectDialog.txtRepeat": "Repeat password", "DE.Views.ProtectDialog.txtTitle": "Protect", "DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", - "DE.Views.ProtectDialog.txtLimit": "Password is limited to 15 characters", "DE.Views.RightMenu.txtChartSettings": "Chart settings", "DE.Views.RightMenu.txtFormSettings": "Form Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", @@ -2688,7 +2683,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Pattern", "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radial", - "DE.Views.ShapeSettings.textRecentlyUsed": "Recently Used", + "DE.Views.ShapeSettings.textRecentlyUsed": "Recently used", "DE.Views.ShapeSettings.textRotate90": "Rotate 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Select Picture", @@ -3005,37 +3000,37 @@ "DE.Views.Toolbar.capImgGroup": "Group", "DE.Views.Toolbar.capImgWrapping": "Wrapping", "DE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word", - "DE.Views.Toolbar.mniCustomTable": "Insert Custom Table", - "DE.Views.Toolbar.mniDrawTable": "Draw Table", + "DE.Views.Toolbar.mniCustomTable": "Insert custom table", + "DE.Views.Toolbar.mniDrawTable": "Draw table", "DE.Views.Toolbar.mniEditControls": "Control Settings", "DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings", - "DE.Views.Toolbar.mniEditFooter": "Edit Footer", - "DE.Views.Toolbar.mniEditHeader": "Edit Header", - "DE.Views.Toolbar.mniEraseTable": "Erase Table", + "DE.Views.Toolbar.mniEditFooter": "Edit footer", + "DE.Views.Toolbar.mniEditHeader": "Edit header", + "DE.Views.Toolbar.mniEraseTable": "Erase table", "DE.Views.Toolbar.mniFromFile": "From File", "DE.Views.Toolbar.mniFromStorage": "From Storage", "DE.Views.Toolbar.mniFromUrl": "From URL", - "DE.Views.Toolbar.mniHiddenBorders": "Hidden Table Borders", - "DE.Views.Toolbar.mniHiddenChars": "Nonprinting Characters", - "DE.Views.Toolbar.mniHighlightControls": "Highlight Settings", + "DE.Views.Toolbar.mniHiddenBorders": "Hidden table borders", + "DE.Views.Toolbar.mniHiddenChars": "Nonprinting characters", + "DE.Views.Toolbar.mniHighlightControls": "Highlight settings", "DE.Views.Toolbar.mniImageFromFile": "Image from File", "DE.Views.Toolbar.mniImageFromStorage": "Image from Storage", "DE.Views.Toolbar.mniImageFromUrl": "Image from URL", "DE.Views.Toolbar.mniInsertSSE": "Insert Spreadsheet", "DE.Views.Toolbar.mniLowerCase": "lowercase", - "DE.Views.Toolbar.mniRemoveFooter": "Remove Footer", - "DE.Views.Toolbar.mniRemoveHeader": "Remove Header", + "DE.Views.Toolbar.mniRemoveFooter": "Remove footer", + "DE.Views.Toolbar.mniRemoveHeader": "Remove header", "DE.Views.Toolbar.mniSentenceCase": "Sentence case.", - "DE.Views.Toolbar.mniTextToTable": "Convert Text to Table", + "DE.Views.Toolbar.mniTextToTable": "Convert text to table", "DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", "DE.Views.Toolbar.mniUpperCase": "UPPERCASE", - "DE.Views.Toolbar.strMenuNoFill": "No Fill", + "DE.Views.Toolbar.strMenuNoFill": "No fill", "DE.Views.Toolbar.textAutoColor": "Automatic", "DE.Views.Toolbar.textBold": "Bold", "DE.Views.Toolbar.textBottom": "Bottom: ", "DE.Views.Toolbar.textChangeLevel": "Change List Level", "DE.Views.Toolbar.textCheckboxControl": "Check box", - "DE.Views.Toolbar.textColumnsCustom": "Custom Columns", + "DE.Views.Toolbar.textColumnsCustom": "Custom columns", "DE.Views.Toolbar.textColumnsLeft": "Left", "DE.Views.Toolbar.textColumnsOne": "One", "DE.Views.Toolbar.textColumnsRight": "Right", @@ -3043,18 +3038,18 @@ "DE.Views.Toolbar.textColumnsTwo": "Two", "DE.Views.Toolbar.textComboboxControl": "Combo box", "DE.Views.Toolbar.textContinuous": "Continuous", - "DE.Views.Toolbar.textContPage": "Continuous Page", - "DE.Views.Toolbar.textCustomLineNumbers": "Line Numbering Options", + "DE.Views.Toolbar.textContPage": "Continuous page", + "DE.Views.Toolbar.textCustomLineNumbers": "Line numbering options", "DE.Views.Toolbar.textDateControl": "Date", "DE.Views.Toolbar.textDropdownControl": "Drop-down list", - "DE.Views.Toolbar.textEditWatermark": "Custom Watermark", - "DE.Views.Toolbar.textEvenPage": "Even Page", + "DE.Views.Toolbar.textEditWatermark": "Custom watermark", + "DE.Views.Toolbar.textEvenPage": "Even page", "DE.Views.Toolbar.textInMargin": "In Margin", - "DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break", + "DE.Views.Toolbar.textInsColumnBreak": "Insert column break", "DE.Views.Toolbar.textInsertPageCount": "Insert number of pages", - "DE.Views.Toolbar.textInsertPageNumber": "Insert page number", - "DE.Views.Toolbar.textInsPageBreak": "Insert Page Break", - "DE.Views.Toolbar.textInsSectionBreak": "Insert Section Break", + "DE.Views.Toolbar.textInsertPageNumber": "Insert Page Number", + "DE.Views.Toolbar.textInsPageBreak": "Insert page break", + "DE.Views.Toolbar.textInsSectionBreak": "Insert section break", "DE.Views.Toolbar.textInText": "In Text", "DE.Views.Toolbar.textItalic": "Italic", "DE.Views.Toolbar.textLandscape": "Landscape", @@ -3067,19 +3062,19 @@ "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Wide", "DE.Views.Toolbar.textNewColor": "Add New Custom Color", - "DE.Views.Toolbar.textNextPage": "Next Page", + "DE.Views.Toolbar.textNextPage": "Next page", "DE.Views.Toolbar.textNoHighlight": "No highlighting", "DE.Views.Toolbar.textNone": "None", - "DE.Views.Toolbar.textOddPage": "Odd Page", - "DE.Views.Toolbar.textPageMarginsCustom": "Custom Margins", - "DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size", + "DE.Views.Toolbar.textOddPage": "Odd page", + "DE.Views.Toolbar.textPageMarginsCustom": "Custom margins", + "DE.Views.Toolbar.textPageSizeCustom": "Custom page size", "DE.Views.Toolbar.textPictureControl": "Picture", "DE.Views.Toolbar.textPlainControl": "Plain text", "DE.Views.Toolbar.textPortrait": "Portrait", "DE.Views.Toolbar.textRemoveControl": "Remove Content Control", - "DE.Views.Toolbar.textRemWatermark": "Remove Watermark", - "DE.Views.Toolbar.textRestartEachPage": "Restart Each Page", - "DE.Views.Toolbar.textRestartEachSection": "Restart Each Section", + "DE.Views.Toolbar.textRemWatermark": "Remove watermark", + "DE.Views.Toolbar.textRestartEachPage": "Restart each page", + "DE.Views.Toolbar.textRestartEachSection": "Restart each section", "DE.Views.Toolbar.textRichControl": "Rich text", "DE.Views.Toolbar.textRight": "Right: ", "DE.Views.Toolbar.textStrikeout": "Strikethrough", @@ -3091,7 +3086,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Subscript", "DE.Views.Toolbar.textSuperscript": "Superscript", - "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for Current Paragraph", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for current paragraph", "DE.Views.Toolbar.textTabCollaboration": "Collaboration", "DE.Views.Toolbar.textTabFile": "File", "DE.Views.Toolbar.textTabHome": "Home", @@ -3138,7 +3133,7 @@ "DE.Views.Toolbar.tipInsertEquation": "Insert equation", "DE.Views.Toolbar.tipInsertHorizontalText": "Insert horizontal text box", "DE.Views.Toolbar.tipInsertImage": "Insert image", - "DE.Views.Toolbar.tipInsertNum": "Insert Page Number", + "DE.Views.Toolbar.tipInsertNum": "Insert page number", "DE.Views.Toolbar.tipInsertShape": "Insert autoshape", "DE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Insert symbol", @@ -3171,7 +3166,7 @@ "DE.Views.Toolbar.tipPageMargins": "Page margins", "DE.Views.Toolbar.tipPageOrient": "Page orientation", "DE.Views.Toolbar.tipPageSize": "Page size", - "DE.Views.Toolbar.tipParagraphStyle": "Paragraph Style", + "DE.Views.Toolbar.tipParagraphStyle": "Paragraph style", "DE.Views.Toolbar.tipPaste": "Paste", "DE.Views.Toolbar.tipPrColor": "Shading", "DE.Views.Toolbar.tipPrint": "Print", @@ -3186,11 +3181,11 @@ "DE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", "DE.Views.Toolbar.tipUndo": "Undo", "DE.Views.Toolbar.tipWatermark": "Edit watermark", - "DE.Views.Toolbar.txtDistribHor": "Distribute Horizontally", - "DE.Views.Toolbar.txtDistribVert": "Distribute Vertically", - "DE.Views.Toolbar.txtMarginAlign": "Align to Margin", + "DE.Views.Toolbar.txtDistribHor": "Distribute horizontally", + "DE.Views.Toolbar.txtDistribVert": "Distribute vertically", + "DE.Views.Toolbar.txtMarginAlign": "Align to margin", "DE.Views.Toolbar.txtObjectsAlign": "Align Selected Objects", - "DE.Views.Toolbar.txtPageAlign": "Align to Page", + "DE.Views.Toolbar.txtPageAlign": "Align to page", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Median", "DE.Views.Toolbar.txtScheme11": "Metro", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index bb76d0114..11929d2cb 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -291,7 +291,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", + "Common.UI.ButtonColored.textNewColor": "Adăugați o culoare nouă particularizată", "Common.UI.Calendar.textApril": "Aprilie", "Common.UI.Calendar.textAugust": "August", "Common.UI.Calendar.textDecember": "Decembrie", @@ -547,9 +547,9 @@ "Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptați această modificare", "Common.Views.ReviewChanges.tipCoAuthMode": "Activare modul de colaborare", "Common.Views.ReviewChanges.tipCommentRem": "Ștergere comentarii", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Se șterg aceste comentarii", - "Common.Views.ReviewChanges.tipCommentResolve": "Soluționare comentarii", - "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Soluționarea comentariilor curente", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Ștergere comentarii existente", + "Common.Views.ReviewChanges.tipCommentResolve": "Rezolvare comentarii", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Rezolvare comentarii curente", "Common.Views.ReviewChanges.tipCompare": "Comparați acest document cu altul", "Common.Views.ReviewChanges.tipHistory": "Afișare istoricul versiunei", "Common.Views.ReviewChanges.tipRejectCurrent": "Respinge modificare", @@ -565,16 +565,16 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Închidere", "Common.Views.ReviewChanges.txtCoAuthMode": "Modul de editare colaborativă", - "Common.Views.ReviewChanges.txtCommentRemAll": "Ștergere comentariu", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Se șterg aceste comentarii", - "Common.Views.ReviewChanges.txtCommentRemMy": "Se șterg comentariile mele", + "Common.Views.ReviewChanges.txtCommentRemAll": "Șterge toate comentariile ", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Ștergere comentarii existente", + "Common.Views.ReviewChanges.txtCommentRemMy": "Șterge comentariile mele", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Se șterg comentariile mele curente", "Common.Views.ReviewChanges.txtCommentRemove": "Ștergere", "Common.Views.ReviewChanges.txtCommentResolve": "Rezolvare", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentarii ca soluționate", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Soluționarea comentariilor curente", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Soluționarea comentariilor mele", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Soluționarea comentariilor mele curente", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentariile ca rezolvate", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Rezolvare comentarii curente", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Rezolvarea comentariilor mele", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Rezolvarea comentariilor mele curente", "Common.Views.ReviewChanges.txtCompare": "Comparare", "Common.Views.ReviewChanges.txtDocLang": "Limbă", "Common.Views.ReviewChanges.txtEditing": "Editare", @@ -704,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Nu mai întreabă", "Common.Views.UserNameDialog.textLabel": "Etichetă:", "Common.Views.UserNameDialog.textLabelError": "Etichetă trebuie completată", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Documentul a fost protejat. Aveți posibilitatea numai să-l comentați.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Documentul a fost protejat. Aveți posibilitatea doar să completați formulare din acest document.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Documentul a fost protejat. Aveți posibilitatea să editați acest document, dar toate modificările vor fi urmărite.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Documentul a fost protejat. Puteți doar să vizualizați acest document.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea numai să-l comentați.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea doar să completați formulare din acest document.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea să editați acest document, dar toate modificările vor fi urmărite.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Documentul a fost protejat de un alt utilizator.\nPuteți doar să vizualizați acest document.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Protecția documentului a fost anulată.", "DE.Controllers.LeftMenu.leavePageText": "Toate modificările nesalvate din documentul vor fi pierdute.
Pentru a le salva, faceți clic pe Revocare și apoi pe Salvare. Apăsați OK dacă doriți să renunțați la modificările nesalvate.", "DE.Controllers.LeftMenu.newDocumentTitle": "Documentul fără nume", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertisment", @@ -984,7 +993,7 @@ "DE.Controllers.Main.txtShape_leftArrow": "Săgeată la stângă", "DE.Controllers.Main.txtShape_leftArrowCallout": "Explicație cu săgeta spre stânga", "DE.Controllers.Main.txtShape_leftBrace": "Acoladă stânga", - "DE.Controllers.Main.txtShape_leftBracket": "Paranteză stânga", + "DE.Controllers.Main.txtShape_leftBracket": "Paranteză stângă", "DE.Controllers.Main.txtShape_leftRightArrow": "Săgeată stânga-dreapta", "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Explicație cu săgeata spre stânga-dreapta", "DE.Controllers.Main.txtShape_leftRightUpArrow": "Săgeată stânga-dreapta-sus", @@ -1057,8 +1066,8 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Explicație în dreptunghi rotunjit", "DE.Controllers.Main.txtStarsRibbons": "Stele și forme ondulate", "DE.Controllers.Main.txtStyle_Caption": "Legenda", - "DE.Controllers.Main.txtStyle_endnote_text": "Textul notelei de final ", - "DE.Controllers.Main.txtStyle_footnote_text": "Textul notei de subsol", + "DE.Controllers.Main.txtStyle_endnote_text": "Text notă de final ", + "DE.Controllers.Main.txtStyle_footnote_text": "Text notă 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", @@ -1174,52 +1183,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Pălărie", "DE.Controllers.Toolbar.txtAccent_Smile": "Breve", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tildă", - "DE.Controllers.Toolbar.txtBracket_Angle": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Curve": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Paranteză unică", + "DE.Controllers.Toolbar.txtBracket_Angle": "Paranteze unghiulare", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze unghiulare cu separator", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze unghiulare cu doi separatori", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unghiulară dreaptă", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unghiulară stângă", + "DE.Controllers.Toolbar.txtBracket_Curve": "Acolade", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Acolade cu separator", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Acoladă dreaptă", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Acoladă stângă", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Sistem (două condiții)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Sistem (trei condiții)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Stiva de obiecte", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stiva de obiecte", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Obiect stivă în paranteze", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplu de sistem", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binominal", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binominal", - "DE.Controllers.Toolbar.txtBracket_Line": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză unică", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficientul binomial în paranteze unghiulare", + "DE.Controllers.Toolbar.txtBracket_Line": "Bare verticale", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Bara verticală din dreapta", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Bară verticală din stânga", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Bare verticale duble", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Bara verticală dublă din dreapta", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Bară verticală dublă din stânga", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Paranteză dreaptă inferioară", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză dreaptă inferioară din dreapta", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză dreaptă inferioară din stânga", "DE.Controllers.Toolbar.txtBracket_Round": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Square": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză unică", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separator", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză dreaptă", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză stângă", + "DE.Controllers.Toolbar.txtBracket_Square": "Paranteze pătrate", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Substituent între două paranteze pătrate din dreapta", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze pătrate inverse", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză pătrată dreaptă", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză pătrată stângă", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Substituent între două paranteze pătrate din stânga", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze pătrate duble", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză pătrată dreaptă dublă", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză pătrată dublă din stânga", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Paranteză dreaptă superioară", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză dreaptă superioară din dreapta", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză dreaptă superioară din stânga", "DE.Controllers.Toolbar.txtFractionDiagonal": "Fracție oblică", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Diferențială", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Diferențială", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Diferențială", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferențială", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dx supra dy", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y supra cap delta x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "y parțial supra x parțial", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y supra delta x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Fracție liniară", "DE.Controllers.Toolbar.txtFractionPi_2": "Pi supra 2", "DE.Controllers.Toolbar.txtFractionSmall": "Fracție mică", @@ -1255,63 +1264,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Diferențială de theta", "DE.Controllers.Toolbar.txtIntegral_dx": "Diferențială de x", "DE.Controllers.Toolbar.txtIntegral_dy": "Diferențială de y", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală cu limite stivuite", "DE.Controllers.Toolbar.txtIntegralDouble": "Integrală dublă", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă cu limite", "DE.Controllers.Toolbar.txtIntegralOriented": "Inegrală de contur", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Inegrală de contur", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integrală de contur cu limite stivuite", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integrală de suprafața", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafața", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafața", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Inegrală de contur", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafață cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafață cu limite", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integrală de contur cu limite", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integrală de volum", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Integrală", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum cu limite", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Integrală cu limite", "DE.Controllers.Toolbar.txtIntegralTriple": "Integrală triplă", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă cu limite", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Reuniune", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus cu limite pentru indice/exponent", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă de k combinări din n luate câte k", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă de la i egal cu zero la n", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemplu de sumă folosind doi indici", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemplu de produs", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemplu de reuniune", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplu de limită", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplu de maxim", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limită", @@ -1326,10 +1335,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "Matrice goală 1x3", "DE.Controllers.Toolbar.txtMatrix_2_1": "Matrice goală 2x1 ", "DE.Controllers.Toolbar.txtMatrix_2_2": "Matrice goală 2x2", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală cu paranteze drepte", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice goală cu paranteze drepte", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală cu paranteze drepte", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală cu paranteze drepte", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală de 2x2 între bare verticale duble", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Determinant gol de 2x2", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală de 2x2 între paranteze", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală de 2x2 între paranteze drepte", "DE.Controllers.Toolbar.txtMatrix_2_3": "Matrice goală 2x3", "DE.Controllers.Toolbar.txtMatrix_3_1": "Matrice goală 3x1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Matrice goală 3x2", @@ -1338,11 +1347,11 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Puncte pe linia de mijloc", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Puncte pe diagonală", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Puncte pe verticală", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rare", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rare", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate 2x2", - "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate 3x3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate 3x3", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rară în paranteze", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rară în paranteze drepte", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate de 2x2 cu zerouri", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate de 2x2 cu celule goale în afara diagonalei", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate de 3x3 cu zerouri", "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate 3x3", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Săgeată deasupra de la dreapta la stînga", @@ -1355,8 +1364,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta rezultă", "DE.Controllers.Toolbar.txtOperator_Definition": "Egal prin definiție", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egal", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată deasupra de la dreapta la stînga", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dublă dedesubt de la dreapta la stînga", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată dublă deasupra de la dreapta la stînga", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Săgeată dedesupt spre stânga", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Săgeată deasupra spre stânga ", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Săgeată dedesubt spre dreapta", @@ -1365,16 +1374,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus egal", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus egal", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Măsurat prin", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Partea din dreapta a formulei pătratice", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Rădăcina pătrată din a pătrat plus b pătrat", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Rădăcina pătrată de ordin", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Rădăcina cubică", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radicalul de ordin", "DE.Controllers.Toolbar.txtRadicalSqrt": "Rădăcină pătrată", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Scriptul", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Scriptul", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Scriptul", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Scriptul", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x indice y la pătrat", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e la minus i omega t", + "DE.Controllers.Toolbar.txtScriptCustom_3": "x la pătrat", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y exponent stânga n indice stânga unu", "DE.Controllers.Toolbar.txtScriptSub": "Indice", "DE.Controllers.Toolbar.txtScriptSubSup": "Indice-exponenet", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Indice-exponent din stânga", @@ -1630,9 +1639,10 @@ "DE.Views.DocProtection.txtDocProtectedComment": "Documentul a fost protejat.
Puteți numai să-l comentați.", "DE.Views.DocProtection.txtDocProtectedForms": "Documentul a fost protejat.
Documentul este diponibil numai pentru completarea formularelor.", "DE.Views.DocProtection.txtDocProtectedTrack": "Documentul a fost protejat.
Puteți modifica acest document, dar toate modificările vor fi urmărite.", - "DE.Views.DocProtection.txtDocProtectedView": "Documentul a fost protejat.
Documentul este disponibil numai pentru vizualizare..", + "DE.Views.DocProtection.txtDocProtectedView": "Documentul a fost protejat.
Documentul este disponibil numai pentru vizualizare.", "DE.Views.DocProtection.txtDocUnlockDescription": "Introduceți parola pentru anularea protecției documentului", "DE.Views.DocProtection.txtProtectDoc": "Protejare document", + "DE.Views.DocProtection.txtUnlockTitle": "Deprotejare document", "DE.Views.DocumentHolder.aboveText": "Deasupra", "DE.Views.DocumentHolder.addCommentText": "Adaugă comentariu", "DE.Views.DocumentHolder.advancedDropCapText": "Setări majusculă încorporată", @@ -1729,7 +1739,7 @@ "DE.Views.DocumentHolder.textDistributeRows": "Distribuire rânduri", "DE.Views.DocumentHolder.textEditControls": "Setări control de conținut", "DE.Views.DocumentHolder.textEditPoints": "Editare puncte", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Editare bordură la text", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Editare limită de încadrare ", "DE.Views.DocumentHolder.textFlipH": "Răsturnare orizontală", "DE.Views.DocumentHolder.textFlipV": "Răsturnare verticală", "DE.Views.DocumentHolder.textFollow": "Urmărirea mutării", @@ -1962,10 +1972,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versiune a PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locația", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoane care au dreptul de acces", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboluri cu spații", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caractere cu spații", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistică", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subiect", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboluri", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caractere", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichete", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titlu", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S-a încărcat", @@ -2317,10 +2327,10 @@ "DE.Views.Links.capBtnTOF": "Tabel de figuri", "DE.Views.Links.confirmDeleteFootnotes": "Doriți să ștergeți toate notele de subsol?", "DE.Views.Links.confirmReplaceTOF": "Doriți să înlocuiți tabelă de figuri selectată?", - "DE.Views.Links.mniConvertNote": "Conversia tuturor notelor", - "DE.Views.Links.mniDelFootnote": "Eliminarea tuturor notelor", + "DE.Views.Links.mniConvertNote": "Efectuați conversia tuturor notelor", + "DE.Views.Links.mniDelFootnote": "Ștergeți toate notele", "DE.Views.Links.mniInsEndnote": "Inserare notă de final", - "DE.Views.Links.mniInsFootnote": "Inserarea notei de subsol", + "DE.Views.Links.mniInsFootnote": "Inserare notă de subsol", "DE.Views.Links.mniNoteSettings": "Setări note", "DE.Views.Links.textContentsRemove": "Eliminare cuprins", "DE.Views.Links.textContentsSettings": "Setări", @@ -2730,6 +2740,12 @@ "DE.Views.Statusbar.tipZoomIn": "Mărire", "DE.Views.Statusbar.tipZoomOut": "Micșorare", "DE.Views.Statusbar.txtPageNumInvalid": "Număr de pagină nevalid", + "DE.Views.Statusbar.txtPages": "Pagini", + "DE.Views.Statusbar.txtParagraphs": "Paragrafe", + "DE.Views.Statusbar.txtSpaces": "Simboluri cu spații", + "DE.Views.Statusbar.txtSymbols": "Simboluri", + "DE.Views.Statusbar.txtWordCount": "Contor de cuvinte", + "DE.Views.Statusbar.txtWords": "Cuvinte", "DE.Views.StyleTitleDialog.textHeader": "Creare stil nou", "DE.Views.StyleTitleDialog.textNextStyle": "Stil de paragraf următor", "DE.Views.StyleTitleDialog.textTitle": "Titlu", @@ -3021,7 +3037,7 @@ "DE.Views.Toolbar.textColumnsTwo": "Două", "DE.Views.Toolbar.textComboboxControl": "Casetă combo", "DE.Views.Toolbar.textContinuous": "Continuă", - "DE.Views.Toolbar.textContPage": "Continuu", + "DE.Views.Toolbar.textContPage": "Pagina continuă", "DE.Views.Toolbar.textCustomLineNumbers": "Opțiuni de numerotare linii", "DE.Views.Toolbar.textDateControl": "Data", "DE.Views.Toolbar.textDropdownControl": "Lista verticală", @@ -3050,14 +3066,14 @@ "DE.Views.Toolbar.textNone": "Niciunul", "DE.Views.Toolbar.textOddPage": "Pagină impară", "DE.Views.Toolbar.textPageMarginsCustom": "Margini particularizate", - "DE.Views.Toolbar.textPageSizeCustom": "Dimensiunea particularizată a paginii ", + "DE.Views.Toolbar.textPageSizeCustom": "Dimensiune pagină particularizată", "DE.Views.Toolbar.textPictureControl": "Imagine", "DE.Views.Toolbar.textPlainControl": "Text simplu", "DE.Views.Toolbar.textPortrait": "Portret", "DE.Views.Toolbar.textRemoveControl": "Eliminare control de conținut", "DE.Views.Toolbar.textRemWatermark": "Eliminare inscripționare", - "DE.Views.Toolbar.textRestartEachPage": "Repornire fiecare pagină", - "DE.Views.Toolbar.textRestartEachSection": "Repornire fiecare secțiune", + "DE.Views.Toolbar.textRestartEachPage": "Reluare la fiecare pagină", + "DE.Views.Toolbar.textRestartEachSection": "Reluare la fiecare secțiune", "DE.Views.Toolbar.textRichControl": "Text îmbogățit", "DE.Views.Toolbar.textRight": "Dreapta:", "DE.Views.Toolbar.textStrikeout": "Tăiere cu o linie", @@ -3153,6 +3169,7 @@ "DE.Views.Toolbar.tipPaste": "Lipire", "DE.Views.Toolbar.tipPrColor": "Umbrire", "DE.Views.Toolbar.tipPrint": "Imprimare", + "DE.Views.Toolbar.tipPrintQuick": "Imprimare rapidă", "DE.Views.Toolbar.tipRedo": "Refacere", "DE.Views.Toolbar.tipSave": "Salvează", "DE.Views.Toolbar.tipSaveCoauth": "Salvați modificările dvs. ca alți utilizatorii să le vadă.", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index bfe8644f8..8f5683da7 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -704,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Больше не спрашивать", "Common.Views.UserNameDialog.textLabel": "Подпись:", "Common.Views.UserNameDialog.textLabelError": "Подпись не должна быть пустой.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Документ защищен. Вы можете только добавлять комментарии к этому документу.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Документ защищен. Вы можете только заполнять формы в этом документе.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Документ защищен. Вы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Документ защищен. Вы можете только просматривать этот документ.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Документ был защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Документ был защищен другим пользователем.\nВы можете только заполнять формы в этом документе.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Документ был защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Документ был защищен другим пользователем.\nВы можете только просматривать этот документ.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Защита документа снята.", "DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.
Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.", "DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание", @@ -1174,52 +1183,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Крышка", "DE.Controllers.Toolbar.txtAccent_Smile": "Значок краткости", "DE.Controllers.Toolbar.txtAccent_Tilde": "Тильда", - "DE.Controllers.Toolbar.txtBracket_Angle": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Curve": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Отдельная скобка", + "DE.Controllers.Toolbar.txtBracket_Angle": "Угловые скобки", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Угловые скобки с разделителем", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Угловые скобки с двумя разделителями", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Правая угловая скобка", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Левая угловая скобка", + "DE.Controllers.Toolbar.txtBracket_Curve": "Фигурные скобки", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Фигурные скобки с разделителем", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Правая фигурная скобка", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Левая фигурная скобка", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Наборы условий (два условия)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Наборы условий (три условия)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Стопка объектов", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов в круглых скобках", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Наборы условий (пример)", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Биномиальный коэффициент", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент", - "DE.Controllers.Toolbar.txtBracket_Line": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Скобки", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Скобки", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Round": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Square": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Скобки", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Скобки", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Скобки", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Отдельная скобка", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент в угловых скобках", + "DE.Controllers.Toolbar.txtBracket_Line": "Вертикальные черты", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Правая вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Левая вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Двойные вертикальные черты", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Правая двойная вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Левая двойная вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Закрытые снизу скобки", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Правый предельный уровень снизу", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Левый предельный уровень снизу", + "DE.Controllers.Toolbar.txtBracket_Round": "Круглые скобки", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Круглые скобки с разделителем", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Правая круглая скобка", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Левая круглая скобка", + "DE.Controllers.Toolbar.txtBracket_Square": "Квадратные скобки", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Заполнитель между двумя правыми квадратными скобками", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Перевернутые квадратные скобки", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Правая квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Левая квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Заполнитель между двумя левыми квадратными скобками", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Двойные квадратные скобки", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Правая двойная квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Левая двойная квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Закрытые сверху скобки", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Правый предельный уровень сверху", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Левый предельный уровень сверху", "DE.Controllers.Toolbar.txtFractionDiagonal": "Диагональная простая дробь", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Дифференциал", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Дифференциал", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Дифференциал", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Дифференциал", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dy над dx", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "пересечение дельты y над пересечением дельты x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "частичная y по частичной x", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "дельта y через дельта x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Горизонтальная простая дробь", "DE.Controllers.Toolbar.txtFractionPi_2": "Пи разделить на два", "DE.Controllers.Toolbar.txtFractionSmall": "Маленькая простая дробь", @@ -1255,63 +1264,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Дифференциал dθ", "DE.Controllers.Toolbar.txtIntegral_dx": "Дифференциал dx", "DE.Controllers.Toolbar.txtIntegral_dy": "Дифференциал dy", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл с пределами с накоплением", "DE.Controllers.Toolbar.txtIntegralDouble": "Двойной интеграл", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл с пределами", "DE.Controllers.Toolbar.txtIntegralOriented": "Контурный интеграл", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл с пределами с накоплением", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Интеграл по поверхности", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности с пределами", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл с пределами", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Интеграл по объему", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему с пределами", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл с пределами", "DE.Controllers.Toolbar.txtIntegralTriple": "Тройной интеграл", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Конъюнкция", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Логическое И", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Логическое И с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Логическое И с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Логическое И с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Логическое И с пределом подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Дизъюнкция", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение с пределами подстрочного/надстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Суммирование от k от n с выбором k", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Суммирование от i равно ноль до n", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Пример суммирования с использованием двух индексов", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Пример произведения", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Пример объединения", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Логическое Или", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Логическое ИЛИ с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Логическое ИЛИ с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Логическое ИЛИ с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Логическое ИЛИ с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение с нижним пределом в виде подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Сумма", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Суммирование с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Суммирование с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Суммирование с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Суммирование с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Пример предела", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Пример максимума", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Предел", @@ -1326,10 +1335,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "Пустая матрица 1 x 3", "DE.Controllers.Toolbar.txtMatrix_2_1": "Пустая матрица 2 x 1", "DE.Controllers.Toolbar.txtMatrix_2_2": "Пустая матрица 2 x 2", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица со скобками", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустая матрица со скобками", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица со скобками", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица со скобками", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица 2 х 2 в двойных вертикальных чертах", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустой определитель 2 x 2", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица 2 х 2 в круглых скобках", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица 2 х 2 в скобках", "DE.Controllers.Toolbar.txtMatrix_2_3": "Пустая матрица 2 x 3", "DE.Controllers.Toolbar.txtMatrix_3_1": "Пустая матрица 3 x 1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Пустая матрица 3 x 2", @@ -1338,12 +1347,12 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Точки посередине", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Точки по диагонали", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Точки по вертикали", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2", - "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 3 x 3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица в круглых скобках", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица в квадратных скобках", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2 с нулями", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 2 x 2 с пустыми ячейками не на диагонали", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3 с нулями", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3 с пустыми ячейками не на диагонали", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Стрелка вправо-влево снизу", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Стрелка вправо-влево сверху", "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Стрелка влево снизу", @@ -1355,8 +1364,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Дельта выхода", "DE.Controllers.Toolbar.txtOperator_Definition": "Равно по определению", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Дельта равна", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Стрелка вправо-влево снизу", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Стрелка вправо-влево сверху", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Двойная стрелка вправо-влево снизу", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Двойная стрелка вправо-влево сверху", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Стрелка влево снизу", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Стрелка влево сверху", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Стрелка вправо снизу", @@ -1365,16 +1374,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Минус равно", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Плюс равно", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Единица измерения", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Радикал", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Радикал", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Правая часть квадратного уравнения", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Квадратный корень из квадрата плюс b квадрат", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Квадратный корень со степенью", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Кубический корень", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Радикал со степенью", "DE.Controllers.Toolbar.txtRadicalSqrt": "Квадратный корень", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Индекс", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Индекс", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Индекс", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Индекс", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x в степени квадрата y", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e в степени -iωt", + "DE.Controllers.Toolbar.txtScriptCustom_3": "квадрат x", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y, надстрочный индекс n слева, подстрочный индекс 1 справа", "DE.Controllers.Toolbar.txtScriptSub": "Нижний индекс", "DE.Controllers.Toolbar.txtScriptSubSup": "Нижний и верхний индексы", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Нижний и верхний индексы слева", @@ -1634,15 +1643,6 @@ "DE.Views.DocProtection.txtDocUnlockDescription": "Введите пароль, чтобы снять защиту документа", "DE.Views.DocProtection.txtProtectDoc": "Защитить документ", "DE.Views.DocProtection.txtUnlockTitle": "Снять защиту документа", - "DE.Controllers.DocProtection.txtWasProtectedComment": "Документ защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.", - "DE.Controllers.DocProtection.txtWasProtectedForms": "Документ защищен другим пользователем.\nВы можете только заполнять формы в этом документе.", - "DE.Controllers.DocProtection.txtWasProtectedTrack": "Документ защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", - "DE.Controllers.DocProtection.txtWasProtectedView": "Документ защищен другим пользователем.\nВы можете только просматривать этот документ.", - "DE.Controllers.DocProtection.txtWasUnprotected": "Защита документа снята.", - "DE.Controllers.DocProtection.txtIsProtectedView": "Документ защищен. Вы можете только просматривать этот документ.", - "DE.Controllers.DocProtection.txtIsProtectedTrack": "Документ защищен. Вы можете редактировать этот документ, но все изменения будут отслеживаться.", - "DE.Controllers.DocProtection.txtIsProtectedComment": "Документ защищен. Вы можете только добавлять комментарии к этому документу.", - "DE.Controllers.DocProtection.txtIsProtectedForms": "Документ защищен. Вы можете только заполнять формы в этом документе.", "DE.Views.DocumentHolder.aboveText": "Выше", "DE.Views.DocumentHolder.addCommentText": "Добавить комментарий", "DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы", @@ -2529,7 +2529,7 @@ "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Запрет висячих строк", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Отступы и интервалы", - "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Положение на странице", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Разрывы строк и страницы", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Положение", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Малые прописные", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Не добавлять интервал между абзацами одного стиля", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index a440b94ed..c3e977eb0 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -416,7 +416,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Create a copy", "Common.Translation.warnFileLockedBtnView": "Open for viewing", "Common.UI.ButtonColored.textAutoColor": "Automatic", - "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", + "Common.UI.ButtonColored.textNewColor": "Add new custom color", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -445,9 +445,9 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace all", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", - "Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors", - "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", - "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", + "Common.UI.ThemeColorPalette.textRecentColors": "Recent colors", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme colors", "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeContrastDark": "Contrast Dark", "Common.UI.Themes.txtThemeDark": "Dark", @@ -673,15 +673,15 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", - "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", - "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remove all comments", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove current comments", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remove my comments", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", "Common.Views.ReviewChanges.txtCommentRemove": "Remove", "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", "Common.Views.ReviewChanges.txtDocLang": "Language", "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", @@ -914,7 +914,7 @@ "PE.Controllers.Main.txtAddFirstSlide": "Click to add the first slide", "PE.Controllers.Main.txtAddNotes": "Click to add notes", "PE.Controllers.Main.txtArt": "Your text here", - "PE.Controllers.Main.txtBasicShapes": "Basic Shapes", + "PE.Controllers.Main.txtBasicShapes": "Basic shapes", "PE.Controllers.Main.txtButtons": "Buttons", "PE.Controllers.Main.txtCallouts": "Callouts", "PE.Controllers.Main.txtCharts": "Charts", @@ -924,7 +924,7 @@ "PE.Controllers.Main.txtDiagramTitle": "Chart Title", "PE.Controllers.Main.txtEditingMode": "Set editing mode...", "PE.Controllers.Main.txtErrorLoadHistory": "History loading failed", - "PE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "PE.Controllers.Main.txtFiguredArrows": "Figured arrows", "PE.Controllers.Main.txtFooter": "Footer", "PE.Controllers.Main.txtHeader": "Header", "PE.Controllers.Main.txtImage": "Image", @@ -1202,7 +1202,7 @@ "PE.Controllers.Toolbar.textInsert": "Insert", "PE.Controllers.Toolbar.textIntegral": "Integrals", "PE.Controllers.Toolbar.textLargeOperator": "Large Operators", - "PE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "PE.Controllers.Toolbar.textLimitAndLog": "Limits and Logarithms", "PE.Controllers.Toolbar.textMatrix": "Matrices", "PE.Controllers.Toolbar.textOperator": "Operators", "PE.Controllers.Toolbar.textRadical": "Radicals", @@ -1237,12 +1237,12 @@ "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "PE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separators", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separator", "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", "PE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", - "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separators", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separator", "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "PE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", @@ -1262,15 +1262,15 @@ "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", "PE.Controllers.Toolbar.txtBracket_Round": "Parentheses", - "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separators", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separator", "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", "PE.Controllers.Toolbar.txtBracket_Square": "Square brackets", - "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Right square brackets", - "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Right and left square brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder between two right square brackets", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted square brackets", "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", - "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Left square brackets", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder between two left square brackets", "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", @@ -1334,26 +1334,26 @@ "PE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge with lower limit", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge with limits", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge with subscript lower limit", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge with subscript/superscript limits", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation over k of n choose k", "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation example using two indices", "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee with lower limit", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee with limits", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee with subscript lower limit", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee with subscript/superscript limits", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with limits", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with subscript lower limit", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with subscript/superscript limits", "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", @@ -1386,10 +1386,10 @@ "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", - "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", - "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", - "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", - "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2 by 2 matrix in double vertical bars", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2 by 2 determinant", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty 2 by 2 matrix in parentheses", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty 2 by 2 matrix in brackets", "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", @@ -1398,12 +1398,12 @@ "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", - "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", - "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", - "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", - "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", - "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", - "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix in parentheses", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix in brackets", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix with zeros", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 identity matrix with blank off-diagonal cells", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix with zeros", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix with blank off-diagonal cells", "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", @@ -1415,8 +1415,8 @@ "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", "PE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left double arrow below", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left double arrow above", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", @@ -1425,7 +1425,7 @@ "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "PE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of Quadratic Formula", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of quadratic formula", "PE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "PE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "PE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", @@ -1540,7 +1540,7 @@ "PE.Views.Animation.strStart": "Start", "PE.Views.Animation.strTrigger": "Trigger", "PE.Views.Animation.textAutoPreview": "AutoPreview", - "PE.Views.Animation.textMoreEffects": "Show More Effects", + "PE.Views.Animation.textMoreEffects": "Show more effects", "PE.Views.Animation.textMoveEarlier": "Move Earlier", "PE.Views.Animation.textMoveLater": "Move Later", "PE.Views.Animation.textMultiple": "Multiple", @@ -1553,7 +1553,7 @@ "PE.Views.Animation.textStartWithPrevious": "With Previous", "PE.Views.Animation.textUntilEndOfSlide": "Until End of Slide", "PE.Views.Animation.textUntilNextClick": "Until Next Click", - "PE.Views.Animation.txtAddEffect": "Add animation", + "PE.Views.Animation.txtAddEffect": "Add Animation", "PE.Views.Animation.txtAnimationPane": "Animation Pane", "PE.Views.Animation.txtParameters": "Parameters", "PE.Views.Animation.txtPreview": "Preview", @@ -2122,7 +2122,7 @@ "PE.Views.ShapeSettings.textPatternFill": "Pattern", "PE.Views.ShapeSettings.textPosition": "Position", "PE.Views.ShapeSettings.textRadial": "Radial", - "PE.Views.ShapeSettings.textRecentlyUsed": "Recently Used", + "PE.Views.ShapeSettings.textRecentlyUsed": "Recently used", "PE.Views.ShapeSettings.textRotate90": "Rotate 90°", "PE.Views.ShapeSettings.textRotation": "Rotation", "PE.Views.ShapeSettings.textSelectImage": "Select Picture", @@ -2434,19 +2434,19 @@ "PE.Views.Toolbar.capTabHome": "Home", "PE.Views.Toolbar.capTabInsert": "Insert", "PE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word", - "PE.Views.Toolbar.mniCustomTable": "Insert Custom Table", + "PE.Views.Toolbar.mniCustomTable": "Insert custom table", "PE.Views.Toolbar.mniImageFromFile": "Image from File", "PE.Views.Toolbar.mniImageFromStorage": "Image from Storage", "PE.Views.Toolbar.mniImageFromUrl": "Image from URL", "PE.Views.Toolbar.mniInsertSSE": "Insert Spreadsheet", "PE.Views.Toolbar.mniLowerCase": "lowercase", "PE.Views.Toolbar.mniSentenceCase": "Sentence case.", - "PE.Views.Toolbar.mniSlideAdvanced": "Advanced Settings", + "PE.Views.Toolbar.mniSlideAdvanced": "Advanced settings", "PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", "PE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", "PE.Views.Toolbar.mniUpperCase": "UPPERCASE", - "PE.Views.Toolbar.strMenuNoFill": "No Fill", + "PE.Views.Toolbar.strMenuNoFill": "No fill", "PE.Views.Toolbar.textAlignBottom": "Align text to the bottom", "PE.Views.Toolbar.textAlignCenter": "Center text", "PE.Views.Toolbar.textAlignJust": "Justify", @@ -2454,12 +2454,12 @@ "PE.Views.Toolbar.textAlignMiddle": "Align text to the middle", "PE.Views.Toolbar.textAlignRight": "Align text right", "PE.Views.Toolbar.textAlignTop": "Align text to the top", - "PE.Views.Toolbar.textArrangeBack": "Send to Background", - "PE.Views.Toolbar.textArrangeBackward": "Send Backward", - "PE.Views.Toolbar.textArrangeForward": "Bring Forward", - "PE.Views.Toolbar.textArrangeFront": "Bring to Foreground", + "PE.Views.Toolbar.textArrangeBack": "Send to background", + "PE.Views.Toolbar.textArrangeBackward": "Send backward", + "PE.Views.Toolbar.textArrangeForward": "Bring forward", + "PE.Views.Toolbar.textArrangeFront": "Bring to foreground", "PE.Views.Toolbar.textBold": "Bold", - "PE.Views.Toolbar.textColumnsCustom": "Custom Columns", + "PE.Views.Toolbar.textColumnsCustom": "Custom columns", "PE.Views.Toolbar.textColumnsOne": "One Column", "PE.Views.Toolbar.textColumnsThree": "Three Columns", "PE.Views.Toolbar.textColumnsTwo": "Two Columns", @@ -2553,9 +2553,9 @@ "PE.Views.Toolbar.tipUndo": "Undo", "PE.Views.Toolbar.tipVAligh": "Vertical align", "PE.Views.Toolbar.tipViewSettings": "View settings", - "PE.Views.Toolbar.txtDistribHor": "Distribute Horizontally", - "PE.Views.Toolbar.txtDistribVert": "Distribute Vertically", - "PE.Views.Toolbar.txtDuplicateSlide": "Duplicate Slide", + "PE.Views.Toolbar.txtDistribHor": "Distribute horizontally", + "PE.Views.Toolbar.txtDistribVert": "Distribute vertically", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplicate slide", "PE.Views.Toolbar.txtGroup": "Group", "PE.Views.Toolbar.txtObjectsAlign": "Align Selected Objects", "PE.Views.Toolbar.txtScheme1": "Office", @@ -2618,10 +2618,10 @@ "PE.Views.Transitions.txtParameters": "Parameters", "PE.Views.Transitions.txtPreview": "Preview", "PE.Views.Transitions.txtSec": "s", - "PE.Views.ViewTab.textAddHGuides": "Add Horizontal Guide", - "PE.Views.ViewTab.textAddVGuides": "Add Vertical Guide", + "PE.Views.ViewTab.textAddHGuides": "Add horizontal guide", + "PE.Views.ViewTab.textAddVGuides": "Add vertical guide", "PE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar", - "PE.Views.ViewTab.textClearGuides": "Clear Guides", + "PE.Views.ViewTab.textClearGuides": "Clear guides", "PE.Views.ViewTab.textCm": "cm", "PE.Views.ViewTab.textCustom": "Custom", "PE.Views.ViewTab.textFitToSlide": "Fit To Slide", @@ -2634,14 +2634,14 @@ "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", - "PE.Views.ViewTab.textShowGuides": "Show Guides", - "PE.Views.ViewTab.textSmartGuides": "Smart Guides", - "PE.Views.ViewTab.textSnapObjects": "Snap Object to Grid", + "PE.Views.ViewTab.textShowGuides": "Show guides", + "PE.Views.ViewTab.textSmartGuides": "Smart guides", + "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", "PE.Views.ViewTab.tipFitToWidth": "Fit to width", "PE.Views.ViewTab.tipGridlines": "Show gridlines", - "PE.Views.ViewTab.tipGuides": "Show Guides", + "PE.Views.ViewTab.tipGuides": "Show guides", "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index c2f099ad6..c0adbbe1d 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -355,8 +355,63 @@ "Common.define.smartArt.textPlusAndMinus": "Գումարած և հանած", "Common.define.smartArt.textProcess": "Ընթացք", "Common.define.smartArt.textProcessArrows": "Ընթացքի սլաքներ", + "Common.define.smartArt.textProcessList": "Ընթացքների ցուցակ", + "Common.define.smartArt.textPyramid": "Բուրգ", + "Common.define.smartArt.textPyramidList": "Բուրգի ցուցակ", + "Common.define.smartArt.textRadialCluster": "Շառավիղների բույլ", + "Common.define.smartArt.textRadialCycle": "Շառավղային շրջան", + "Common.define.smartArt.textRadialList": "Շառավղի ցուցակ", + "Common.define.smartArt.textRadialPictureList": "Շառավղային նկարների ցուցակ", + "Common.define.smartArt.textRadialVenn": "Շառավղային վրածածք", + "Common.define.smartArt.textRandomToResultProcess": "Պատահականից դեպի արդյունք ընթացք", + "Common.define.smartArt.textRelationship": "Հարաբերություն", + "Common.define.smartArt.textRepeatingBendingProcess": "Կրկնվող ծռման ընթացք", + "Common.define.smartArt.textReverseList": "Հետադարձ ցուցակ", + "Common.define.smartArt.textSegmentedCycle": "Մասնատված շրջան", + "Common.define.smartArt.textSegmentedProcess": "Մասնատված ընթացք", + "Common.define.smartArt.textSegmentedPyramid": "Մասնատված բուրգ", + "Common.define.smartArt.textSnapshotPictureList": "Ճեպապատկերների ցուցակ", + "Common.define.smartArt.textSpiralPicture": "Պարուրաձև նկար", + "Common.define.smartArt.textSquareAccentList": "Քառակուսի շեշտման ցուցակ", + "Common.define.smartArt.textStackedList": "Շեղջված ցուցակ", + "Common.define.smartArt.textStackedVenn": "Շեղջված վրածածք", + "Common.define.smartArt.textStaggeredProcess": "Աստիճանայաին ընթացք", + "Common.define.smartArt.textStepDownProcess": "Իջնող ընթացք", + "Common.define.smartArt.textStepUpProcess": "Բարձրացող ընթացք", + "Common.define.smartArt.textSubStepProcess": "Ենթաքայլերով ընթացք", + "Common.define.smartArt.textTabbedArc": "Ներդիրավոր աղեղ", + "Common.define.smartArt.textTableHierarchy": "Աղյուսակի ստորակարգ", + "Common.define.smartArt.textTableList": "Աղյուսակային ցուցակ", + "Common.define.smartArt.textTabList": "Ներդիրների ցուցակ", + "Common.define.smartArt.textTargetList": "Նպատակակետի ցուցակ", + "Common.define.smartArt.textTextCycle": "Գրվածքի շրջան", + "Common.define.smartArt.textThemePictureAccent": "Ոճի նկարի շեշտում", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Ոճի նկարի այլընտրական շեշտում", + "Common.define.smartArt.textThemePictureGrid": "Ոճի նկարի ցանց", + "Common.define.smartArt.textTitledMatrix": "Անվանված մատրիցա", + "Common.define.smartArt.textTitledPictureAccentList": "Անվանված նկարների շեշտման ցուցակ", + "Common.define.smartArt.textTitledPictureBlocks": "Անվանված նկարների կազմեր", + "Common.define.smartArt.textTitlePictureLineup": "Ոճի նկարների շարան", + "Common.define.smartArt.textTrapezoidList": "Սեղանի ցուցակ", + "Common.define.smartArt.textUpwardArrow": "Վեր սլացող սլաք", + "Common.define.smartArt.textVaryingWidthList": "Փոփոխվող լայնությունների ցուցակ", + "Common.define.smartArt.textVerticalAccentList": "Ուղղաձիգ շեշտման ցուցակ", + "Common.define.smartArt.textVerticalArrowList": "Ուղղաձիգ սլաքի ցուցակ", + "Common.define.smartArt.textVerticalBendingProcess": "Ուղղաձիգ ծռման ընթացք", + "Common.define.smartArt.textVerticalBlockList": "Ուղղաձիգ կապանի ցուցակ", + "Common.define.smartArt.textVerticalBoxList": "Ուղղաձիգ ցուցակատուփ", + "Common.define.smartArt.textVerticalBracketList": "Ուղղաձիգ ուղղանկյուն փակագծերի ցուցակ", + "Common.define.smartArt.textVerticalBulletList": "Ուղղաձիգ պարբերակների ցուցակ", + "Common.define.smartArt.textVerticalChevronList": "Ուղղաձիգ ծպեղների ցուցակ", + "Common.define.smartArt.textVerticalCircleList": "Ուղղաձիգ շրջանով ցուցակ", + "Common.define.smartArt.textVerticalCurvedList": "Ուղղաձիգ կորով ցուցակ", + "Common.define.smartArt.textVerticalEquation": "Ուղղաձիգ հավասարում", + "Common.define.smartArt.textVerticalPictureAccentList": "Ուղղաձիգ նկարի շեշտման ցուցակ", + "Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ", + "Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք", "Common.Translation.textMoreButton": "Ավել", "Common.Translation.tipFileLocked": "Փաստաթուղթը կողպված է խմբագրման համար:Դուք կարող եք փոփոխություններ կատարել և հետագայում պահպանել այն որպես տեղական պատճեն:", + "Common.Translation.tipFileReadOnly": "Փաստաթուղթը միայն կարդալու է և կողպված է խմբագրման համար:ուք կարող եք փոփոխություններ կատարել ևպահպանել դրա տեղային պատճենն ավելի ուշ :", "Common.Translation.warnFileLocked": "Ֆայլը խմբագրվում է մեկ այլ հավելվածում:Դուք կարող եք շարունակել խմբագրումը և պահպանել այն որպես պատճեն:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", @@ -497,6 +552,7 @@ "Common.Views.Header.textHideLines": "Թաքցնել քանոնները", "Common.Views.Header.textHideNotes": "Թաքցնել Նշումները", "Common.Views.Header.textHideStatusBar": "Թաքցնել վիճակագոտին", + "Common.Views.Header.textReadOnly": "Միայն կարդալու", "Common.Views.Header.textRemoveFavorite": "Ջնջել ընտրված ցուցակից", "Common.Views.Header.textSaveBegin": "Պահում", "Common.Views.Header.textSaveChanged": "Փոփոխված", @@ -508,6 +564,7 @@ "Common.Views.Header.tipDownload": "Ներբեռնել ֆայլը", "Common.Views.Header.tipGoEdit": "Խմբագրել ընթացիկ ֆայլը", "Common.Views.Header.tipPrint": "Տպել նիշքը", + "Common.Views.Header.tipPrintQuick": "Արագ տպում", "Common.Views.Header.tipRedo": "Վերարկել", "Common.Views.Header.tipSave": "Պահպանել", "Common.Views.Header.tipSearch": "Որոնել", @@ -745,6 +802,7 @@ "PE.Controllers.LeftMenu.txtUntitled": "Անանուն", "PE.Controllers.Main.applyChangesTextText": "Տվյալների բեռնում...", "PE.Controllers.Main.applyChangesTitleText": "Տվյալների բեռնում", + "PE.Controllers.Main.confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը:
Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):", "PE.Controllers.Main.convertationTimeoutText": "Փոխակերպման ժամկետը գերազանցվել է:", "PE.Controllers.Main.criticalErrorExtText": "Սեղմեք «լավ» ու վերադարձեք փաստաթղթերի ցանկին", "PE.Controllers.Main.criticalErrorTitle": "Սխալ", @@ -753,6 +811,7 @@ "PE.Controllers.Main.downloadTitleText": "Ներկայացման ներբեռնում", "PE.Controllers.Main.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։
Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։", "PE.Controllers.Main.errorBadImageUrl": "Նկարի URL-ը սխալ է", + "PE.Controllers.Main.errorCannotPasteImg": "Մենք չենք կարող տեղադրել այս պատկերը Clipboard-ից, բայց դուք կարող եք պահել այն ձեր սարքում և\nտեղադրեք այն այնտեղից, կամ կարող եք պատճենել պատկերն առանց տեքստի և տեղադրել այն ներկայացման մեջ:", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Սպասարկիչի հետ կապն ընդհատվել է։ Փաստաթուղթն այս պահին չի կարող խմբագրվել։", "PE.Controllers.Main.errorComboSeries": "Համակցված աղյուսակ ստեղծելու համար ընտրել տվյալների առնվազն երկու շարք:", "PE.Controllers.Main.errorConnectToServer": "Փաստաթուղթը չպահպանվեց։ Ստուգեք միացման կարգավորումները կամ կապ հաստատեք ձեր վարիչի հետ։
Երբ սեղմեք «Լավ» կոճակը, ձեզ կառաջարկվի փաստաթուղթը ներբեռնել։", @@ -846,6 +905,7 @@ "PE.Controllers.Main.textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:", "PE.Controllers.Main.textShape": "Պատկեր", "PE.Controllers.Main.textStrict": "Խիստ աշխատակարգ", + "PE.Controllers.Main.textTryQuickPrint": "Դուք ընտրել եք Արագ տպում` ամբողջ փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա:
Ցանկանու՞մ եք շարունակել։", "PE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։
«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել հավելյալ կարգավորումների միջոցով։", "PE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:", "PE.Controllers.Main.textUndo": "Հետարկել", @@ -1515,10 +1575,14 @@ "PE.Views.ChartSettings.textNarrow": "Նեղ տեսադաշտ", "PE.Views.ChartSettings.textPerspective": "Հեռանկար", "PE.Views.ChartSettings.textRight": "Աջ", + "PE.Views.ChartSettings.textRightAngle": "Աջ անկյան առանցքներ", "PE.Views.ChartSettings.textSize": "Չափ", "PE.Views.ChartSettings.textStyle": "Ոճ", "PE.Views.ChartSettings.textUp": "Վեր", + "PE.Views.ChartSettings.textWiden": "Լայն տեսադաշտ", "PE.Views.ChartSettings.textWidth": "Լայնք", + "PE.Views.ChartSettings.textX": "X պտտում", + "PE.Views.ChartSettings.textY": "Y պտտում", "PE.Views.ChartSettingsAdvanced.textAlt": "Այլընտրական տեքստ", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Նկարագրություն", "PE.Views.ChartSettingsAdvanced.textAltTip": "Տեսողական առարկաների այլընտրական տեքստային ներկայացում, որը ընթերցվելու է տեսողության կամ մտավոր խանգարումներով մարդկանց համար՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա նկարի, պատկերի, գծապատկերի կամ աղյուսակի վրա։", @@ -1630,6 +1694,7 @@ "PE.Views.DocumentHolder.textRotate270": "Պտտել 90° ժամացույցի սլաքի հակառակ ուղղությամբ", "PE.Views.DocumentHolder.textRotate90": "Պտտել 90° ժամացույցի սլաքի ուղղությամբ", "PE.Views.DocumentHolder.textRulers": "Քանոններ", + "PE.Views.DocumentHolder.textSaveAsPicture": "Պահպանել որպես նկար", "PE.Views.DocumentHolder.textShapeAlignBottom": "Հավասարեցնել ներքևից", "PE.Views.DocumentHolder.textShapeAlignCenter": "Հավասարեցնել կենտրոնով", "PE.Views.DocumentHolder.textShapeAlignLeft": "Հավասարեցնել ձախից", @@ -1637,8 +1702,12 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Հավասարեցնել աջից", "PE.Views.DocumentHolder.textShapeAlignTop": "Հավասարեցնել վերևից", "PE.Views.DocumentHolder.textShowGridlines": "Ցուցադրել Ցանցային գծերը", + "PE.Views.DocumentHolder.textShowGuides": "Ցույց տալ ուղեցույցները", "PE.Views.DocumentHolder.textSlideSettings": "Սահիկի կարգավորումներ", + "PE.Views.DocumentHolder.textSmartGuides": "Խելացի ուղեցույցներ", + "PE.Views.DocumentHolder.textSnapObjects": "Կցեք օբյեկտը ցանցին", "PE.Views.DocumentHolder.textUndo": "Հետարկել", + "PE.Views.DocumentHolder.tipGuides": "Ցույց տալ ուղեցույցները", "PE.Views.DocumentHolder.tipIsLocked": "Այս տարրը ներկայումս խմբագրվում է մեկ այլ օգտվողի կողմից:", "PE.Views.DocumentHolder.toDictionaryText": "Հավելել բառարանում", "PE.Views.DocumentHolder.txtAddBottom": "Դնել ստորին եզրագիծ", @@ -1737,6 +1806,7 @@ "PE.Views.DocumentHolder.txtUnderbar": "Տեքստի տակ գիծ", "PE.Views.DocumentHolder.txtUngroup": "Ապախմբավորել", "PE.Views.DocumentHolder.txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:
Վստա՞հ եք, որ ցանկանում եք շարունակել:", + "PE.Views.DocumentHolder.unicodeText": "Յունիկոդ", "PE.Views.DocumentHolder.vertAlignText": "Ուղղաձիգ հավասարեցում", "PE.Views.DocumentPreview.goToSlideText": "Անցնել լուսապատկերին", "PE.Views.DocumentPreview.slideIndexText": "Սահիկ {0} {1}-ից", @@ -1788,6 +1858,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Տեղ", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Իրավունքներ ունեցող անձինք", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Նյութ", + "PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Պիտակներ", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Վերնագիր", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Վերբեռնվել է", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Փոխել մատչման իրավունքները", @@ -1841,6 +1912,8 @@ "PE.Views.FileMenuPanels.Settings.txtNative": "Հիմնական", "PE.Views.FileMenuPanels.Settings.txtProofing": "Ստուգում ", "PE.Views.FileMenuPanels.Settings.txtPt": "Կետ", + "PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Ցուցադրել «Արագ տպել» կոճակը խմբագրի վերնագրում", + "PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Միացնել բոլորը", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Առանց ծանուցման միացնել բոլոր մակրոները", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Ուղղագրության ստուգում", @@ -1999,7 +2072,11 @@ "PE.Views.PrintWithPreview.txtAllPages": "Բոլոր սլայդները", "PE.Views.PrintWithPreview.txtCurrentPage": "Ընթացիկ սլայդ", "PE.Views.PrintWithPreview.txtCustomPages": "Հարմարեցված տպագրություն", + "PE.Views.PrintWithPreview.txtEmptyTable": "Տպելու բան չկա, քանի որ ներկայացումը դատարկ է", "PE.Views.PrintWithPreview.txtOf": "{0}-ից", + "PE.Views.PrintWithPreview.txtPage": "Սահիկ", + "PE.Views.PrintWithPreview.txtPageNumInvalid": "Սլայդի համարն անվավեր է", + "PE.Views.PrintWithPreview.txtPages": "Սահոցներ", "PE.Views.PrintWithPreview.txtPaperSize": "Թղթի չափը", "PE.Views.PrintWithPreview.txtPrint": "Տպել", "PE.Views.PrintWithPreview.txtPrintPdf": "Տպել PDF-ով", @@ -2463,6 +2540,7 @@ "PE.Views.Toolbar.tipPaste": "Փակցնել", "PE.Views.Toolbar.tipPreview": "Սկսել պատկերահանդեսը", "PE.Views.Toolbar.tipPrint": "Տպել", + "PE.Views.Toolbar.tipPrintQuick": "Արագ տպում", "PE.Views.Toolbar.tipRedo": "Վերարկել", "PE.Views.Toolbar.tipSave": "Պահպանել", "PE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։", @@ -2553,12 +2631,17 @@ "PE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի ոճ", "PE.Views.ViewTab.textLeftMenu": "Ձախ վահանակ", "PE.Views.ViewTab.textNotes": "Նշումներ", + "PE.Views.ViewTab.textRightMenu": "Աջ վահանակ", "PE.Views.ViewTab.textRulers": "Քանոններ", "PE.Views.ViewTab.textShowGridlines": "Ցուցադրել Ցանցային գծերը", + "PE.Views.ViewTab.textShowGuides": "Ցույց տալ ուղեցույցները", + "PE.Views.ViewTab.textSmartGuides": "Խելացի ուղեցույցներ", + "PE.Views.ViewTab.textSnapObjects": "Կցեք օբյեկտը ցանցին", "PE.Views.ViewTab.textStatusBar": "Վիճակագոտի", "PE.Views.ViewTab.textZoom": "Խոշորացնել", "PE.Views.ViewTab.tipFitToSlide": "Հարմարեցնել լուսապատկերին", "PE.Views.ViewTab.tipFitToWidth": "Հարմարեցնել լայնությանը", "PE.Views.ViewTab.tipGridlines": "Ցուցադրել Ցանցային գծերը", + "PE.Views.ViewTab.tipGuides": "Ցույց տալ ուղեցույցները", "PE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 2942538bc..9512a254c 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -416,7 +416,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", + "Common.UI.ButtonColored.textNewColor": "Adăugați o culoare nouă particularizată", "Common.UI.ComboBorderSize.txtNoBorders": "Fără borduri", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Fără borduri", "Common.UI.ComboDataView.emptyComboText": "Fără stiluri", @@ -673,15 +673,15 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Închidere", "Common.Views.ReviewChanges.txtCoAuthMode": "Modul de editare colaborativă", - "Common.Views.ReviewChanges.txtCommentRemAll": "Ștergere comentariu", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Se șterg aceste comentarii", - "Common.Views.ReviewChanges.txtCommentRemMy": "Se șterg comentariile mele", + "Common.Views.ReviewChanges.txtCommentRemAll": "Șterge toate comentariile ", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Ștergere comentarii existente", + "Common.Views.ReviewChanges.txtCommentRemMy": "Șterge comentariile mele", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Se șterg comentariile mele curente", "Common.Views.ReviewChanges.txtCommentRemove": "Ștergere", "Common.Views.ReviewChanges.txtCommentResolve": "Rezolvare", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentarii ca soluționate", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Soluționarea comentariilor curente", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Soluționarea comentariilor mele", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentariile ca rezolvate", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Rezolvare comentarii curente", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Rezolvarea comentariilor mele", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Soluționarea comentariilor mele curente", "Common.Views.ReviewChanges.txtDocLang": "Limbă", "Common.Views.ReviewChanges.txtFinal": "Toate modificările sunt acceptate (Previzualizare)", @@ -1236,52 +1236,52 @@ "PE.Controllers.Toolbar.txtAccent_Hat": "Pălărie", "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", "PE.Controllers.Toolbar.txtAccent_Tilde": "Tildă", - "PE.Controllers.Toolbar.txtBracket_Angle": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze cu separatori", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze cu separatori", - "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Curve": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Paranteze cu separatori", - "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Paranteză unică", + "PE.Controllers.Toolbar.txtBracket_Angle": "Paranteze unghiulare", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze unghiulare cu separator", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze unghiulare cu doi separatori", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unghiulară dreaptă", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unghiulară stângă", + "PE.Controllers.Toolbar.txtBracket_Curve": "Acolade", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Acolade cu separator", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Acoladă dreaptă", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Acoladă stângă", "PE.Controllers.Toolbar.txtBracket_Custom_1": "Sistem (două condiții)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Sistem (trei condiții)", "PE.Controllers.Toolbar.txtBracket_Custom_3": "Stiva de obiecte", - "PE.Controllers.Toolbar.txtBracket_Custom_4": "Stiva de obiecte", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Obiect stivă în paranteze", "PE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplu de sistem", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binominal", - "PE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binominal", - "PE.Controllers.Toolbar.txtBracket_Line": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_LineDouble": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_LowLim": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză unică", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficientul binomial în paranteze unghiulare", + "PE.Controllers.Toolbar.txtBracket_Line": "Bare verticale", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Bara verticală din dreapta", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Bară verticală din stânga", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Bare verticale duble", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Bara verticală dublă din dreapta", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Bară verticală dublă din stânga", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Paranteză dreaptă inferioară", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză dreaptă inferioară din dreapta", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză dreaptă inferioară din stânga", "PE.Controllers.Toolbar.txtBracket_Round": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separatori", - "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Square": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_UppLim": "Paranteze", - "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză unică", - "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză unică", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separator", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză dreaptă", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză stângă", + "PE.Controllers.Toolbar.txtBracket_Square": "Paranteze pătrate", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Substituent între două paranteze pătrate din dreapta", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze pătrate inverse", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză pătrată dreaptă", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză pătrată stângă", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Substituent între două paranteze pătrate din stânga", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze pătrate duble", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză pătrată dreaptă dublă", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză pătrată dublă din stânga", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Paranteză dreaptă superioară", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză dreaptă superioară din dreapta", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză dreaptă superioară din stânga", "PE.Controllers.Toolbar.txtFractionDiagonal": "Fracție oblică", - "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferențială", - "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferențială", - "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferențială", - "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferențială", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "dx supra dy", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y supra cap delta x", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "y parțial supra x parțial", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "delta y supra delta x", "PE.Controllers.Toolbar.txtFractionHorizontal": "Fracție liniară", "PE.Controllers.Toolbar.txtFractionPi_2": "Pi supra 2", "PE.Controllers.Toolbar.txtFractionSmall": "Fracție mică", @@ -1317,63 +1317,63 @@ "PE.Controllers.Toolbar.txtIntegral_dtheta": "Diferențială de theta", "PE.Controllers.Toolbar.txtIntegral_dx": "Diferențială de x", "PE.Controllers.Toolbar.txtIntegral_dy": "Diferențială de y", - "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală cu limite stivuite", "PE.Controllers.Toolbar.txtIntegralDouble": "Integrală dublă", - "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă", - "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă cu limite stivuite", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă cu limite", "PE.Controllers.Toolbar.txtIntegralOriented": "Inegrală de contur", - "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Inegrală de contur", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integrală de contur cu limite stivuite", "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integrală de suprafața", - "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafața", - "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafața", - "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Inegrală de contur", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafață cu limite stivuite", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafață cu limite", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integrală de contur cu limite", "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integrală de volum", - "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum", - "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum", - "PE.Controllers.Toolbar.txtIntegralSubSup": "Integrală", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum cu limite stivuite", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum cu limite", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Integrală cu limite", "PE.Controllers.Toolbar.txtIntegralTriple": "Integrală triplă", - "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă", - "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă cu limite stivuite", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă cu limite", "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Și logic", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic cu limite pentru indice/exponent", "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coprodus", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produs", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Reuniune", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus cu limite pentru indice/exponent", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă de k combinări din n luate câte k", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă de la i egal cu zero la n", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemplu de sumă folosind doi indici", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemplu de produs", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemplu de reuniune", "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Sau logic", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic cu limite pentru indice/exponent", "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersecție", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție cu limite pentru indice/exponent", "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Produs", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs cu limite pentru indice/exponent", "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă cu limite pentru indice/exponent", "PE.Controllers.Toolbar.txtLargeOperator_Union": "Reuniune", - "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune", - "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune", - "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune", - "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune cu limită inferioară", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune cu limite", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune cu limită inferioară pentru indice", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune cu limite pentru indice/exponent", "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplu de limită", "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplu de maxim", "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limită", @@ -1386,10 +1386,10 @@ "PE.Controllers.Toolbar.txtMatrix_1_3": "Matrice goală 1x3", "PE.Controllers.Toolbar.txtMatrix_2_1": "Matrice goală 2x1 ", "PE.Controllers.Toolbar.txtMatrix_2_2": "Matrice goală 2x2", - "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală cu paranteze drepte", - "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice goală cu paranteze drepte", - "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală cu paranteze drepte", - "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală cu paranteze drepte", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală de 2x2 între bare verticale duble", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Determinant gol de 2x2", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală de 2x2 între paranteze", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală de 2x2 între paranteze drepte", "PE.Controllers.Toolbar.txtMatrix_2_3": "Matrice goală 2x3", "PE.Controllers.Toolbar.txtMatrix_3_1": "Matrice goală 3x1", "PE.Controllers.Toolbar.txtMatrix_3_2": "Matrice goală 3x2", @@ -1398,12 +1398,12 @@ "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Puncte pe linia de mijloc", "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Puncte pe diagonală", "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Puncte pe verticală", - "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rare", - "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rare", - "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate 2x2", - "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate 3x3", - "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate 3x3", - "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate 3x3", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rară în paranteze", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rară în paranteze drepte", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate de 2x2 cu zerouri", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate de 2x2 cu celule goale în afara diagonalei", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate de 3x3 cu zerouri", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate de 3x3 cu celule goale în afara diagonalei", "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Săgeată deasupra de la dreapta la stînga", "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Săgeată dedesupt spre stânga", @@ -1415,8 +1415,8 @@ "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta rezultă", "PE.Controllers.Toolbar.txtOperator_Definition": "Egal prin definiție", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egal", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată deasupra de la dreapta la stînga", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dublă dedesubt de la dreapta la stînga", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată dublă deasupra de la dreapta la stînga", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Săgeată dedesupt spre stânga", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Săgeată deasupra spre stânga ", "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Săgeată dedesubt spre dreapta", @@ -1425,16 +1425,16 @@ "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus egal", "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus egal", "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Măsurat prin", - "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Partea din dreapta a formulei pătratice", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Rădăcina pătrată din a pătrat plus b pătrat", "PE.Controllers.Toolbar.txtRadicalRoot_2": "Rădăcina pătrată de ordin", "PE.Controllers.Toolbar.txtRadicalRoot_3": "Rădăcina cubică", "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radicalul de ordin", "PE.Controllers.Toolbar.txtRadicalSqrt": "Rădăcină pătrată", - "PE.Controllers.Toolbar.txtScriptCustom_1": "Scriptul", - "PE.Controllers.Toolbar.txtScriptCustom_2": "Scriptul", - "PE.Controllers.Toolbar.txtScriptCustom_3": "Scriptul", - "PE.Controllers.Toolbar.txtScriptCustom_4": "Scriptul", + "PE.Controllers.Toolbar.txtScriptCustom_1": "x indice y la pătrat", + "PE.Controllers.Toolbar.txtScriptCustom_2": "e la minus i omega t", + "PE.Controllers.Toolbar.txtScriptCustom_3": "x la pătrat", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Y exponent stânga n indice stânga unu", "PE.Controllers.Toolbar.txtScriptSub": "Indice", "PE.Controllers.Toolbar.txtScriptSubSup": "Indice-exponenet", "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Indice-exponent din stânga", @@ -2540,6 +2540,7 @@ "PE.Views.Toolbar.tipPaste": "Lipire", "PE.Views.Toolbar.tipPreview": "Pornire expunere diapozitive", "PE.Views.Toolbar.tipPrint": "Imprimare", + "PE.Views.Toolbar.tipPrintQuick": "Imprimare rapidă", "PE.Views.Toolbar.tipRedo": "Refacere", "PE.Views.Toolbar.tipSave": "Salvează", "PE.Views.Toolbar.tipSaveCoauth": "Salvați modificările dvs. ca alți utilizatorii să le vadă.", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 1c47c88e4..90d0b2a31 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -1236,52 +1236,52 @@ "PE.Controllers.Toolbar.txtAccent_Hat": "Крышка", "PE.Controllers.Toolbar.txtAccent_Smile": "Значок краткости", "PE.Controllers.Toolbar.txtAccent_Tilde": "Тильда", - "PE.Controllers.Toolbar.txtBracket_Angle": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Скобки и разделители", - "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Скобки и разделители", - "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Curve": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Скобки и разделители", - "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Отдельная скобка", + "PE.Controllers.Toolbar.txtBracket_Angle": "Угловые скобки", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Угловые скобки с разделителем", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Угловые скобки с двумя разделителями", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Правая угловая скобка", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Левая угловая скобка", + "PE.Controllers.Toolbar.txtBracket_Curve": "Фигурные скобки", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Фигурные скобки с разделителем", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Правая фигурная скобка", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Левая фигурная скобка", "PE.Controllers.Toolbar.txtBracket_Custom_1": "Наборы условий (два условия)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Наборы условий (три условия)", "PE.Controllers.Toolbar.txtBracket_Custom_3": "Стопка объектов", - "PE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов в круглых скобках", "PE.Controllers.Toolbar.txtBracket_Custom_5": "Наборы условий (пример)", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Биномиальный коэффициент", - "PE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент", - "PE.Controllers.Toolbar.txtBracket_Line": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_LineDouble": "Скобки", - "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_LowLim": "Скобки", - "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Round": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Скобки и разделители", - "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Square": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Скобки", - "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Скобки", - "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Скобки", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_UppLim": "Скобки", - "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Отдельная скобка", - "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Отдельная скобка", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент в угловых скобках", + "PE.Controllers.Toolbar.txtBracket_Line": "Вертикальные черты", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Правая вертикальная черта", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Левая вертикальная черта", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Двойные вертикальные черты", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Правая двойная вертикальная черта", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Левая двойная вертикальная черта", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Закрытые снизу скобки", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Правый предельный уровень снизу", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Левый предельный уровень снизу", + "PE.Controllers.Toolbar.txtBracket_Round": "Круглые скобки", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Круглые скобки с разделителем", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Правая круглая скобка", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Левая круглая скобка", + "PE.Controllers.Toolbar.txtBracket_Square": "Квадратные скобки", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Заполнитель между двумя правыми квадратными скобками", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Перевернутые квадратные скобки", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Правая квадратная скобка", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Левая квадратная скобка", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Заполнитель между двумя левыми квадратными скобками", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Двойные квадратные скобки", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Правая двойная квадратная скобка", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Левая двойная квадратная скобка", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Закрытые сверху скобки", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Правый предельный уровень сверху", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Левый предельный уровень сверху", "PE.Controllers.Toolbar.txtFractionDiagonal": "Диагональная простая дробь", - "PE.Controllers.Toolbar.txtFractionDifferential_1": "Дифференциал", - "PE.Controllers.Toolbar.txtFractionDifferential_2": "Дифференциал", - "PE.Controllers.Toolbar.txtFractionDifferential_3": "Дифференциал", - "PE.Controllers.Toolbar.txtFractionDifferential_4": "Дифференциал", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "dy над dx", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "пересечение дельты y над пересечением дельты x", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "частичная y по частичной x", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "дельта y через дельта x", "PE.Controllers.Toolbar.txtFractionHorizontal": "Горизонтальная простая дробь", "PE.Controllers.Toolbar.txtFractionPi_2": "Пи разделить на два", "PE.Controllers.Toolbar.txtFractionSmall": "Маленькая простая дробь", @@ -1317,63 +1317,63 @@ "PE.Controllers.Toolbar.txtIntegral_dtheta": "Дифференциал dθ", "PE.Controllers.Toolbar.txtIntegral_dx": "Дифференциал dx", "PE.Controllers.Toolbar.txtIntegral_dy": "Дифференциал dy", - "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл с пределами с накоплением", "PE.Controllers.Toolbar.txtIntegralDouble": "Двойной интеграл", - "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл", - "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл с пределами с накоплением", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл с пределами", "PE.Controllers.Toolbar.txtIntegralOriented": "Контурный интеграл", - "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл с пределами с накоплением", "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Интеграл по поверхности", - "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности", - "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности", - "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности с пределами с накоплением", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности с пределами", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл с пределами", "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Интеграл по объему", - "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему", - "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему", - "PE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему с пределами с накоплением", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему с пределами", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл с пределами", "PE.Controllers.Toolbar.txtIntegralTriple": "Тройной интеграл", - "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл", - "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Конъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Конъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Конъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Конъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Конъюнкция", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл с пределами с накоплением", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Логическое И", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Логическое И с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Логическое И с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Логическое И с нижним пределом подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Логическое И с пределом подстрочного/надстрочного знака", "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Сопроизведение", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение", - "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Произведение", - "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Объединение", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Дизъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Дизъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Дизъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Дизъюнкция", - "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Дизъюнкция", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение с нижним пределом подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение с пределами подстрочного/надстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Суммирование от k от n с выбором k", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Суммирование от i равно ноль до n", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Пример суммирования с использованием двух индексов", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Пример произведения", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Пример объединения", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Логическое Или", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Логическое ИЛИ с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Логическое ИЛИ с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Логическое ИЛИ с нижним пределом подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Логическое ИЛИ с пределами подстрочного/надстрочного знака", "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Пересечение", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение", - "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение с нижним пределом в виде подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение с пределами подстрочного/надстрочного знака", "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Произведение", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение", - "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение с нижним пределом подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение с пределами подстрочного/надстрочного знака", "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Сумма", - "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Сумма", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Суммирование с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Суммирование с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Суммирование с нижним пределом подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Суммирование с пределами подстрочного/надстрочного знака", "PE.Controllers.Toolbar.txtLargeOperator_Union": "Объединение", - "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение", - "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение", - "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение", - "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение с нижним пределом", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение с пределами", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение с нижним пределом подстрочного знака", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение с пределами подстрочного/надстрочного знака", "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Пример предела", "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Пример максимума", "PE.Controllers.Toolbar.txtLimitLog_Lim": "Предел", @@ -1386,10 +1386,10 @@ "PE.Controllers.Toolbar.txtMatrix_1_3": "Пустая матрица 1 x 3", "PE.Controllers.Toolbar.txtMatrix_2_1": "Пустая матрица 2 x 1", "PE.Controllers.Toolbar.txtMatrix_2_2": "Пустая матрица 2 x 2", - "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица со скобками", - "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустая матрица со скобками", - "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица со скобками", - "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица со скобками", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица 2 х 2 в двойных вертикальных чертах", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустой определитель 2 x 2", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица 2 х 2 в круглых скобках", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица 2 х 2 в скобках", "PE.Controllers.Toolbar.txtMatrix_2_3": "Пустая матрица 2 x 3", "PE.Controllers.Toolbar.txtMatrix_3_1": "Пустая матрица 3 x 1", "PE.Controllers.Toolbar.txtMatrix_3_2": "Пустая матрица 3 x 2", @@ -1398,12 +1398,12 @@ "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Точки посередине", "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Точки по диагонали", "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Точки по вертикали", - "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица", - "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица", - "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2", - "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 3 x 3", - "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3", - "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица в круглых скобках", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица в квадратных скобках", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2 с нулями", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 2 x 2 с пустыми ячейками не на диагонали", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3 с нулями", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3 с пустыми ячейками не на диагонали", "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Стрелка вправо-влево снизу", "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Стрелка вправо-влево сверху", "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Стрелка влево снизу", @@ -1415,8 +1415,8 @@ "PE.Controllers.Toolbar.txtOperator_Custom_2": "Дельта выхода", "PE.Controllers.Toolbar.txtOperator_Definition": "Равно по определению", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Дельта равна", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Стрелка вправо-влево снизу", - "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Стрелка вправо-влево сверху", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Двойная стрелка вправо-влево снизу", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Двойная стрелка вправо-влево сверху", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Стрелка влево снизу", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Стрелка влево сверху", "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Стрелка вправо снизу", @@ -1425,16 +1425,16 @@ "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Минус равно", "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Плюс равно", "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Единица измерения", - "PE.Controllers.Toolbar.txtRadicalCustom_1": "Радикал", - "PE.Controllers.Toolbar.txtRadicalCustom_2": "Радикал", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Правая часть квадратного уравнения", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Квадратный корень из квадрата плюс b квадрат", "PE.Controllers.Toolbar.txtRadicalRoot_2": "Квадратный корень со степенью", "PE.Controllers.Toolbar.txtRadicalRoot_3": "Кубический корень", "PE.Controllers.Toolbar.txtRadicalRoot_n": "Радикал со степенью", "PE.Controllers.Toolbar.txtRadicalSqrt": "Квадратный корень", - "PE.Controllers.Toolbar.txtScriptCustom_1": "Индекс", - "PE.Controllers.Toolbar.txtScriptCustom_2": "Индекс", - "PE.Controllers.Toolbar.txtScriptCustom_3": "Индекс", - "PE.Controllers.Toolbar.txtScriptCustom_4": "Индекс", + "PE.Controllers.Toolbar.txtScriptCustom_1": "x в степени квадрата y", + "PE.Controllers.Toolbar.txtScriptCustom_2": "e в степени -iωt", + "PE.Controllers.Toolbar.txtScriptCustom_3": "квадрат x", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Y, надстрочный индекс n слева, подстрочный индекс 1 справа", "PE.Controllers.Toolbar.txtScriptSub": "Нижний индекс", "PE.Controllers.Toolbar.txtScriptSubSup": "Нижний и верхний индексы", "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Нижний и верхний индексы слева", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 023516c2e..bbdab37cf 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -266,7 +266,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Create a copy", "Common.Translation.warnFileLockedBtnView": "Open for viewing", "Common.UI.ButtonColored.textAutoColor": "Automatic", - "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", + "Common.UI.ButtonColored.textNewColor": "Add new custom color", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -295,9 +295,9 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace all", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", - "Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors", - "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", - "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", + "Common.UI.ThemeColorPalette.textRecentColors": "Recent colors", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme colors", "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeContrastDark": "Contrast Dark", "Common.UI.Themes.txtThemeDark": "Dark", @@ -519,15 +519,15 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", - "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", - "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remove all comments", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove current comments", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remove my comments", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", "Common.Views.ReviewChanges.txtCommentRemove": "Remove", "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", "Common.Views.ReviewChanges.txtDocLang": "Language", "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", @@ -655,9 +655,12 @@ "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", "SSE.Controllers.DataTab.strSheet": "Sheet", + "SSE.Controllers.DataTab.textAddExternalData": "The link to an external source has been added. You can update such links in the Data tab.", "SSE.Controllers.DataTab.textColumns": "Columns", + "SSE.Controllers.DataTab.textDontUpdate": "Don't Update", "SSE.Controllers.DataTab.textEmptyUrl": "You need to specify URL.", "SSE.Controllers.DataTab.textRows": "Rows", + "SSE.Controllers.DataTab.textUpdate": "Update", "SSE.Controllers.DataTab.textWizard": "Text to Columns", "SSE.Controllers.DataTab.txtDataValidation": "Data Validation", "SSE.Controllers.DataTab.txtErrorExternalLink": "Error: updating is failed", @@ -670,9 +673,6 @@ "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", "SSE.Controllers.DataTab.warnUpdateExternalData": "This workbook contains links to one or more external sources that could be unsafe.
If you trust the links, update them to get the latest data.", - "SSE.Controllers.DataTab.textUpdate": "Update", - "SSE.Controllers.DataTab.textDontUpdate": "Don't Update", - "SSE.Controllers.DataTab.textAddExternalData": "The link to an external source has been added. You can update such links in the Data tab.", "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", @@ -891,6 +891,7 @@ "SSE.Controllers.Main.errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet.
To make a change, unprotect the sheet. You might be requested to enter a password.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.", "SSE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
When you click the 'OK' button, you will be prompted to download the document.", + "SSE.Controllers.Main.errorConvertXml": "The file has an unsupported format.
Only XML Spreadsheet 2003 format can be used.", "SSE.Controllers.Main.errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", "SSE.Controllers.Main.errorCountArg": "An error in the entered formula.
Incorrect number of arguments is used.", "SSE.Controllers.Main.errorCountArgExceed": "An error in the entered formula.
Number of arguments is exceeded.", @@ -1034,7 +1035,6 @@ "SSE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "SSE.Controllers.Main.errorConvertXml": "The file has an unsupported format.
Only XML Spreadsheet 2003 format can be used.", "SSE.Controllers.Main.textUndo": "Undo", "SSE.Controllers.Main.textYes": "Yes", "SSE.Controllers.Main.titleLicenseExp": "License expired", @@ -1042,7 +1042,7 @@ "SSE.Controllers.Main.txtAccent": "Accent", "SSE.Controllers.Main.txtAll": "(All)", "SSE.Controllers.Main.txtArt": "Your text here", - "SSE.Controllers.Main.txtBasicShapes": "Basic Shapes", + "SSE.Controllers.Main.txtBasicShapes": "Basic shapes", "SSE.Controllers.Main.txtBlank": "(blank)", "SSE.Controllers.Main.txtButtons": "Buttons", "SSE.Controllers.Main.txtByField": "%1 of %2", @@ -1057,7 +1057,7 @@ "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", "SSE.Controllers.Main.txtErrorLoadHistory": "History loading failed", - "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "SSE.Controllers.Main.txtFiguredArrows": "Figured arrows", "SSE.Controllers.Main.txtFile": "File", "SSE.Controllers.Main.txtGrandTotal": "Grand Total", "SSE.Controllers.Main.txtGroup": "Group", @@ -1343,7 +1343,7 @@ "SSE.Controllers.Toolbar.textInsert": "Insert", "SSE.Controllers.Toolbar.textIntegral": "Integrals", "SSE.Controllers.Toolbar.textLargeOperator": "Large Operators", - "SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limits and Logarithms", "SSE.Controllers.Toolbar.textLongOperation": "Long Operation", "SSE.Controllers.Toolbar.textMatrix": "Matrices", "SSE.Controllers.Toolbar.textOperator": "Operators", @@ -1383,12 +1383,12 @@ "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "SSE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separator", "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", "SSE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", - "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separator", "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", @@ -1408,15 +1408,15 @@ "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", "SSE.Controllers.Toolbar.txtBracket_Round": "Parentheses", - "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separators", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separator", "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", "SSE.Controllers.Toolbar.txtBracket_Square": "Square brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Right square brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Right and left square brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder between two right square brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted square brackets", "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Left square brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder between two left square brackets", "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", @@ -1496,26 +1496,26 @@ "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! Invalid cell range", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge with lower limit", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge with limits", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge with subscript lower limit", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge with subscript/superscript limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation over k of n choose k", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation example using two indices", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee with lower limit", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee with limits", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee with subscript lower limit", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee with subscript/superscript limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with limits", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with subscript lower limit", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with subscript/superscript limits", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", @@ -1549,10 +1549,10 @@ "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2 by 2 matrix in double vertical bars", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2 by 2 determinant", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty 2 by 2 matrix in parentheses", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty 2 by 2 matrix in brackets", "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", @@ -1561,12 +1561,12 @@ "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix in parentheses", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix in brackets", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix with zeros", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 identity matrix with blank off-diagonal cells", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix with zeros", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix with blank off-diagonal cells", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", @@ -1578,8 +1578,8 @@ "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", "SSE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left double arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left double arrow above", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", @@ -1588,7 +1588,7 @@ "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of Quadratic Formula", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of quadratic formula", "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", @@ -2035,13 +2035,13 @@ "SSE.Views.DataTab.mniFromFile": "From Local TXT/CSV", "SSE.Views.DataTab.mniFromUrl": "From TXT/CSV Web Address", "SSE.Views.DataTab.mniFromXMLFile": "From Local XML", - "SSE.Views.DataTab.textBelow": "Summary Rows Below Detail", - "SSE.Views.DataTab.textClear": "Clear Outline", - "SSE.Views.DataTab.textColumns": "Ungroup Columns", - "SSE.Views.DataTab.textGroupColumns": "Group Columns", - "SSE.Views.DataTab.textGroupRows": "Group Rows", - "SSE.Views.DataTab.textRightOf": "Summary Columns To Right Of Detail", - "SSE.Views.DataTab.textRows": "Ungroup Rows", + "SSE.Views.DataTab.textBelow": "Summary rows below detail", + "SSE.Views.DataTab.textClear": "Clear outline", + "SSE.Views.DataTab.textColumns": "Ungroup columns", + "SSE.Views.DataTab.textGroupColumns": "Group columns", + "SSE.Views.DataTab.textGroupRows": "Group rows", + "SSE.Views.DataTab.textRightOf": "Summary columns to right of detail", + "SSE.Views.DataTab.textRows": "Ungroup rows", "SSE.Views.DataTab.tipCustomSort": "Custom sort", "SSE.Views.DataTab.tipDataFromText": "Get data from file", "SSE.Views.DataTab.tipDataValidation": "Data validation", @@ -2950,24 +2950,24 @@ "SSE.Views.PivotGroupDialog.txtTitle": "Grouping", "SSE.Views.PivotSettings.textAdvanced": "Show advanced settings", "SSE.Views.PivotSettings.textColumns": "Columns", - "SSE.Views.PivotSettings.textFields": "Select Fields", + "SSE.Views.PivotSettings.textFields": "Select fields", "SSE.Views.PivotSettings.textFilters": "Filters", "SSE.Views.PivotSettings.textRows": "Rows", "SSE.Views.PivotSettings.textValues": "Values", - "SSE.Views.PivotSettings.txtAddColumn": "Add to Columns", - "SSE.Views.PivotSettings.txtAddFilter": "Add to Filters", + "SSE.Views.PivotSettings.txtAddColumn": "Add to columns", + "SSE.Views.PivotSettings.txtAddFilter": "Add to filters", "SSE.Views.PivotSettings.txtAddRow": "Add to Rows", "SSE.Views.PivotSettings.txtAddValues": "Add to Values", - "SSE.Views.PivotSettings.txtFieldSettings": "Field Settings", - "SSE.Views.PivotSettings.txtMoveBegin": "Move to Beginning", - "SSE.Views.PivotSettings.txtMoveColumn": "Move to Columns", - "SSE.Views.PivotSettings.txtMoveDown": "Move Down", - "SSE.Views.PivotSettings.txtMoveEnd": "Move to End", - "SSE.Views.PivotSettings.txtMoveFilter": "Move to Filters", - "SSE.Views.PivotSettings.txtMoveRow": "Move to Rows", - "SSE.Views.PivotSettings.txtMoveUp": "Move Up", - "SSE.Views.PivotSettings.txtMoveValues": "Move to Values", - "SSE.Views.PivotSettings.txtRemove": "Remove Field", + "SSE.Views.PivotSettings.txtFieldSettings": "Field settings", + "SSE.Views.PivotSettings.txtMoveBegin": "Move to beginning", + "SSE.Views.PivotSettings.txtMoveColumn": "Move to columns", + "SSE.Views.PivotSettings.txtMoveDown": "Move down", + "SSE.Views.PivotSettings.txtMoveEnd": "Move to end", + "SSE.Views.PivotSettings.txtMoveFilter": "Move to filters", + "SSE.Views.PivotSettings.txtMoveRow": "Move to rows", + "SSE.Views.PivotSettings.txtMoveUp": "Move up", + "SSE.Views.PivotSettings.txtMoveValues": "Move to values", + "SSE.Views.PivotSettings.txtRemove": "Remove field", "SSE.Views.PivotSettingsAdvanced.strLayout": "Name and layout", "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative text", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description", @@ -2993,26 +2993,26 @@ "SSE.Views.PivotSettingsAdvanced.txtName": "Name", "SSE.Views.PivotTable.capBlankRows": "Blank Rows", "SSE.Views.PivotTable.capGrandTotals": "Grand Totals", - "SSE.Views.PivotTable.capLayout": "Report Layout", + "SSE.Views.PivotTable.capLayout": "Report layout", "SSE.Views.PivotTable.capSubtotals": "Subtotals", - "SSE.Views.PivotTable.mniBottomSubtotals": "Show all Subtotals at Bottom of Group", - "SSE.Views.PivotTable.mniInsertBlankLine": "Insert Blank Line after Each Item", - "SSE.Views.PivotTable.mniLayoutCompact": "Show in Compact Form", - "SSE.Views.PivotTable.mniLayoutNoRepeat": "Don't Repeat All Item Labels", - "SSE.Views.PivotTable.mniLayoutOutline": "Show in Outline Form", - "SSE.Views.PivotTable.mniLayoutRepeat": "Repeat All Item Labels", - "SSE.Views.PivotTable.mniLayoutTabular": "Show in Tabular Form", - "SSE.Views.PivotTable.mniNoSubtotals": "Don't Show Subtotals", - "SSE.Views.PivotTable.mniOffTotals": "Off for Rows and Columns", - "SSE.Views.PivotTable.mniOnColumnsTotals": "On for Columns Only", - "SSE.Views.PivotTable.mniOnRowsTotals": "On for Rows Only", - "SSE.Views.PivotTable.mniOnTotals": "On for Rows and Columns", - "SSE.Views.PivotTable.mniRemoveBlankLine": "Remove Blank Line after Each Item", - "SSE.Views.PivotTable.mniTopSubtotals": "Show all Subtotals at Top of Group", + "SSE.Views.PivotTable.mniBottomSubtotals": "Show all subtotals at bottom of group", + "SSE.Views.PivotTable.mniInsertBlankLine": "Insert blank line after each item", + "SSE.Views.PivotTable.mniLayoutCompact": "Show in compact form", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Don't repeat all item labels", + "SSE.Views.PivotTable.mniLayoutOutline": "Show in outline form", + "SSE.Views.PivotTable.mniLayoutRepeat": "Repeat all item labels", + "SSE.Views.PivotTable.mniLayoutTabular": "Show in tabular form", + "SSE.Views.PivotTable.mniNoSubtotals": "Don't show subtotals", + "SSE.Views.PivotTable.mniOffTotals": "Off for rows and columns", + "SSE.Views.PivotTable.mniOnColumnsTotals": "On for columns only", + "SSE.Views.PivotTable.mniOnRowsTotals": "On for rows only", + "SSE.Views.PivotTable.mniOnTotals": "On for rows and columns", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Remove blank line after each item", + "SSE.Views.PivotTable.mniTopSubtotals": "Show all subtotals at top of group", "SSE.Views.PivotTable.textColBanded": "Banded Columns", "SSE.Views.PivotTable.textColHeader": "Column Headers", "SSE.Views.PivotTable.textRowBanded": "Banded Rows", - "SSE.Views.PivotTable.textRowHeader": "Row Headers", + "SSE.Views.PivotTable.textRowHeader": "Row headers", "SSE.Views.PivotTable.tipCreatePivot": "Insert Pivot Table", "SSE.Views.PivotTable.tipGrandTotals": "Show or hide grand totals", "SSE.Views.PivotTable.tipRefresh": "Update the information from data source", @@ -3026,7 +3026,7 @@ "SSE.Views.PivotTable.txtGroupPivot_Medium": "Medium", "SSE.Views.PivotTable.txtPivotTable": "Pivot Table", "SSE.Views.PivotTable.txtRefresh": "Refresh", - "SSE.Views.PivotTable.txtRefreshAll": "Refresh All", + "SSE.Views.PivotTable.txtRefreshAll": "Refresh all", "SSE.Views.PivotTable.txtSelect": "Select", "SSE.Views.PivotTable.txtTable_PivotStyleDark": "Pivot Table Style Dark", "SSE.Views.PivotTable.txtTable_PivotStyleLight": "Pivot Table Style Light", @@ -3234,7 +3234,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "Pattern", "SSE.Views.ShapeSettings.textPosition": "Position", "SSE.Views.ShapeSettings.textRadial": "Radial", - "SSE.Views.ShapeSettings.textRecentlyUsed": "Recently Used", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Recently used", "SSE.Views.ShapeSettings.textRotate90": "Rotate 90°", "SSE.Views.ShapeSettings.textRotation": "Rotation", "SSE.Views.ShapeSettings.textSelectImage": "Select Picture", @@ -3638,7 +3638,7 @@ "SSE.Views.Toolbar.mniImageFromFile": "Image from File", "SSE.Views.Toolbar.mniImageFromStorage": "Image from Storage", "SSE.Views.Toolbar.mniImageFromUrl": "Image from URL", - "SSE.Views.Toolbar.textAddPrintArea": "Add to Print Area", + "SSE.Views.Toolbar.textAddPrintArea": "Add to print area", "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", "SSE.Views.Toolbar.textAlignCenter": "Align Center", "SSE.Views.Toolbar.textAlignJust": "Justified", @@ -3650,66 +3650,66 @@ "SSE.Views.Toolbar.textAuto": "Auto", "SSE.Views.Toolbar.textAutoColor": "Automatic", "SSE.Views.Toolbar.textBold": "Bold", - "SSE.Views.Toolbar.textBordersColor": "Border Color", - "SSE.Views.Toolbar.textBordersStyle": "Border Style", + "SSE.Views.Toolbar.textBordersColor": "Border color", + "SSE.Views.Toolbar.textBordersStyle": "Border style", "SSE.Views.Toolbar.textBottom": "Bottom: ", - "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", - "SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders", - "SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area", - "SSE.Views.Toolbar.textClearRule": "Clear Rules", - "SSE.Views.Toolbar.textClockwise": "Angle Clockwise", - "SSE.Views.Toolbar.textColorScales": "Color Scales", - "SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise", + "SSE.Views.Toolbar.textBottomBorders": "Bottom borders", + "SSE.Views.Toolbar.textCenterBorders": "Inside vertical borders", + "SSE.Views.Toolbar.textClearPrintArea": "Clear print area", + "SSE.Views.Toolbar.textClearRule": "Clear rules", + "SSE.Views.Toolbar.textClockwise": "Angle clockwise", + "SSE.Views.Toolbar.textColorScales": "Color scales", + "SSE.Views.Toolbar.textCounterCw": "Angle counterclockwise", "SSE.Views.Toolbar.textCustom": "Custom", - "SSE.Views.Toolbar.textDataBars": "Data Bars", - "SSE.Views.Toolbar.textDelLeft": "Shift Cells Left", - "SSE.Views.Toolbar.textDelUp": "Shift Cells Up", - "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal Down Border", - "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", + "SSE.Views.Toolbar.textDataBars": "Data bars", + "SSE.Views.Toolbar.textDelLeft": "Shift cells left", + "SSE.Views.Toolbar.textDelUp": "Shift cells up", + "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal down border", + "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal up border", "SSE.Views.Toolbar.textDone": "Done", "SSE.Views.Toolbar.textEditVA": "Edit Visible Area", - "SSE.Views.Toolbar.textEntireCol": "Entire Column", - "SSE.Views.Toolbar.textEntireRow": "Entire Row", + "SSE.Views.Toolbar.textEntireCol": "Entire column", + "SSE.Views.Toolbar.textEntireRow": "Entire row", "SSE.Views.Toolbar.textFewPages": "pages", "SSE.Views.Toolbar.textHeight": "Height", "SSE.Views.Toolbar.textHideVA": "Hide Visible Area", - "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", - "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", - "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", - "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", + "SSE.Views.Toolbar.textHorizontal": "Horizontal text", + "SSE.Views.Toolbar.textInsDown": "Shift cells down", + "SSE.Views.Toolbar.textInsideBorders": "Inside borders", + "SSE.Views.Toolbar.textInsRight": "Shift cells right", "SSE.Views.Toolbar.textItalic": "Italic", "SSE.Views.Toolbar.textItems": "Items", "SSE.Views.Toolbar.textLandscape": "Landscape", "SSE.Views.Toolbar.textLeft": "Left: ", - "SSE.Views.Toolbar.textLeftBorders": "Left Borders", - "SSE.Views.Toolbar.textManageRule": "Manage Rules", + "SSE.Views.Toolbar.textLeftBorders": "Left borders", + "SSE.Views.Toolbar.textManageRule": "Manage rules", "SSE.Views.Toolbar.textManyPages": "pages", "SSE.Views.Toolbar.textMarginsLast": "Last Custom", "SSE.Views.Toolbar.textMarginsNarrow": "Narrow", "SSE.Views.Toolbar.textMarginsNormal": "Normal", "SSE.Views.Toolbar.textMarginsWide": "Wide", - "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", + "SSE.Views.Toolbar.textMiddleBorders": "Inside horizontal borders", "SSE.Views.Toolbar.textMoreFormats": "More formats", "SSE.Views.Toolbar.textMorePages": "More pages", - "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", - "SSE.Views.Toolbar.textNewRule": "New Rule", - "SSE.Views.Toolbar.textNoBorders": "No Borders", + "SSE.Views.Toolbar.textNewColor": "Add new custom color", + "SSE.Views.Toolbar.textNewRule": "New rule", + "SSE.Views.Toolbar.textNoBorders": "No borders", "SSE.Views.Toolbar.textOnePage": "page", - "SSE.Views.Toolbar.textOutBorders": "Outside Borders", + "SSE.Views.Toolbar.textOutBorders": "Outside borders", "SSE.Views.Toolbar.textPageMarginsCustom": "Custom margins", "SSE.Views.Toolbar.textPortrait": "Portrait", "SSE.Views.Toolbar.textPrint": "Print", - "SSE.Views.Toolbar.textPrintGridlines": "Print gridlines", + "SSE.Views.Toolbar.textPrintGridlines": "Print Gridlines", "SSE.Views.Toolbar.textPrintHeadings": "Print Headings", "SSE.Views.Toolbar.textPrintOptions": "Print Settings", "SSE.Views.Toolbar.textRight": "Right: ", - "SSE.Views.Toolbar.textRightBorders": "Right Borders", - "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", - "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", + "SSE.Views.Toolbar.textRightBorders": "Right borders", + "SSE.Views.Toolbar.textRotateDown": "Rotate text down", + "SSE.Views.Toolbar.textRotateUp": "Rotate text up", "SSE.Views.Toolbar.textScale": "Scale", "SSE.Views.Toolbar.textScaleCustom": "Custom", "SSE.Views.Toolbar.textSelection": "From current selection", - "SSE.Views.Toolbar.textSetPrintArea": "Set Print Area", + "SSE.Views.Toolbar.textSetPrintArea": "Set print area", "SSE.Views.Toolbar.textShowVA": "Show Visible Area", "SSE.Views.Toolbar.textStrikeout": "Strikethrough", "SSE.Views.Toolbar.textSubscript": "Subscript", @@ -3728,9 +3728,9 @@ "SSE.Views.Toolbar.textThisSheet": "From this worksheet", "SSE.Views.Toolbar.textThisTable": "From this table", "SSE.Views.Toolbar.textTop": "Top: ", - "SSE.Views.Toolbar.textTopBorders": "Top Borders", + "SSE.Views.Toolbar.textTopBorders": "Top borders", "SSE.Views.Toolbar.textUnderline": "Underline", - "SSE.Views.Toolbar.textVertical": "Vertical Text", + "SSE.Views.Toolbar.textVertical": "Vertical text", "SSE.Views.Toolbar.textWidth": "Width", "SSE.Views.Toolbar.textZoom": "Zoom", "SSE.Views.Toolbar.tipAlignBottom": "Align bottom", @@ -3740,10 +3740,10 @@ "SSE.Views.Toolbar.tipAlignMiddle": "Align middle", "SSE.Views.Toolbar.tipAlignRight": "Align right", "SSE.Views.Toolbar.tipAlignTop": "Align top", - "SSE.Views.Toolbar.tipAutofilter": "Sort and Filter", + "SSE.Views.Toolbar.tipAutofilter": "Sort and filter", "SSE.Views.Toolbar.tipBack": "Back", "SSE.Views.Toolbar.tipBorders": "Borders", - "SSE.Views.Toolbar.tipCellStyle": "Cell Style", + "SSE.Views.Toolbar.tipCellStyle": "Cell style", "SSE.Views.Toolbar.tipChangeChart": "Change chart type", "SSE.Views.Toolbar.tipClearStyle": "Clear", "SSE.Views.Toolbar.tipColorSchemas": "Change color scheme", @@ -3755,16 +3755,16 @@ "SSE.Views.Toolbar.tipDecFont": "Decrement font size", "SSE.Views.Toolbar.tipDeleteOpt": "Delete cells", "SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting style", - "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency style", "SSE.Views.Toolbar.tipDigStylePercent": "Percent style", "SSE.Views.Toolbar.tipEditChart": "Edit Chart", - "SSE.Views.Toolbar.tipEditChartData": "Select Data", + "SSE.Views.Toolbar.tipEditChartData": "Select data", "SSE.Views.Toolbar.tipEditChartType": "Change Chart Type", "SSE.Views.Toolbar.tipEditHeader": "Edit header or footer", "SSE.Views.Toolbar.tipFontColor": "Font color", "SSE.Views.Toolbar.tipFontName": "Font", "SSE.Views.Toolbar.tipFontSize": "Font size", - "SSE.Views.Toolbar.tipHAlighOle": "Horizontal Align", + "SSE.Views.Toolbar.tipHAlighOle": "Horizontal align", "SSE.Views.Toolbar.tipImgAlign": "Align objects", "SSE.Views.Toolbar.tipImgGroup": "Group objects", "SSE.Views.Toolbar.tipIncDecimal": "Increase decimal", @@ -3800,7 +3800,7 @@ "SSE.Views.Toolbar.tipRedo": "Redo", "SSE.Views.Toolbar.tipSave": "Save", "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", - "SSE.Views.Toolbar.tipScale": "Scale to Fit", + "SSE.Views.Toolbar.tipScale": "Scale to fit", "SSE.Views.Toolbar.tipSelectAll": "Select all", "SSE.Views.Toolbar.tipSendBackward": "Send backward", "SSE.Views.Toolbar.tipSendForward": "Bring forward", @@ -3808,7 +3808,7 @@ "SSE.Views.Toolbar.tipTextFormatting": "More text formatting tools", "SSE.Views.Toolbar.tipTextOrientation": "Orientation", "SSE.Views.Toolbar.tipUndo": "Undo", - "SSE.Views.Toolbar.tipVAlighOle": "Vertical Align", + "SSE.Views.Toolbar.tipVAlighOle": "Vertical align", "SSE.Views.Toolbar.tipVisibleArea": "Visible area", "SSE.Views.Toolbar.tipWrap": "Wrap text", "SSE.Views.Toolbar.txtAccounting": "Accounting", @@ -3837,15 +3837,15 @@ "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", "SSE.Views.Toolbar.txtGeneral": "General", "SSE.Views.Toolbar.txtInteger": "Integer", - "SSE.Views.Toolbar.txtManageRange": "Name Manager", - "SSE.Views.Toolbar.txtMergeAcross": "Merge Across", - "SSE.Views.Toolbar.txtMergeCells": "Merge Cells", + "SSE.Views.Toolbar.txtManageRange": "Name manager", + "SSE.Views.Toolbar.txtMergeAcross": "Merge across", + "SSE.Views.Toolbar.txtMergeCells": "Merge cells", "SSE.Views.Toolbar.txtMergeCenter": "Merge & Center", "SSE.Views.Toolbar.txtNamedRange": "Named ranges", - "SSE.Views.Toolbar.txtNewRange": "Define Name", + "SSE.Views.Toolbar.txtNewRange": "Define name", "SSE.Views.Toolbar.txtNoBorders": "No borders", "SSE.Views.Toolbar.txtNumber": "Number", - "SSE.Views.Toolbar.txtPasteRange": "Paste Name", + "SSE.Views.Toolbar.txtPasteRange": "Paste name", "SSE.Views.Toolbar.txtPercentage": "Percentage", "SSE.Views.Toolbar.txtPound": "£ Pound", "SSE.Views.Toolbar.txtRouble": "₽ Rouble", @@ -3880,7 +3880,7 @@ "SSE.Views.Toolbar.txtTableTemplate": "Format as table template", "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Time", - "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", + "SSE.Views.Toolbar.txtUnmerge": "Unmerge cells", "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Show", "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", @@ -3943,16 +3943,16 @@ "SSE.Views.ViewTab.textCreate": "New", "SSE.Views.ViewTab.textDefault": "Default", "SSE.Views.ViewTab.textFormula": "Formula Bar", - "SSE.Views.ViewTab.textFreezeCol": "Freeze First Column", - "SSE.Views.ViewTab.textFreezeRow": "Freeze Top Row", + "SSE.Views.ViewTab.textFreezeCol": "Freeze first column", + "SSE.Views.ViewTab.textFreezeRow": "Freeze top row", "SSE.Views.ViewTab.textGridlines": "Gridlines", "SSE.Views.ViewTab.textHeadings": "Headings", "SSE.Views.ViewTab.textInterfaceTheme": "Interface Theme", "SSE.Views.ViewTab.textLeftMenu": "Left Panel", "SSE.Views.ViewTab.textManager": "View manager", "SSE.Views.ViewTab.textRightMenu": "Right Panel", - "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show Frozen Panes Shadow", - "SSE.Views.ViewTab.textUnFreeze": "Unfreeze Panes", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textUnFreeze": "Unfreeze panes", "SSE.Views.ViewTab.textZeros": "Show Zeros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Close sheet view", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 7b6a1bf2e..f0241b748 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -266,7 +266,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", + "Common.UI.ButtonColored.textNewColor": "Adăugați o culoare nouă particularizată", "Common.UI.ComboBorderSize.txtNoBorders": "Fără borduri", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Fără borduri", "Common.UI.ComboDataView.emptyComboText": "Fără stiluri", @@ -519,15 +519,15 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Închidere", "Common.Views.ReviewChanges.txtCoAuthMode": "Modul de editare colaborativă", - "Common.Views.ReviewChanges.txtCommentRemAll": "Ștergere comentariu", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Se șterg aceste comentarii", - "Common.Views.ReviewChanges.txtCommentRemMy": "Se șterg comentariile mele", + "Common.Views.ReviewChanges.txtCommentRemAll": "Șterge toate comentariile ", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Ștergere comentarii existente", + "Common.Views.ReviewChanges.txtCommentRemMy": "Șterge comentariile mele", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Se șterg comentariile mele curente", "Common.Views.ReviewChanges.txtCommentRemove": "Ștergere", "Common.Views.ReviewChanges.txtCommentResolve": "Soluționare", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentarii ca soluționate", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Soluționarea comentariilor curente", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Soluționarea comentariilor mele", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentariile ca rezolvate", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Rezolvare comentarii curente", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Rezolvarea comentariilor mele", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Soluționarea comentariilor mele curente", "Common.Views.ReviewChanges.txtDocLang": "Limbă", "Common.Views.ReviewChanges.txtFinal": "Toate modificările sunt acceptate (Previzualizare)", @@ -654,9 +654,13 @@ "Common.Views.UserNameDialog.textDontShow": "Nu mai întreabă", "Common.Views.UserNameDialog.textLabel": "Etichetă:", "Common.Views.UserNameDialog.textLabelError": "Etichetă trebuie completată", + "SSE.Controllers.DataTab.strSheet": "Foaie", + "SSE.Controllers.DataTab.textAddExternalData": "A fost adăugat linkul către sursă externă. Puteți să actualizați aceste linkuri în tabelul de date.", "SSE.Controllers.DataTab.textColumns": "Coloane", + "SSE.Controllers.DataTab.textDontUpdate": "Nu trebuie să actualizați", "SSE.Controllers.DataTab.textEmptyUrl": "Trebuie să specificaţi URL-ul.", "SSE.Controllers.DataTab.textRows": "Rânduri", + "SSE.Controllers.DataTab.textUpdate": "Actualizare", "SSE.Controllers.DataTab.textWizard": "Text în coloane", "SSE.Controllers.DataTab.txtDataValidation": "Validarea datelor", "SSE.Controllers.DataTab.txtErrorExternalLink": "Eroare: actealizarea a eșuat", @@ -668,6 +672,7 @@ "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.DataTab.warnUpdateExternalData": "Foaia de calcul conține linkuri către surse externe care pot fi nesigure.
Dacă aveți încredere în aceste linkuri, actualizați-le pentru a obține cele mai recente date.", "SSE.Controllers.DocumentHolder.alignmentText": "Aliniere", "SSE.Controllers.DocumentHolder.centerText": "La centru", "SSE.Controllers.DocumentHolder.deleteColumnText": "Ștergere coloana", @@ -886,6 +891,7 @@ "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Celula sau diagrama pe care încercați să schimbați este din foaia de calcul protejată
Dezactivați protejarea foii de calcul.Este posibil să fie necesară introducerea parolei.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Deocamdată, imposibil de editat documentul.", "SSE.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.", + "SSE.Controllers.Main.errorConvertXml": "Fișierul este în format neacceptat.
XML Spreadsheet 2003 este unicul format care poate fi utilizat.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Această comandă nu poate fi aplicată la selecții multiple
Selectați o singură zonă și încercați din nou.", "SSE.Controllers.Main.errorCountArg": "Eroare în formulă.
Număr incorect de argumente.", "SSE.Controllers.Main.errorCountArgExceed": "Eroare în formulă.
Numărul de argumente a fost depășit.", @@ -1376,55 +1382,55 @@ "SSE.Controllers.Toolbar.txtAccent_Hat": "Pălărie", "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tildă", - "SSE.Controllers.Toolbar.txtBracket_Angle": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze cu separatori", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze cu separatori", - "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Curve": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Paranteze cu separatori", - "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Paranteză unică", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Paranteze unghiulare", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze unghiulare cu separator", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze unghiulare cu doi separatori", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unghiulară dreaptă", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unghiulară stângă", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Acolade", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Acolade cu separator", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Acoladă dreaptă", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Acoladă stângă", "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Sistem (două condiții)", "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Sistem (trei condiții)", "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Stiva de obiecte", - "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stiva de obiecte", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Obiect stivă în paranteze", "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplu de sistem", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binominal", - "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binominal", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficientul binomial în paranteze unghiulare", "SSE.Controllers.Toolbar.txtBracket_Line": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_LowLim": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză unică", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Bara verticală din dreapta", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Bară verticală din stânga", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Bare verticale duble", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Bara verticală dublă din dreapta", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Bară verticală dublă din stânga", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Paranteză dreaptă inferioară", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză dreaptă inferioară din dreapta", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză dreaptă inferioară din stânga", "SSE.Controllers.Toolbar.txtBracket_Round": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separatori", - "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Square": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_UppLim": "Paranteze", - "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză unică", - "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză unică", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separator", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză dreaptă", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză stângă", + "SSE.Controllers.Toolbar.txtBracket_Square": "Paranteze pătrate", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Substituent între două paranteze pătrate din dreapta", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze pătrate inverse", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză pătrată dreaptă", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză pătrată stângă", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Substituent între două paranteze pătrate din stânga", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze pătrate duble", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză pătrată dreaptă dublă", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză pătrată dublă din stânga", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Paranteză dreaptă superioară", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză dreaptă superioară din dreapta", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză dreaptă superioară din stânga", "SSE.Controllers.Toolbar.txtDeleteCells": "Ștergere celule", "SSE.Controllers.Toolbar.txtExpand": "Extindere și sortare", "SSE.Controllers.Toolbar.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ă?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Fracție oblică", - "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferențială", - "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferențială", - "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferențială", - "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferențială", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "dx supra dy", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y supra cap delta x", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "y parțial supra x parțial", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "delta y supra delta x", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Fracție liniară", "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi supra 2", "SSE.Controllers.Toolbar.txtFractionSmall": "Fracție mică", @@ -1472,62 +1478,62 @@ "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferențială de theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferențială de x", "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferențială de y", - "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală cu limite stivuite", "SSE.Controllers.Toolbar.txtIntegralDouble": "Integrală dublă", - "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă", - "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă cu limite stivuite", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă cu limite", "SSE.Controllers.Toolbar.txtIntegralOriented": "Inegrală de contur", - "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Inegrală de contur", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integrală de contur cu limite stivuite", "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integrală de suprafața", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafața", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafața", - "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Inegrală de contur", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafață cu limite stivuite", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafață cu limite", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integrală de contur cu limite", "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integrală de volum", "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum", "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum", - "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integrală", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integrală cu limite", "SSE.Controllers.Toolbar.txtIntegralTriple": "Integrală triplă", - "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă", - "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă cu limite stivuite", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă cu limite", "SSE.Controllers.Toolbar.txtInvalidRange": "EROARE! Zonă de celule nu este validă", "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Și logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic cu limită inferioară", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic cu limite", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic cu limită inferioară pentru indice", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic cu limite pentru indice/exponent", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coprodus", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produs", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Reuniune", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus cu limită inferioară", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus cu limite", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus cu limită inferioară pentru indice", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus cu limite pentru indice/exponent", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă de k combinări din n luate câte k", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă de la i egal cu zero la n", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemplu de sumă folosind doi indici", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemplu de produs", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemplu de reuniune", "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Sau logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic cu limită inferioară", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic cu limite", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic cu limită inferioară pentru indice", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic cu limite pentru indice/exponent", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersecție", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție cu limită inferioară", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție cu limite", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție cu limită inferioară pentru indice", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție cu limite pentru indice/exponent", "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Produs", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs cu limită inferioară", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs cu limite", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs cu limită inferioară pentru indice", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs cu limite pentru indice/exponent", "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă cu limită inferioară", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă cu limite", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă cu limită inferioară pentru indice", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă cu limite pentru indice/exponent", "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Reuniune", "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune cu limite", "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune", "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplu de limită", @@ -1543,10 +1549,10 @@ "SSE.Controllers.Toolbar.txtMatrix_1_3": "Matrice goală 1x3", "SSE.Controllers.Toolbar.txtMatrix_2_1": "Matrice goală 2x1 ", "SSE.Controllers.Toolbar.txtMatrix_2_2": "Matrice goală 2x2", - "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală cu paranteze drepte", - "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice goală cu paranteze drepte", - "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală cu paranteze drepte", - "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală cu paranteze drepte", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală de 2x2 între bare verticale duble", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Determinant gol de 2x2", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală de 2x2 între paranteze", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală de 2x2 între paranteze drepte", "SSE.Controllers.Toolbar.txtMatrix_2_3": "Matrice goală 2x3", "SSE.Controllers.Toolbar.txtMatrix_3_1": "Matrice goală 3x1", "SSE.Controllers.Toolbar.txtMatrix_3_2": "Matrice goală 3x2", @@ -1555,12 +1561,12 @@ "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Puncte pe linia de mijloc", "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Puncte pe diagonală", "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Puncte pe verticală", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rare", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rare", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate 2x2", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate 3x3", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate 3x3", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate 3x3", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rară în paranteze", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rară în paranteze drepte", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate de 2x2 cu zerouri", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate de 2x2 cu celule goale în afara diagonalei", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate de 3x3 cu zerouri", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate de 3x3 cu celule goale în afara diagonalei", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Săgeată deasupra de la dreapta la stînga", "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Săgeată dedesupt spre stânga", @@ -1572,8 +1578,8 @@ "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta rezultă", "SSE.Controllers.Toolbar.txtOperator_Definition": "Egal prin definiție", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egal", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată deasupra de la dreapta la stînga", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dublă dedesubt de la dreapta la stînga", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată dublă deasupra de la dreapta la stînga", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Săgeată dedesupt spre stânga", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Săgeată deasupra spre stânga ", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Săgeată dedesubt spre dreapta", @@ -1582,14 +1588,14 @@ "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus egal", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus egal", "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Măsurat prin", - "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Partea din dreapta a formulei pătratice", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Rădăcina pătrată din a pătrat plus b pătrat", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Rădăcina pătrată de ordin", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Rădăcină cubică", "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radicalul de ordin", "SSE.Controllers.Toolbar.txtRadicalSqrt": "Rădăcină pătrată", "SSE.Controllers.Toolbar.txtScriptCustom_1": "Scriptul", - "SSE.Controllers.Toolbar.txtScriptCustom_2": "Scriptul", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "e la minus i omega t", "SSE.Controllers.Toolbar.txtScriptCustom_3": "Scriptul", "SSE.Controllers.Toolbar.txtScriptCustom_4": "Scriptul", "SSE.Controllers.Toolbar.txtScriptSub": "Indice", @@ -2028,6 +2034,7 @@ "SSE.Views.DataTab.capDataFromText": "Obținere date", "SSE.Views.DataTab.mniFromFile": "Din fișier local TXT/CSV", "SSE.Views.DataTab.mniFromUrl": "Prin adresa URL a fișierului TXT/CSV", + "SSE.Views.DataTab.mniFromXMLFile": "Din XML local", "SSE.Views.DataTab.textBelow": "Rânduri rezumative sub detalii", "SSE.Views.DataTab.textClear": "Golire schiță", "SSE.Views.DataTab.textColumns": "Anularea grupării coloanelor", @@ -2036,7 +2043,7 @@ "SSE.Views.DataTab.textRightOf": "Rezumat coloane la dreapta detaliilor", "SSE.Views.DataTab.textRows": "Anularea grupării rândurilor", "SSE.Views.DataTab.tipCustomSort": "Sortare particularizată", - "SSE.Views.DataTab.tipDataFromText": "Colectare date din fișierul text/CSV", + "SSE.Views.DataTab.tipDataFromText": "Colectare date din fișier", "SSE.Views.DataTab.tipDataValidation": "Validarea datelor", "SSE.Views.DataTab.tipExternalLinks": "Vizualizați toate celelalte fișiere de care este legată această foaie de calcul ", "SSE.Views.DataTab.tipGroup": "Grupare zonă de celule", @@ -2766,6 +2773,13 @@ "SSE.Views.ImageSettingsAdvanced.textTitle": "Imagine - Setări avansate", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Mutare și dimensionare cu celulele", "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertical", + "SSE.Views.ImportFromXmlDialog.textDestination": "Alegeți o locație pentru datele", + "SSE.Views.ImportFromXmlDialog.textExist": "Foaie de calcul existentă", + "SSE.Views.ImportFromXmlDialog.textInvalidRange": "Zona de celule nu este validă", + "SSE.Views.ImportFromXmlDialog.textNew": "Foaie de calcul nouă", + "SSE.Views.ImportFromXmlDialog.textSelectData": "Selectare date", + "SSE.Views.ImportFromXmlDialog.textTitle": "Import date", + "SSE.Views.ImportFromXmlDialog.txtEmpty": "Câmp obligatoriu", "SSE.Views.LeftMenu.tipAbout": "Informații", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Comentarii", @@ -3636,10 +3650,10 @@ "SSE.Views.Toolbar.textAuto": "Auto", "SSE.Views.Toolbar.textAutoColor": "Automat", "SSE.Views.Toolbar.textBold": "Aldin", - "SSE.Views.Toolbar.textBordersColor": "Culoare bordura", + "SSE.Views.Toolbar.textBordersColor": "Culoare bordură", "SSE.Views.Toolbar.textBordersStyle": "Stil bordură", "SSE.Views.Toolbar.textBottom": "Jos:", - "SSE.Views.Toolbar.textBottomBorders": "bordurile în partea de jos", + "SSE.Views.Toolbar.textBottomBorders": "Bordurile în partea de jos", "SSE.Views.Toolbar.textCenterBorders": "Bordurile verticale în interiorul ", "SSE.Views.Toolbar.textClearPrintArea": "Golire zonă de imprimare", "SSE.Views.Toolbar.textClearRule": "Golire reguli", @@ -3677,8 +3691,8 @@ "SSE.Views.Toolbar.textMiddleBorders": "Bordurile orizontale în interiorul ", "SSE.Views.Toolbar.textMoreFormats": "Mai multe formate", "SSE.Views.Toolbar.textMorePages": "Mai multe pagini", - "SSE.Views.Toolbar.textNewColor": "Сuloare particularizată", - "SSE.Views.Toolbar.textNewRule": "Nouă regulă", + "SSE.Views.Toolbar.textNewColor": "Adăugați o culoare nouă particularizată", + "SSE.Views.Toolbar.textNewRule": "Regulă nouă", "SSE.Views.Toolbar.textNoBorders": "Fără borduri", "SSE.Views.Toolbar.textOnePage": "pagina", "SSE.Views.Toolbar.textOutBorders": "Borduri în exteriorul", @@ -3689,7 +3703,7 @@ "SSE.Views.Toolbar.textPrintHeadings": "Imprimare titluri", "SSE.Views.Toolbar.textPrintOptions": "Imprimare setări", "SSE.Views.Toolbar.textRight": "Dreapta:", - "SSE.Views.Toolbar.textRightBorders": "Borduri dun dreapta", + "SSE.Views.Toolbar.textRightBorders": "Borduri din dreapta", "SSE.Views.Toolbar.textRotateDown": "Rotirea textului în jos", "SSE.Views.Toolbar.textRotateUp": "Rotirea textului în sus", "SSE.Views.Toolbar.textScale": "Scară", @@ -3781,6 +3795,7 @@ "SSE.Views.Toolbar.tipPrColor": "Culoare de umplere", "SSE.Views.Toolbar.tipPrint": "Imprimare", "SSE.Views.Toolbar.tipPrintArea": "Zonă de imprimat", + "SSE.Views.Toolbar.tipPrintQuick": "Imprimare rapidă", "SSE.Views.Toolbar.tipPrintTitles": "Imprimare titluri", "SSE.Views.Toolbar.tipRedo": "Refacere", "SSE.Views.Toolbar.tipSave": "Salvează", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 5e77dbb34..d71de34eb 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -654,9 +654,13 @@ "Common.Views.UserNameDialog.textDontShow": "Больше не спрашивать", "Common.Views.UserNameDialog.textLabel": "Подпись:", "Common.Views.UserNameDialog.textLabelError": "Подпись не должна быть пустой.", + "SSE.Controllers.DataTab.strSheet": "Лист", + "SSE.Controllers.DataTab.textAddExternalData": "Добавлена ссылка на внешний источник. Такие ссылки можно обновить на вкладке Данные.", "SSE.Controllers.DataTab.textColumns": "Столбцы", + "SSE.Controllers.DataTab.textDontUpdate": "Не обновлять", "SSE.Controllers.DataTab.textEmptyUrl": "Необходимо указать URL.", "SSE.Controllers.DataTab.textRows": "Строки", + "SSE.Controllers.DataTab.textUpdate": "Обновить", "SSE.Controllers.DataTab.textWizard": "Текст по столбцам", "SSE.Controllers.DataTab.txtDataValidation": "Проверка данных", "SSE.Controllers.DataTab.txtErrorExternalLink": "Ошибка: не удалось выполнить обновление", @@ -668,6 +672,7 @@ "SSE.Controllers.DataTab.txtRemoveDataValidation": "Выделенная область содержит более одного условия.
Удалить текущие параметры и продолжить?", "SSE.Controllers.DataTab.txtRemSelected": "Удалить в выделенном диапазоне", "SSE.Controllers.DataTab.txtUrlTitle": "Вставьте URL-адрес данных", + "SSE.Controllers.DataTab.warnUpdateExternalData": "Эта книга содержит связи с внешними источниками данных (возможно, небезопасными).
Если вы считаете эти связи надежными, обновите их, чтобы получить последние данные.", "SSE.Controllers.DocumentHolder.alignmentText": "Выравнивание", "SSE.Controllers.DocumentHolder.centerText": "По центру", "SSE.Controllers.DocumentHolder.deleteColumnText": "Удалить столбец", @@ -886,6 +891,7 @@ "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Ячейка или диаграмма, которую вы пытаетесь изменить, находится на защищенном листе.
Чтобы внести изменения, снимите защиту листа. Возможно, потребуется ввести пароль.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.", "SSE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.", + "SSE.Controllers.Main.errorConvertXml": "Файл неподдерживаемого формата.
Можно использовать только формат XML Spreadsheet 2003.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Данная команда неприменима для несвязных диапазонов.
Выберите один диапазон и повторите попытку.", "SSE.Controllers.Main.errorCountArg": "Ошибка во введенной формуле.
Использовано неверное количество аргументов.", "SSE.Controllers.Main.errorCountArgExceed": "Ошибка во введенной формуле.
Превышено количество аргументов.", @@ -1376,55 +1382,55 @@ "SSE.Controllers.Toolbar.txtAccent_Hat": "Крышка", "SSE.Controllers.Toolbar.txtAccent_Smile": "Значок краткости", "SSE.Controllers.Toolbar.txtAccent_Tilde": "Тильда", - "SSE.Controllers.Toolbar.txtBracket_Angle": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Скобки и разделители", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Скобки и разделители", - "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Curve": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Скобки и разделители", - "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Отдельная скобка", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Угловые скобки", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Угловые скобки с разделителем", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Угловые скобки с двумя разделителями", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Правая угловая скобка", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Левая угловая скобка", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Фигурные скобки", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Фигурные скобки с разделителем", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Правая фигурная скобка", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Левая фигурная скобка", "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Наборы условий (два условия)", "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Наборы условий (три условия)", "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Стопка объектов", - "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов в круглых скобках", "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Наборы условий (пример)", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Биномиальный коэффициент", - "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент", - "SSE.Controllers.Toolbar.txtBracket_Line": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_LowLim": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Round": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Скобки и разделители", - "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Square": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_UppLim": "Скобки", - "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Отдельная скобка", - "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Отдельная скобка", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент в угловых скобках", + "SSE.Controllers.Toolbar.txtBracket_Line": "Вертикальные черты", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Правая вертикальная черта", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Левая вертикальная черта", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Двойные вертикальные черты", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Правая двойная вертикальная черта", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Левая двойная вертикальная черта", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Закрытые снизу скобки", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Правый предельный уровень снизу", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Левый предельный уровень снизу", + "SSE.Controllers.Toolbar.txtBracket_Round": "Круглые скобки", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Круглые скобки с разделителем", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Правая круглая скобка", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Левая круглая скобка", + "SSE.Controllers.Toolbar.txtBracket_Square": "Квадратные скобки", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Заполнитель между двумя правыми квадратными скобками", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Перевернутые квадратные скобки", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Правая квадратная скобка", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Левая квадратная скобка", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Заполнитель между двумя левыми квадратными скобками", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Двойные квадратные скобки", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Правая двойная квадратная скобка", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Левая двойная квадратная скобка", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Закрытые сверху скобки", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Правый предельный уровень сверху", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Левый предельный уровень сверху", "SSE.Controllers.Toolbar.txtDeleteCells": "Удалить ячейки", "SSE.Controllers.Toolbar.txtExpand": "Расширить и сортировать", "SSE.Controllers.Toolbar.txtExpandSort": "Данные рядом с выделенным диапазоном не будут отсортированы. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить сортировку только выделенного диапазона?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Диагональная простая дробь", - "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Дифференциал", - "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Дифференциал", - "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Дифференциал", - "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Дифференциал", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "dy над dx", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "пересечение дельты y над пересечением дельты x", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "частичная y по частичной x", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "дельта y через дельта x", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Горизонтальная простая дробь", "SSE.Controllers.Toolbar.txtFractionPi_2": "Пи разделить на два", "SSE.Controllers.Toolbar.txtFractionSmall": "Маленькая простая дробь", @@ -1472,64 +1478,64 @@ "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Дифференциал dθ", "SSE.Controllers.Toolbar.txtIntegral_dx": "Дифференциал dx", "SSE.Controllers.Toolbar.txtIntegral_dy": "Дифференциал dy", - "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл с пределами с накоплением", "SSE.Controllers.Toolbar.txtIntegralDouble": "Двойной интеграл", - "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл", - "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл с пределами с накоплением", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл с пределами", "SSE.Controllers.Toolbar.txtIntegralOriented": "Контурный интеграл", - "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл с пределами с накоплением", "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Интеграл по поверхности", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности", - "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности с пределами с накоплением", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности с пределами", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл с пределами", "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Интеграл по объему", - "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему", - "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему", - "SSE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему с пределами с накоплением", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему с пределами", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл с пределами", "SSE.Controllers.Toolbar.txtIntegralTriple": "Тройной интеграл", - "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл", - "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл с пределами с накоплением", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл с пределами", "SSE.Controllers.Toolbar.txtInvalidRange": "ОШИБКА! Недопустимый диапазон ячеек", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Конъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Конъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Конъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Конъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Конъюнкция", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Логическое И", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Логическое И с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Логическое И с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Логическое И с нижним пределом подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Логическое И с пределом подстрочного/надстрочного знака", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Сопроизведение", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Произведение", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Объединение", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Дизъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Дизъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Дизъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Дизъюнкция", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Дизъюнкция", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение с нижним пределом подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение с пределами подстрочного/надстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Суммирование от k от n с выбором k", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Суммирование от i равно ноль до n", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Пример суммирования с использованием двух индексов", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Пример произведения", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Пример объединения", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Логическое Или", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Логическое ИЛИ с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Логическое ИЛИ с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Логическое ИЛИ с нижним пределом подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Логическое ИЛИ с пределами подстрочного/надстрочного знака", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Пересечение", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение с нижним пределом в виде подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение с пределами подстрочного/надстрочного знака", "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Произведение", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение с нижним пределом подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение с пределами подстрочного/надстрочного знака", "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Сумма", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Сумма", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Суммирование с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Суммирование с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Суммирование с нижним пределом подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Суммирование с пределами подстрочного/надстрочного знака", "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Объединение", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение с нижним пределом", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение с пределами", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение с нижним пределом подстрочного знака", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение с пределами подстрочного/надстрочного знака", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Пример предела", "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Пример максимума", "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Предел", @@ -1543,10 +1549,10 @@ "SSE.Controllers.Toolbar.txtMatrix_1_3": "Пустая матрица 1 x 3", "SSE.Controllers.Toolbar.txtMatrix_2_1": "Пустая матрица 2 x 1", "SSE.Controllers.Toolbar.txtMatrix_2_2": "Пустая матрица 2 x 2", - "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица со скобками", - "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустая матрица со скобками", - "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица со скобками", - "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица со скобками", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица 2 х 2 в двойных вертикальных чертах", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустой определитель 2 x 2", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица 2 х 2 в круглых скобках", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица 2 х 2 в скобках", "SSE.Controllers.Toolbar.txtMatrix_2_3": "Пустая матрица 2 x 3", "SSE.Controllers.Toolbar.txtMatrix_3_1": "Пустая матрица 3 x 1", "SSE.Controllers.Toolbar.txtMatrix_3_2": "Пустая матрица 3 x 2", @@ -1555,12 +1561,12 @@ "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Точки посередине", "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Точки по диагонали", "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Точки по вертикали", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 3 x 3", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица в круглых скобках", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица в квадратных скобках", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2 с нулями", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 2 x 2 с пустыми ячейками не на диагонали", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3 с нулями", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3 с пустыми ячейками не на диагонали", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Стрелка вправо-влево снизу", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Стрелка вправо-влево сверху", "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Стрелка влево снизу", @@ -1572,8 +1578,8 @@ "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Дельта выхода", "SSE.Controllers.Toolbar.txtOperator_Definition": "Равно по определению", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Дельта равна", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Стрелка вправо-влево снизу", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Стрелка вправо-влево сверху", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Двойная стрелка вправо-влево снизу", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Двойная стрелка вправо-влево сверху", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Стрелка влево снизу", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Стрелка влево сверху", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Стрелка вправо снизу", @@ -1582,16 +1588,16 @@ "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Минус равно", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Плюс равно", "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Единица измерения", - "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Радикал", - "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Радикал", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Правая часть квадратного уравнения", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Квадратный корень из квадрата плюс b квадрат", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Квадратный корень со степенью", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Кубический корень", "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Радикал со степенью", "SSE.Controllers.Toolbar.txtRadicalSqrt": "Квадратный корень", - "SSE.Controllers.Toolbar.txtScriptCustom_1": "Индекс", - "SSE.Controllers.Toolbar.txtScriptCustom_2": "Индекс", - "SSE.Controllers.Toolbar.txtScriptCustom_3": "Индекс", - "SSE.Controllers.Toolbar.txtScriptCustom_4": "Индекс", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "x в степени квадрата y", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "e в степени -iωt", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "квадрат x", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Y, надстрочный индекс n слева, подстрочный индекс 1 справа", "SSE.Controllers.Toolbar.txtScriptSub": "Нижний индекс", "SSE.Controllers.Toolbar.txtScriptSubSup": "Нижний и верхний индексы", "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Нижний и верхний индексы слева", @@ -2028,6 +2034,7 @@ "SSE.Views.DataTab.capDataFromText": "Получить данные", "SSE.Views.DataTab.mniFromFile": "Из локального TXT/CSV файла", "SSE.Views.DataTab.mniFromUrl": "По URL TXT/CSV файла", + "SSE.Views.DataTab.mniFromXMLFile": "Из локальной XML", "SSE.Views.DataTab.textBelow": "Итоги в строках под данными", "SSE.Views.DataTab.textClear": "Удалить структуру", "SSE.Views.DataTab.textColumns": "Разгруппировать столбцы", @@ -2036,7 +2043,7 @@ "SSE.Views.DataTab.textRightOf": "Итоги в столбцах справа от данных", "SSE.Views.DataTab.textRows": "Разгруппировать строки", "SSE.Views.DataTab.tipCustomSort": "Настраиваемая сортировка", - "SSE.Views.DataTab.tipDataFromText": "Получить данные из текстового/CSV-файла", + "SSE.Views.DataTab.tipDataFromText": "Получить данные из файла", "SSE.Views.DataTab.tipDataValidation": "Проверка данных", "SSE.Views.DataTab.tipExternalLinks": "Посмотреть другие файлы, с которыми связана эта таблица", "SSE.Views.DataTab.tipGroup": "Сгруппировать диапазон ячеек", @@ -2766,6 +2773,13 @@ "SSE.Views.ImageSettingsAdvanced.textTitle": "Изображение - дополнительные параметры", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Перемещать и изменять размеры вместе с ячейками", "SSE.Views.ImageSettingsAdvanced.textVertically": "По вертикали", + "SSE.Views.ImportFromXmlDialog.textDestination": "Выберите, где поместить данные", + "SSE.Views.ImportFromXmlDialog.textExist": "Существующий лист", + "SSE.Views.ImportFromXmlDialog.textInvalidRange": "Недопустимый диапазон ячеек", + "SSE.Views.ImportFromXmlDialog.textNew": "Новый лист", + "SSE.Views.ImportFromXmlDialog.textSelectData": "Выбор данных", + "SSE.Views.ImportFromXmlDialog.textTitle": "Импорт данных", + "SSE.Views.ImportFromXmlDialog.txtEmpty": "Это поле обязательно для заполнения", "SSE.Views.LeftMenu.tipAbout": "О программе", "SSE.Views.LeftMenu.tipChat": "Чат", "SSE.Views.LeftMenu.tipComments": "Комментарии", From c72a7cd532ce25e4b7ecd8ffc30799c3cdd51cf0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 16 Dec 2022 16:45:18 +0300 Subject: [PATCH 44/54] [Mobile] Update translation --- apps/documenteditor/mobile/locale/ca.json | 14 +++++++------- apps/documenteditor/mobile/locale/ro.json | 6 +++--- apps/presentationeditor/mobile/locale/ja.json | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 7735ff24f..ce27c4ad8 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -69,7 +69,7 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAccept": "Accepta ", + "textAccept": "Acceptar", "textAcceptAllChanges": "Accepta tots els canvis", "textAddComment": "Afegeix un comentari", "textAddReply": "Afegeix una resposta", @@ -222,6 +222,7 @@ "textAllowOverlap": "Permet que se superposin", "textAmountOfLevels": "Quantitat de nivells", "textApril": "abril", + "textArrange": "Organitza", "textAugust": "agost", "textAuto": "Automàtic", "textAutomatic": "Automàtic", @@ -375,8 +376,7 @@ "textType": "Tipus", "textWe": "dc.", "textWrap": "Ajustament", - "textWrappingStyle": "Estil d'ajustament", - "textArrange": "Arrange" + "textWrappingStyle": "Estil d'ajustament" }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -543,16 +543,18 @@ "textClose": "Tanca", "textContactUs": "Contacteu amb vendes", "textCustomLoader": "No teniu permisos per canviar el carregador. Contacteu amb el nostre departament de vendes per obtenir un pressupost.", + "textDocumentProtected": "El document està protegit. La configuració d'edició no està disponible", "textGuest": "Convidat", "textHasMacros": "El fitxer conté macros automàtiques.
Les voleu executar?", "textNo": "No", "textNoLicenseTitle": "S'ha assolit el límit de llicència", "textNoTextFound": "No s'ha trobat cap text", + "textOk": "D'acord", "textPaidFeature": "Funció de pagament", "textRemember": "Recorda la meva elecció", "textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", "textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", - "textRequestMacros": "Una macro fa una sol·licitud a l'URL. Voleu permetre la sol·licitud al %1?", + "textRequestMacros": "Una macro fa una sol·licitud a l'URL. Voleu permetre la sol·licitud a %1?", "textYes": "Sí", "titleLicenseExp": "La llicència ha caducat", "titleServerVersion": "S'ha actualitzat l'editor", @@ -564,9 +566,7 @@ "warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.", "warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per conèixer les condicions d'actualització personal.", "warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", - "warnProcessRightsChange": "No teniu permís per editar aquest fitxer.", - "textDocumentProtected": "The document is protected. Edit settings are not available", - "textOk": "Ok" + "warnProcessRightsChange": "No teniu permís per editar aquest fitxer." }, "Settings": { "advDRMOptions": "El fitxer està protegit", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index cd3a8a0b4..2e7fe629d 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -543,11 +543,13 @@ "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.", + "textDocumentProtected": "Documentul este protejat. Setările de editare nu sunt disponibile.", "textGuest": "Invitat", "textHasMacros": "Fișierul conține macrocomenzi.
Doriți să le rulați?", "textNo": "Nu", "textNoLicenseTitle": "Ați atins limita stabilită de licență", "textNoTextFound": "Textul nu a fost găsit", + "textOk": "OK", "textPaidFeature": "Funcția contra plată", "textRemember": "Reține opțiunea mea", "textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", @@ -564,9 +566,7 @@ "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori ai %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 ai %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.", - "textDocumentProtected": "The document is protected. Edit settings are not available", - "textOk": "Ok" + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." }, "Settings": { "advDRMOptions": "Fișierul protejat", diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index 51cb441bd..4483ef296 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -327,7 +327,7 @@ "textExternalLink": "外部リンク", "textFade": "フェード", "textFill": "塗りつぶし", - "textFinalMessage": "スライドプレビューの終わりです。終了するにはここをクリックします。", + "textFinalMessage": "スライドプレビューの終わりです。終了するには、クリックしてください。", "textFind": "検索する", "textFindAndReplace": "検索と置換", "textFirstColumn": "最初の列", From 4a97fcd4d1309914545749bd43c57fe0fb056fbc Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 16 Dec 2022 18:21:57 +0300 Subject: [PATCH 45/54] Fix signatures for protected mode --- apps/documenteditor/main/app/view/DocumentHolder.js | 2 +- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 7a0c98177..dacf23c19 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2931,7 +2931,7 @@ define([ SetDisabled: function(state, canProtect, fillFormMode) { this._isDisabled = state; - this._canProtect = canProtect; + this._canProtect = state ? canProtect : true; this._fillFormMode = state ? fillFormMode : false; }, diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index e5147d165..9103767a8 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -4433,7 +4433,7 @@ define([ SetDisabled: function(state, canProtect) { this._isDisabled = state; - this._canProtect = canProtect; + this._canProtect = state ? canProtect : true; this.disableEquationBar(); }, From 4be1ab700b3f19514b5773795654f10ca796e6b2 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 16 Dec 2022 18:28:02 +0300 Subject: [PATCH 46/54] [DE] Refactoring --- .../main/lib/component/TextareaField.js | 4 +++- .../main/lib/view/SignSettingsDialog.js | 19 ++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/apps/common/main/lib/component/TextareaField.js b/apps/common/main/lib/component/TextareaField.js index b39933641..faf5a1d66 100644 --- a/apps/common/main/lib/component/TextareaField.js +++ b/apps/common/main/lib/component/TextareaField.js @@ -56,7 +56,8 @@ define([ maxlength : undefined, placeHolder : '', spellcheck : false, - disabled: false + disabled: false, + resize: false }, template: _.template([ @@ -133,6 +134,7 @@ define([ this._input.on('blur', _.bind(this.onInputChanged, this)); this._input.on('keydown', _.bind(this.onKeyDown, this)); if (this.maxLength) this._input.attr('maxlength', this.maxLength); + if (!this.resize) this._input.css('resize', 'none'); if (this.disabled) this.setDisabled(this.disabled); diff --git a/apps/common/main/lib/view/SignSettingsDialog.js b/apps/common/main/lib/view/SignSettingsDialog.js index a23fec07e..15c4f48ba 100644 --- a/apps/common/main/lib/view/SignSettingsDialog.js +++ b/apps/common/main/lib/view/SignSettingsDialog.js @@ -79,7 +79,7 @@ define([ '
', '', '
', - '', + '
', '
', '
', '