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/common/main/lib/component/TextareaField.js b/apps/common/main/lib/component/TextareaField.js index b39933641..5406a062c 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); @@ -140,6 +142,9 @@ define([ me.rendered = true; + if (me.value) + me.setValue(me.value); + return this; }, diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index a064822b7..87850d657 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,188 @@ define([ } } + const _checkHelpAvailable = function () { + 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 */ + 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(), ''); + }); + } + }) + } + }); + } + + const _onAppReady = function (opts) { + _.extend(config, opts); + !!native && native.execCommand('doc:onready', ''); + + $('.toolbar').addClass('editor-native-color'); + } + + const _onDocumentReady = function () { + if ( config.isEdit ) { + function get_locked_message (t) { + switch (t) { + // case Asc.c_oAscLocalRestrictionType.Nosafe: + case Asc.c_oAscLocalRestrictionType.ReadOnly: + return Common.Locale.get("tipFileReadOnly",{name:"Common.Translation", default: "Document is read only. You can make changes and save its local copy later."}); + default: return Common.Locale.get("tipFileLocked",{name:"Common.Translation", default: "Document is locked for editing. You can make changes and save its local copy later."}); + } + } + + const header = webapp.getController('Viewport').getView('Common.Views.Header'); + const api = webapp.getController('Main').api; + const locktype = api.asc_getLocalRestrictions ? api.asc_getLocalRestrictions() : Asc.c_oAscLocalRestrictionType.None; + if ( Asc.c_oAscLocalRestrictionType.None !== locktype ) { + features.readonly = true; + + header.setDocumentReadOnly(true); + api.asc_setLocalRestrictions(Asc.c_oAscLocalRestrictionType.None); + + (new Common.UI.SynchronizeTip({ + extCls: 'no-arrow', + placement: 'bottom', + target: $('.toolbar'), + text: get_locked_message(locktype), + showLink: false, + })).on('closeclick', function () { + this.close(); + }).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; + header.setDocumentReadOnly(false); + native.execCommand('webapps:features', JSON.stringify(features)); + } + } + }); + } + + _checkHelpAvailable.call(this); + } + } + + const _onHidePreloader = function (mode) { + features.viewmode = !mode.isEdit; + features.crypted = mode.isCrypted; + native.execCommand('webapps:features', JSON.stringify(features)); + + titlebuttons = {}; + if ( mode.isEdit ) { + var header = webapp.getController('Viewport').getView('Common.Views.Header'); + + { + header.btnHome = (new Common.UI.Button({ + cls: 'btn-header', + iconCls: 'toolbar__icon icon--inverse btn-home', + visible: false, + hint: 'Show Main window', + dataHint:'0', + dataHintDirection: 'right', + dataHintOffset: '10, -18', + dataHintTitle: 'K' + })).render($('#box-document-title #slot-btn-dt-home')); + titlebuttons['home'] = {btn: header.btnHome}; + + header.btnHome.on('click', function (e) { + native.execCommand('title:button', JSON.stringify({click: "home"})); + }); + + $('#id-box-doc-name').on({ + 'dblclick': function (e) { + native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + }, + 'mousedown': function (e) { + native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + }, + 'mousemove': function (e) { + native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + }, + 'mouseup': function (e) { + native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + } + }); + } + + if (!!header.btnSave) { + titlebuttons['save'] = {btn: header.btnSave}; + + var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class')); + !!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]); + } + + if (!!header.btnPrint) + titlebuttons['print'] = {btn: header.btnPrint}; + + if (!!header.btnPrintQuick) { + titlebuttons['quickprint'] = { + btn: header.btnPrintQuick, + visible: header.btnPrintQuick.isVisible(), + }; + } + + if (!!header.btnUndo) + titlebuttons['undo'] = {btn: header.btnUndo}; + + if (!!header.btnRedo) + titlebuttons['redo'] = {btn: header.btnRedo}; + + for (var i in titlebuttons) { + titlebuttons[i].btn.options.signals = ['disabled']; + titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i)); + } + + if (!!titlebuttons.save) { + titlebuttons.save.btn.options.signals.push('icon:changed'); + titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this)); + } + } + + if ( !!config.callback_editorconfig ) { + config.callback_editorconfig(); + delete config.callback_editorconfig; + } + + if ( native.features.singlewindow !== undefined ) { + // $('#box-document-title .hedset')[native.features.singlewindow ? 'hide' : 'show'](); + !!titlebuttons.home && titlebuttons.home.btn.setVisible(native.features.singlewindow); + } + } + return { init: function (opts) { _.extend(config, opts); @@ -244,134 +427,10 @@ define([ let is_win_xp = nativevars && nativevars.os === 'winxp'; Common.UI.Themes.setAvailable(!is_win_xp); - Common.NotificationCenter.on('app:ready', function (opts) { - _.extend(config, opts); - !!native && native.execCommand('doc:onready', ''); - - $('.toolbar').addClass('editor-native-color'); - }); - - Common.NotificationCenter.on('document:ready', function () { - if ( config.isEdit ) { - function get_locked_message (t) { - switch (t) { - // case Asc.c_oAscLocalRestrictionType.Nosafe: - case Asc.c_oAscLocalRestrictionType.ReadOnly: - return Common.Locale.get("tipFileReadOnly",{name:"Common.Translation", default: "Document is read only. You can make changes and save its local copy later."}); - default: return Common.Locale.get("tipFileLocked",{name:"Common.Translation", default: "Document is locked for editing. You can make changes and save its local copy later."}); - } - } - - const header = webapp.getController('Viewport').getView('Common.Views.Header'); - const api = webapp.getController('Main').api; - const locktype = api.asc_getLocalRestrictions ? api.asc_getLocalRestrictions() : Asc.c_oAscLocalRestrictionType.None; - if ( Asc.c_oAscLocalRestrictionType.None !== locktype ) { - features.readonly = true; - - header.setDocumentReadOnly(true); - api.asc_setLocalRestrictions(Asc.c_oAscLocalRestrictionType.None); - - (new Common.UI.SynchronizeTip({ - extCls: 'no-arrow', - placement: 'bottom', - target: $('.toolbar'), - text: get_locked_message(locktype), - showLink: false, - })).on('closeclick', function () { - this.close(); - }).show(); - } - } - }); - - Common.NotificationCenter.on('app:face', function (mode) { - features.viewmode = !mode.isEdit; - features.crypted = mode.isCrypted; - native.execCommand('webapps:features', JSON.stringify(features)); - - titlebuttons = {}; - if ( mode.isEdit ) { - var header = webapp.getController('Viewport').getView('Common.Views.Header'); - - { - header.btnHome = (new Common.UI.Button({ - cls: 'btn-header', - iconCls: 'toolbar__icon icon--inverse btn-home', - visible: false, - hint: 'Show Main window', - dataHint:'0', - dataHintDirection: 'right', - dataHintOffset: '10, -18', - dataHintTitle: 'K' - })).render($('#box-document-title #slot-btn-dt-home')); - titlebuttons['home'] = {btn: header.btnHome}; - - header.btnHome.on('click', function (e) { - native.execCommand('title:button', JSON.stringify({click: "home"})); - }); - - $('#id-box-doc-name').on({ - 'dblclick': function (e) { - native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) - }, - 'mousedown': function (e) { - native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) - }, - 'mousemove': function (e) { - native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) - }, - 'mouseup': function (e) { - native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) - } - }); - } - - if (!!header.btnSave) { - titlebuttons['save'] = {btn: header.btnSave}; - - var iconname = /\s?([^\s]+)$/.exec(titlebuttons.save.btn.$icon.attr('class')); - !!iconname && iconname.length && (titlebuttons.save.icon = btnsave_icons[iconname]); - } - - if (!!header.btnPrint) - titlebuttons['print'] = {btn: header.btnPrint}; - - if (!!header.btnPrintQuick) { - titlebuttons['quickprint'] = { - btn: header.btnPrintQuick, - visible: header.btnPrintQuick.isVisible(), - }; - } - - if (!!header.btnUndo) - titlebuttons['undo'] = {btn: header.btnUndo}; - - if (!!header.btnRedo) - titlebuttons['redo'] = {btn: header.btnRedo}; - - for (var i in titlebuttons) { - titlebuttons[i].btn.options.signals = ['disabled']; - titlebuttons[i].btn.on('disabled', _onTitleButtonDisabled.bind(this, i)); - } - - if (!!titlebuttons.save) { - titlebuttons.save.btn.options.signals.push('icon:changed'); - titlebuttons.save.btn.on('icon:changed', _onSaveIconChanged.bind(this)); - } - } - - if ( !!config.callback_editorconfig ) { - config.callback_editorconfig(); - delete config.callback_editorconfig; - } - - if ( native.features.singlewindow !== undefined ) { - // $('#box-document-title .hedset')[native.features.singlewindow ? 'hide' : 'show'](); - !!titlebuttons.home && titlebuttons.home.btn.setVisible(native.features.singlewindow); - } - }); - Common.NotificationCenter.on({ + 'app:ready': _onAppReady, + 'document:ready': _onDocumentReady.bind(this), + 'app:face': _onHidePreloader.bind(this), 'modal:show': _onModalDialog.bind(this, 'open'), 'modal:close': _onModalDialog.bind(this, 'close'), 'modal:hide': _onModalDialog.bind(this, 'hide'), @@ -450,6 +509,9 @@ define([ } }, helpUrl: function () { + if ( helpUrl ) + return helpUrl; + if ( !!nativevars && nativevars.helpUrl ) { var webapp = window.SSE ? 'spreadsheeteditor' : window.PE ? 'presentationeditor' : 'documenteditor'; @@ -458,6 +520,9 @@ define([ return undefined; }, + isHelpAvailable: function () { + return !!helpUrl; + }, getDefaultPrinterName: function () { return nativevars ? nativevars.defaultPrinterName : ''; }, 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++; } diff --git a/apps/common/main/lib/controller/Protection.js b/apps/common/main/lib/controller/Protection.js index cb144953f..fb44466eb 100644 --- a/apps/common/main/lib/controller/Protection.js +++ b/apps/common/main/lib/controller/Protection.js @@ -147,6 +147,23 @@ define([ }, onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function(){ + me.onChangeProtectDocument(); + Common.NotificationCenter.on('protect:doclock', _.bind(me.onChangeProtectDocument, me)); + }); + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props && this.view) { + this.view._state.docProtection = props; + } }, addPassword: function() { diff --git a/apps/common/main/lib/view/Protection.js b/apps/common/main/lib/view/Protection.js index 3e160a629..0a2a98ac3 100644 --- a/apps/common/main/lib/view/Protection.js +++ b/apps/common/main/lib/view/Protection.js @@ -87,10 +87,17 @@ define([ } if (me.appConfig.isSignatureSupport) { - if (this.btnSignature.menu) + if (this.btnSignature.menu) { this.btnSignature.menu.on('item:click', function (menu, item, e) { me.fireEvent('protect:signature', [item.value, false]); }); + this.btnSignature.menu.on('show:after', function (menu, e) { + if (me._state) { + var isProtected = me._state.docProtection ? me._state.docProtection.isReadOnly || me._state.docProtection.isFormsOnly || me._state.docProtection.isCommentsOnly : false; + menu.items && menu.items[1].setDisabled(isProtected || me._state.disabled); + } + }); + } this.btnsInvisibleSignature.forEach(function(button) { button.on('click', function (b, e) { @@ -314,13 +321,14 @@ define([ SetDisabled: function (state, canProtect) { this._state.disabled = state; this._state.invisibleSignDisabled = state && !canProtect; + var isProtected = this._state.docProtection ? this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly : false; this.btnsInvisibleSignature && this.btnsInvisibleSignature.forEach(function(button) { if ( button ) { button.setDisabled(state && !canProtect); } }, this); if (this.btnSignature && this.btnSignature.menu) { - this.btnSignature.menu.items && this.btnSignature.menu.items[1].setDisabled(state); // disable adding signature line + this.btnSignature.menu.items && this.btnSignature.menu.items[1].setDisabled(state || isProtected); // disable adding signature line this.btnSignature.setDisabled(state && !canProtect); // disable adding any signature } this.btnsAddPwd.concat(this.btnsDelPwd, this.btnsChangePwd).forEach(function(button) { 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([ '
', '', '
', - '', + '
', '
', '
', ''; var $item = $(tr).appendTo($innerResults); 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({ diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index 1b88616f6..bd48c26a4 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,15 @@ 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: '--'}, + { 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 +400,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/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: [ 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..80c113152 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"}, @@ -2036,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 () { @@ -2063,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 + '/'; + } } }, @@ -2427,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', @@ -2737,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/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 2bcb0f506..b1b135b62 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -456,20 +456,37 @@ 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.isHelpAvailable() ) + 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'); + } + + me.helpUrl = null; + 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 { diff --git a/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js b/apps/spreadsheeteditor/main/app/view/ImportFromXmlDialog.js new file mode 100644 index 000000000..ac3edc6f5 --- /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 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/RadioBox', + '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 + }); + 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' + }).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', + checked: true + }).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.txtDestRange; + }, + + afterRender: function() { + this._setDefaults(); + }, + + _setDefaults: function () { + var me = this; + this.txtDestRange.validation = function(value) { + 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); + this.txtDestRange.setValue(range); + this.dataDestValid = range; + }, + + 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.ImportXml, 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.ImportXml + }); + } + }, + + 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/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(); }, 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; 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 43f107581..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", @@ -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", @@ -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)", @@ -654,9 +654,13 @@ "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.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", @@ -668,6 +672,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.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.DocumentHolder.alignmentText": "Alignment", "SSE.Controllers.DocumentHolder.centerText": "Center", "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", @@ -886,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.", @@ -1026,6 +1032,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", @@ -1035,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", @@ -1050,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", @@ -1298,7 +1305,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", @@ -1337,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", @@ -1376,55 +1382,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 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 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)", "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 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": "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": "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", + "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", @@ -1472,64 +1478,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": "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", - "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_Custom_1": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", - "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_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_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 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 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": "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", - "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", @@ -1543,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", @@ -1555,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", @@ -1572,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", @@ -1582,16 +1588,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", @@ -2028,15 +2034,16 @@ "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.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.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.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", @@ -2432,6 +2439,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", @@ -2453,8 +2462,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", @@ -2766,6 +2773,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.textDestination": "Choose, where to place the data", + "SSE.Views.ImportFromXmlDialog.textExist": "Existing worksheet", + "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", @@ -2936,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", @@ -2979,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", @@ -3012,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", @@ -3220,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", @@ -3624,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", @@ -3636,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", @@ -3714,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", @@ -3726,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", @@ -3741,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", @@ -3786,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", @@ -3794,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", @@ -3823,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", @@ -3866,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", @@ -3929,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/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..f0241b748 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -100,12 +100,173 @@ "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", "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", @@ -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", @@ -352,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)", @@ -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ă", @@ -483,11 +654,16 @@ "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", "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?", @@ -496,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", @@ -515,8 +692,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 +863,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 +883,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.", @@ -710,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.", @@ -721,6 +903,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 +922,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 +1005,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 +1032,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", @@ -1191,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ă", @@ -1271,67 +1462,78 @@ "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", "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ă", @@ -1347,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", @@ -1359,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", @@ -1376,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", @@ -1386,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", @@ -1640,27 +1842,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,9 +2030,11 @@ "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.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", @@ -1824,8 +2043,9 @@ "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", "SSE.Views.DataTab.tipRemDuplicates": "Eliminarea rândurilor dublate dintr-o foaie", "SSE.Views.DataTab.tipToColumns": "Scindarea textului din celulă în coloane", @@ -1911,15 +2131,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 +2158,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 +2222,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 +2268,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 +2288,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 +2364,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 +2439,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 +2527,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 +2649,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 +2659,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 +2668,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 +2698,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ă", @@ -2529,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", @@ -2722,6 +2973,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 +3016,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 +3065,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 +3148,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 +3268,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 +3483,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 +3557,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 +3614,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 +3634,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", @@ -3380,16 +3650,17 @@ "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", "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", @@ -3420,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", @@ -3432,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ă", @@ -3501,16 +3772,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", @@ -3521,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ă", @@ -3540,6 +3815,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 +3947,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 +3960,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..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": "Комментарии", @@ -3781,6 +3795,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": "Сохранить", diff --git a/apps/spreadsheeteditor/main/resources/less/rightmenu.less b/apps/spreadsheeteditor/main/resources/less/rightmenu.less index d8783ac31..ab461caf7 100644 --- a/apps/spreadsheeteditor/main/resources/less/rightmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/rightmenu.less @@ -159,13 +159,14 @@ right: 14px; width: 8px; height: 8px; - border: solid 1px @icon-normal-pressed-ie; - border: solid 1px @icon-normal-pressed; + border: solid 1px @icon-normal-ie; + border: solid 1px @icon-normal; opacity: 0.6; border-bottom: none; border-right: none; background-image: none; transform: rotate(-135deg); + filter: none; &.nomargin { margin: 2px; 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", 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/controller/add/AddLink.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx index a42b989b4..1f086c14e 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx @@ -115,8 +115,8 @@ class AddLinkController extends Component { } closeModal () { - if ( Device.phone ) { - f7.popup.close('.add-popup'); + if (Device.phone) { + f7.popup.close('#add-link-popup'); } else { f7.popover.close('#add-link-popover'); } diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index dc0a82233..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' @@ -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 */} @@ -168,7 +167,7 @@ class MainPage extends Component { } { !this.state.collaborationVisible ? null : - + } {appOptions.isDocReady && 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)} + } + /> }