From 0c543de506139603a4aa2e9c02dd1db44e1acd7e Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 9 Jun 2022 23:39:37 +0300 Subject: [PATCH 001/285] [DE PE SSE] Add data-hint-desktop attr --- apps/common/main/lib/component/Mixtbar.js | 2 +- .../common/main/lib/controller/HintManager.js | 42 ++++++++++++++----- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index 9b452c354..bedd1c898 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -107,7 +107,7 @@ define([ '<% } %>' + '<% } %>' + '' + - '' + + '' + ''; this.$layout = $(options.template({ diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 548d6e048..adcb807a8 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -44,6 +44,8 @@ * * * + * data-hint-desktop // true/false + * * Example usage with components: * * new Common.UI.Button({ @@ -231,15 +233,19 @@ Common.UI.HintManager = new(function() { _currentControls = []; _usedTitles = []; var arr = [], - arrItemsWithTitle = []; + arrItemsWithTitle = [], + arrItemsDesktop = []; + if (_.isArray(_currentSection)) { _currentSection.forEach(function (section) { arr = arr.concat($(section).find('[data-hint=' + (_currentLevel) + ']').toArray()); arrItemsWithTitle = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray()); + arrItemsDesktop = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray()); }); } else { arr = $(_currentSection).find('[data-hint=' + (_currentLevel) + ']').toArray(); arrItemsWithTitle = $(_currentSection).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray(); + arrItemsDesktop = $(_currentSection).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray(); } var visibleItems = arr.filter(function (item) { return $(item).is(':visible'); @@ -268,21 +274,34 @@ Common.UI.HintManager = new(function() { }); return; } - var _arrLetters = []; + var getLetterInUILanguage = function (letter) { + var l = letter; + if (_arrAlphabet.indexOf(l) === -1) { + var ind = _arrEnAlphabet.indexOf(l); + l = _arrAlphabet[ind]; + } + return l; + }; + var _arrLetters = [], + _usedLetters = []; + if (arrItemsDesktop.length > 0) { + arrItemsDesktop.forEach(function (item) { + var t = $(item).data('hint-title').toLowerCase(); + t = getLetterInUILanguage(t); + _usedTitles.push(t); + _usedLetters.push(_arrAlphabet.indexOf(t)); + }); + } if (visibleItems.length > _arrAlphabet.length) { visibleItemsWithTitle.forEach(function (item) { var t = $(item).data('hint-title').toLowerCase(); - if (_arrAlphabet.indexOf(t) === -1) { - var ind = _arrEnAlphabet.indexOf(t); - t = _arrAlphabet[ind]; - } + t = getLetterInUILanguage(t); _usedTitles.push(t); }); - _arrLetters = _getLetters(visibleItems.length); + _arrLetters = _getLetters(visibleItems.length + arrItemsDesktop.length); } else { _arrLetters = _arrAlphabet.slice(); } - var usedLetters = []; if (arrItemsWithTitle.length > 0) { visibleItems.forEach(function (item) { var el = $(item); @@ -290,9 +309,9 @@ Common.UI.HintManager = new(function() { if (title) { var ind = _arrEnAlphabet.indexOf(title.toLowerCase()); if (ind === -1) { // we have already changed - usedLetters.push(_arrAlphabet.indexOf(title.toLowerCase())); + _usedLetters.push(_arrAlphabet.indexOf(title.toLowerCase())); } else { - usedLetters.push(ind); + _usedLetters.push(ind); if (_lang !== 'en') { el.attr('data-hint-title', _arrLetters[ind].toUpperCase()); } @@ -300,10 +319,11 @@ Common.UI.HintManager = new(function() { } }); } + Common.NotificationCenter.trigger('hints:used-titles', _currentLevel, arrItemsDesktop.concat(visibleItemsWithTitle), _usedLetters, _arrLetters); var index = 0; visibleItems.forEach(function (item) { var el = $(item); - while (usedLetters.indexOf(index) !== -1) { + while (_usedLetters.indexOf(index) !== -1) { index++; } var title = el.attr('data-hint-title'); From 02a88b340a897c6b7fc02d620140ce0a3e0576b2 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Mon, 20 Jun 2022 10:34:01 +0300 Subject: [PATCH 002/285] [DE] Fix Bug 57472 --- apps/common/mobile/resources/less/common-ios.less | 1 + apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index 3921ef9bb..053b0b571 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -181,6 +181,7 @@ margin-top: 21px; box-sizing: border-box; box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset; + background: @fill-white; } .item-after { .color-preview { diff --git a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx index dd6b5764e..6f7ebb5df 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx @@ -196,7 +196,7 @@ const EditParagraph = props => { const paragraph = props.storeFocusObjects.paragraphObject; const curBackColor = storeParagraphSettings.backColor ? storeParagraphSettings.backColor : storeParagraphSettings.getBackgroundColor(paragraph); - const background = curBackColor !== 'transparent' ? `#${(typeof curBackColor === "object" ? curBackColor.color : curBackColor)}` : curBackColor; + const background = curBackColor !== 'transparent' ? `#${(typeof curBackColor === "object" ? curBackColor.color : curBackColor)}` : ''; const activeStyle = Device.android ? 'link no-active-state' : 'no-active-state'; return ( From fe0ab8706bf5b369181c0b4dd934f48b9efa7370 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 20 Jun 2022 18:40:26 +0300 Subject: [PATCH 003/285] [DE PE SSE] Add getStaticHint method instead of data-hint-desktop attr --- apps/common/main/lib/component/Mixtbar.js | 2 +- .../common/main/lib/controller/HintManager.js | 61 +++++++++++-------- 2 files changed, 37 insertions(+), 26 deletions(-) diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index bedd1c898..9b452c354 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -107,7 +107,7 @@ define([ '<% } %>' + '<% } %>' + '' + - '' + + '' + ''; this.$layout = $(options.template({ diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index adcb807a8..fffee7e21 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -44,7 +44,6 @@ * * * - * data-hint-desktop // true/false * * Example usage with components: * @@ -120,7 +119,10 @@ Common.UI.HintManager = new(function() { _isDocReady = false, _isEditDiagram = false, _usedTitles = [], - _appPrefix; + _appPrefix, + _staticHints = { // for desktop buttons + "btnhome": 'K' + }; var _api; @@ -225,6 +227,15 @@ Common.UI.HintManager = new(function() { return arr; }; + var _getLetterInUILanguage = function (letter) { + var l = letter; + if (_arrAlphabet.indexOf(l) === -1) { + var ind = _arrEnAlphabet.indexOf(l); + l = _arrAlphabet[ind]; + } + return l; + }; + var _isItemDisabled = function (item) { return (item.hasClass('disabled') || item.parent().hasClass('disabled') || item.attr('disabled')); }; @@ -233,19 +244,15 @@ Common.UI.HintManager = new(function() { _currentControls = []; _usedTitles = []; var arr = [], - arrItemsWithTitle = [], - arrItemsDesktop = []; - + arrItemsWithTitle = []; if (_.isArray(_currentSection)) { _currentSection.forEach(function (section) { arr = arr.concat($(section).find('[data-hint=' + (_currentLevel) + ']').toArray()); arrItemsWithTitle = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray()); - arrItemsDesktop = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray()); }); } else { arr = $(_currentSection).find('[data-hint=' + (_currentLevel) + ']').toArray(); arrItemsWithTitle = $(_currentSection).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray(); - arrItemsDesktop = $(_currentSection).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray(); } var visibleItems = arr.filter(function (item) { return $(item).is(':visible'); @@ -274,31 +281,22 @@ Common.UI.HintManager = new(function() { }); return; } - var getLetterInUILanguage = function (letter) { - var l = letter; - if (_arrAlphabet.indexOf(l) === -1) { - var ind = _arrEnAlphabet.indexOf(l); - l = _arrAlphabet[ind]; - } - return l; - }; var _arrLetters = [], _usedLetters = []; - if (arrItemsDesktop.length > 0) { - arrItemsDesktop.forEach(function (item) { - var t = $(item).data('hint-title').toLowerCase(); - t = getLetterInUILanguage(t); + if (_currentLevel === 0) { + for (var key in _staticHints) { + var t = _staticHints[key].toLowerCase(); _usedTitles.push(t); _usedLetters.push(_arrAlphabet.indexOf(t)); - }); + } } if (visibleItems.length > _arrAlphabet.length) { visibleItemsWithTitle.forEach(function (item) { var t = $(item).data('hint-title').toLowerCase(); - t = getLetterInUILanguage(t); + t = _getLetterInUILanguage(t); _usedTitles.push(t); }); - _arrLetters = _getLetters(visibleItems.length + arrItemsDesktop.length); + _arrLetters = _getLetters(visibleItems.length + (_currentLevel === 0 ? _.size(_staticHints) : 0)); } else { _arrLetters = _arrAlphabet.slice(); } @@ -319,7 +317,6 @@ Common.UI.HintManager = new(function() { } }); } - Common.NotificationCenter.trigger('hints:used-titles', _currentLevel, arrItemsDesktop.concat(visibleItemsWithTitle), _usedLetters, _arrLetters); var index = 0; visibleItems.forEach(function (item) { var el = $(item); @@ -638,7 +635,16 @@ Common.UI.HintManager = new(function() { _arrAlphabet = langsJson[lang]; return _arrAlphabet; }; - return !_setAlphabet(lng) ? (!_setAlphabet(lng.split(/[\-_]/)[0]) ? _setAlphabet('en') : true) : true; + var loaded = !_setAlphabet(lng) ? (!_setAlphabet(lng.split(/[\-_]/)[0]) ? _setAlphabet('en') : true) : true; + if (loaded && _lang !== 'en') { + for (var key in _staticHints) { + var hint = _getLetterInUILanguage(_staticHints[key].toLowerCase()); + if (hint) { + _staticHints[key] = hint.toUpperCase(); + } + } + } + return loaded; }); Common.Utils.loadConfig('../../common/main/resources/alphabetletters/qwertyletters.json', function (langsJson) { _arrQwerty = langsJson[_lang]; @@ -679,11 +685,16 @@ Common.UI.HintManager = new(function() { _isEditDiagram = mode.isEditDiagram || mode.isEditMailMerge || mode.isEditOle; }; + var _getStaticHint = function (key) { + return _staticHints[key]; + }; + return { init: _init, setMode: _setMode, clearHints: _clearHints, needCloseFileMenu: _needCloseFileMenu, - isHintVisible: _isHintVisible + isHintVisible: _isHintVisible, + getStaticHint: _getStaticHint } })(); \ No newline at end of file From 618553a03dbcd8420066b46e834ba4eb0ac4016b Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 22 Jun 2022 09:33:01 +0300 Subject: [PATCH 004/285] [DE PE] Fix Bug 57696 --- .../mobile/src/view/edit/EditText.jsx | 21 +++++-------- .../mobile/src/view/edit/EditText.jsx | 31 +++++++------------ 2 files changed, 19 insertions(+), 33 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index b77b024e0..4a085bd69 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -243,25 +243,18 @@ const PageNumbers = observer( props => { return ( - {numberArrays.map((numbers, index) => ( - - {numbers.map((number) => ( - + {numberArrays.map( number => ( + { - storeTextSettings.resetNumbers(number.type); - props.onNumber(number.type); + storeTextSettings.resetNumbers(number.subtype); + props.onNumber(number.subtype); }}> - {number.thumb.length < 1 ? - - - : - - } +
))} -
- ))} +
); }); diff --git a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx index 778473eb0..4e003d176 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx @@ -570,25 +570,18 @@ const PageNumbers = observer(props => { return ( - {numberArrays.map((numbers, index) => ( - - {numbers.map((number) => ( - { - storeTextSettings.resetNumbers(number.type); - props.onNumber(number.type); - }}> - {number.thumb.length < 1 ? - - - : - - } - - ))} - - ))} + + {numberArrays.map( number => ( + { + storeTextSettings.resetNumbers(number.subtype); + props.onNumber(number.subtype); + }}> +
+
+ ))} +
); }); From 43018a168c5f2e32686a6135e7563cf76cdee972 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 22 Jun 2022 10:04:59 +0300 Subject: [PATCH 005/285] [PE] Fix Bug 57708 --- apps/presentationeditor/mobile/src/less/app.less | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/presentationeditor/mobile/src/less/app.less b/apps/presentationeditor/mobile/src/less/app.less index 52f98b332..5fadef946 100644 --- a/apps/presentationeditor/mobile/src/less/app.less +++ b/apps/presentationeditor/mobile/src/less/app.less @@ -141,6 +141,7 @@ display: flex; justify-content: space-between; flex-wrap: wrap; + width: auto; padding-left: 18px; padding-right: 18px; padding-bottom: 14px; From ff5b1cf090f986e976e66830d35d2a1796e66519 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 23 Jun 2022 00:20:16 +0400 Subject: [PATCH 006/285] [SSE mobile] Fix Bug 57699 --- apps/common/mobile/resources/less/common.less | 3 +++ .../mobile/src/controller/CellEditor.jsx | 12 ++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index b54e508d6..a46dc527a 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -1086,6 +1086,9 @@ input[type="number"]::-webkit-inner-spin-button { .view { transition: .2s height; } + .popover-angle.on-bottom { + display: none; + } } .target-function-list { diff --git a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx index 4d3e89c39..9b67440ba 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx @@ -93,14 +93,22 @@ const CellEditor = inject("storeFunctions")(observer(props => { return {name, type, descr, caption, args}; }); - - setHintArr(hintArr); + setFuncArr(funcArr); + setHintArr(hintArr); f7.popover.open('#idx-functions-list', '#idx-list-target'); + + const listTarget = document.querySelector('#idx-list-target'); + const rect = listTarget.getBoundingClientRect(); + const popoverList = document.querySelector('#idx-functions-list'); + + popoverList.style.top = `${rect.bottom}px`; + popoverList.style.left = `${rect.left}px`; } else { f7.popover.close('#idx-functions-list'); setFuncArr(''); + setHintArr(''); } } From cee46a080bab977ed898f1fe935e65d8f3573fcd Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 23 Jun 2022 18:51:52 +0300 Subject: [PATCH 007/285] [mobile] added build number to version --- vendor/framework7-react/build/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/framework7-react/build/webpack.config.js b/vendor/framework7-react/build/webpack.config.js index dbbdf6f8c..aa3fbaf54 100644 --- a/vendor/framework7-react/build/webpack.config.js +++ b/vendor/framework7-react/build/webpack.config.js @@ -170,7 +170,7 @@ module.exports = { new webpack.DefinePlugin({ 'process.env.NODE_ENV': JSON.stringify(env), 'process.env.TARGET': JSON.stringify(target), - __PRODUCT_VERSION__: JSON.stringify(process.env.PRODUCT_VERSION ? process.env.PRODUCT_VERSION : '6.2.0d'), + __PRODUCT_VERSION__: JSON.stringify(process.env.PRODUCT_VERSION ? `${process.env.PRODUCT_VERSION}.${process.env.BUILD_NUMBER}` : '6.2.0.123d'), __PUBLISHER_ADDRESS__: JSON.stringify(process.env.PUBLISHER_ADDRESS || '20A-12 Ernesta Birznieka-Upisha street, Riga, Latvia, EU, LV-1050'), __SUPPORT_EMAIL__: JSON.stringify(process.env.SUPPORT_EMAIL || 'support@onlyoffice.com'), __SUPPORT_URL__: JSON.stringify(process.env.SUPPORT_URL || 'https://support.onlyoffice.com'), From 932ea3b87dea9df5c2a6540d5b52f8f3d08e6c4e Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 23 Jun 2022 21:17:13 +0300 Subject: [PATCH 008/285] [DE] Fix bug 57754 --- apps/documenteditor/main/app/view/FileMenuPanels.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 9efe54cac..5b51fec86 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -560,7 +560,10 @@ define([ this.rbChangesTip = new Common.UI.RadioBox({ el :$markup.findById('#fms-rb-show-track-tooltips'), name : 'show-track-changes', - labelText : this.txtChangesTip + labelText : this.txtChangesTip, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' }); this.rbShowChangesNone = new Common.UI.RadioBox({ From 832f9e76c117464f1fa7d715ef12376b6540d828 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 23 Jun 2022 21:23:01 +0300 Subject: [PATCH 009/285] [SSE] Fix bug 57758 --- apps/spreadsheeteditor/main/app/view/FileMenuPanels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 8550c804b..f71b4e1b4 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -540,7 +540,7 @@ define([ data : regdata, template: _.template([ '', - '', + '', '', '', + '', '', '', '', From 2ff9f8537f29f138e63e38a609dafd833eee0892 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 23 Jun 2022 22:12:36 +0300 Subject: [PATCH 011/285] Refactoring navigation panel --- apps/documenteditor/main/app/controller/Navigation.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index 31daa23b5..6eb7b8105 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -57,10 +57,7 @@ define([ 'Navigation': { 'show': function() { if (!this.canUseViwerNavigation) { - var obj = me.api.asc_ShowDocumentOutline(); - if (!me._navigationObject) - me._navigationObject = obj; - me.updateNavigation(); + me.api.asc_ShowDocumentOutline(); } else { if (me.panelNavigation && me.panelNavigation.viewNavigationList && me.panelNavigation.viewNavigationList.scroller) me.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); @@ -131,6 +128,9 @@ define([ }, updateNavigation: function() { + if (!this._navigationObject) + this._navigationObject = this.api.asc_GetDocumentOutlineManager(); + if (!this._navigationObject) return; var count = this._navigationObject.get_ElementsCount(), @@ -168,6 +168,9 @@ define([ }, updateChangeNavigation: function(index) { + if (!this._navigationObject) + this._navigationObject = this.api.asc_GetDocumentOutlineManager(); + if (!this._navigationObject) return; var item = this.getApplication().getCollection('Navigation').at(index); From 1d6612ea78822faaf8415948ee506e4922a4ad88 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 24 Jun 2022 01:51:50 +0300 Subject: [PATCH 012/285] Fix Bug 57734 --- .../main/app/controller/Navigation.js | 32 +++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index 6eb7b8105..8437e974f 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -163,8 +163,31 @@ define([ arr[0].set('name', this.txtBeginning); arr[0].set('tip', this.txtGotoBeginning); } - this.getApplication().getCollection('Navigation').reset(arr); - this.onChangeOutlinePosition(this._navigationObject.get_CurrentPosition()); + + var me = this; + var store = this.getApplication().getCollection('Navigation');//.reset(arr); + store.reset(arr.splice(0, 50)); + + this._currentPos = this._navigationObject.get_CurrentPosition(); + + function addToPanel() { + if (arr.length<1) { + me.panelNavigation.viewNavigationList.scroller && me.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); + if (me._currentPos>-1 && me._currentPos-1 && me._currentPos Date: Fri, 24 Jun 2022 01:53:28 +0300 Subject: [PATCH 013/285] Refactoring --- apps/documenteditor/main/app/controller/Navigation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index 8437e974f..fb97d8707 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -165,7 +165,7 @@ define([ } var me = this; - var store = this.getApplication().getCollection('Navigation');//.reset(arr); + var store = this.getApplication().getCollection('Navigation'); store.reset(arr.splice(0, 50)); this._currentPos = this._navigationObject.get_CurrentPosition(); From 7ed712e31bd399466cda3c4c4fbe405c04801b50 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 24 Jun 2022 12:32:47 +0300 Subject: [PATCH 014/285] Update translation --- apps/documenteditor/embed/locale/ca.json | 1 + apps/documenteditor/embed/locale/cs.json | 2 + apps/documenteditor/embed/locale/es.json | 2 + apps/documenteditor/embed/locale/fr.json | 1 + apps/documenteditor/embed/locale/it.json | 2 + apps/documenteditor/embed/locale/pt-PT.json | 17 +- apps/documenteditor/embed/locale/tr.json | 2 + apps/documenteditor/forms/locale/ca.json | 5 + apps/documenteditor/forms/locale/cs.json | 5 + apps/documenteditor/forms/locale/es.json | 5 + apps/documenteditor/forms/locale/fr.json | 5 + apps/documenteditor/forms/locale/it.json | 5 + apps/documenteditor/forms/locale/pt-PT.json | 49 +- apps/documenteditor/main/locale/ca.json | 1 + apps/documenteditor/main/locale/cs.json | 76 +- apps/documenteditor/main/locale/de.json | 144 +- apps/documenteditor/main/locale/en.json | 40 +- apps/documenteditor/main/locale/es.json | 72 +- apps/documenteditor/main/locale/fr.json | 4 + apps/documenteditor/main/locale/hy.json | 8 - apps/documenteditor/main/locale/it.json | 86 +- apps/documenteditor/main/locale/nl.json | 2 + apps/documenteditor/main/locale/pt-PT.json | 96 +- apps/documenteditor/main/locale/ro.json | 27 + apps/documenteditor/main/locale/ru.json | 27 + apps/documenteditor/main/locale/tr.json | 82 + apps/documenteditor/main/locale/zh.json | 1 + apps/presentationeditor/embed/locale/ca.json | 1 + apps/presentationeditor/embed/locale/cs.json | 2 + apps/presentationeditor/embed/locale/es.json | 2 + apps/presentationeditor/embed/locale/fr.json | 1 + apps/presentationeditor/embed/locale/it.json | 2 + .../embed/locale/pt-PT.json | 7 +- apps/presentationeditor/main/locale/ca.json | 1 + apps/presentationeditor/main/locale/cs.json | 83 +- apps/presentationeditor/main/locale/es.json | 83 +- apps/presentationeditor/main/locale/fr.json | 3 + apps/presentationeditor/main/locale/hy.json | 3 +- apps/presentationeditor/main/locale/it.json | 109 +- apps/presentationeditor/main/locale/nl.json | 57 +- .../presentationeditor/main/locale/pt-PT.json | 178 +- apps/presentationeditor/main/locale/ro.json | 7 + apps/presentationeditor/main/locale/ru.json | 7 + apps/presentationeditor/main/locale/tr.json | 73 + apps/presentationeditor/main/locale/zh.json | 1 + apps/spreadsheeteditor/embed/locale/ca.json | 1 + apps/spreadsheeteditor/embed/locale/cs.json | 2 + apps/spreadsheeteditor/embed/locale/es.json | 2 + apps/spreadsheeteditor/embed/locale/fr.json | 1 + apps/spreadsheeteditor/embed/locale/it.json | 2 + .../spreadsheeteditor/embed/locale/pt-PT.json | 9 +- apps/spreadsheeteditor/embed/locale/tr.json | 2 + apps/spreadsheeteditor/main/locale/ca.json | 1 + apps/spreadsheeteditor/main/locale/cs.json | 82 +- apps/spreadsheeteditor/main/locale/en.json | 4 +- apps/spreadsheeteditor/main/locale/es.json | 84 +- apps/spreadsheeteditor/main/locale/fr.json | 8 + apps/spreadsheeteditor/main/locale/hy.json | 2355 ++++++++++++++++- apps/spreadsheeteditor/main/locale/it.json | 87 +- apps/spreadsheeteditor/main/locale/nl.json | 58 +- apps/spreadsheeteditor/main/locale/pt-PT.json | 175 +- apps/spreadsheeteditor/main/locale/ro.json | 2 + apps/spreadsheeteditor/main/locale/ru.json | 2 + apps/spreadsheeteditor/main/locale/zh.json | 1 + 64 files changed, 3933 insertions(+), 332 deletions(-) diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index 05a31b688..4de89cce2 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -47,5 +47,6 @@ "DE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", "DE.ApplicationView.txtFullScreen": "Pantalla completa", "DE.ApplicationView.txtPrint": "Imprimeix", + "DE.ApplicationView.txtSearch": "Cerca", "DE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/cs.json b/apps/documenteditor/embed/locale/cs.json index ed035d59c..08caee964 100644 --- a/apps/documenteditor/embed/locale/cs.json +++ b/apps/documenteditor/embed/locale/cs.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Odkaz pro sdílení", "common.view.modals.txtWidth": "Šířka", + "common.view.SearchBar.textFind": "Najít", "DE.ApplicationController.convertationErrorText": "Převod se nezdařil.", "DE.ApplicationController.convertationTimeoutText": "Překročen časový limit pro provedení převodu.", "DE.ApplicationController.criticalErrorTitle": "Chyba", @@ -46,5 +47,6 @@ "DE.ApplicationView.txtFileLocation": "Otevřít umístění souboru", "DE.ApplicationView.txtFullScreen": "Na celou obrazovku", "DE.ApplicationView.txtPrint": "Tisk", + "DE.ApplicationView.txtSearch": "Hledat", "DE.ApplicationView.txtShare": "Sdílet" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index e091a1c5e..f0ec7d77e 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", + "common.view.SearchBar.textFind": "Buscar", "DE.ApplicationController.convertationErrorText": "Fallo de conversión.", "DE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "DE.ApplicationController.criticalErrorTitle": "Error", @@ -46,5 +47,6 @@ "DE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", "DE.ApplicationView.txtFullScreen": "Pantalla completa", "DE.ApplicationView.txtPrint": "Imprimir", + "DE.ApplicationView.txtSearch": "Búsqueda", "DE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 6d5e66a31..6fa476184 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -47,5 +47,6 @@ "DE.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "DE.ApplicationView.txtFullScreen": "Plein écran", "DE.ApplicationView.txtPrint": "Imprimer", + "DE.ApplicationView.txtSearch": "Recherche", "DE.ApplicationView.txtShare": "Partager" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index 13f5c3931..121c411e0 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Altezza", "common.view.modals.txtShare": "Condividi collegamento", "common.view.modals.txtWidth": "Larghezza", + "common.view.SearchBar.textFind": "Trova", "DE.ApplicationController.convertationErrorText": "Conversione fallita.", "DE.ApplicationController.convertationTimeoutText": "È stato superato il tempo limite della conversione.", "DE.ApplicationController.criticalErrorTitle": "Errore", @@ -46,5 +47,6 @@ "DE.ApplicationView.txtFileLocation": "Apri percorso file", "DE.ApplicationView.txtFullScreen": "Schermo intero", "DE.ApplicationView.txtPrint": "Stampa", + "DE.ApplicationView.txtSearch": "Cerca", "DE.ApplicationView.txtShare": "Condividi" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/pt-PT.json b/apps/documenteditor/embed/locale/pt-PT.json index a1ef5e10e..a95a91031 100644 --- a/apps/documenteditor/embed/locale/pt-PT.json +++ b/apps/documenteditor/embed/locale/pt-PT.json @@ -12,13 +12,13 @@ "DE.ApplicationController.downloadTextText": "A descarregar documento…", "DE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.
Contacte o administrador do servidor de documentos.", "DE.ApplicationController.errorDefaultMessage": "Código de erro: %1", - "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.", + "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar o documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.", "DE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.", - "DE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", - "DE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "DE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite permitido pelo servidor.
Contacte o administrador do servidor de documentos para mais informações.", + "DE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente mais tarde.", "DE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", "DE.ApplicationController.errorSubmit": "Falha ao submeter.", - "DE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "DE.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou.
Entre em contacto com o administrador do servidor de documentos.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", "DE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", @@ -29,11 +29,11 @@ "DE.ApplicationController.textGotIt": "Percebi", "DE.ApplicationController.textGuest": "Convidado", "DE.ApplicationController.textLoadingDocument": "A carregar documento", - "DE.ApplicationController.textNext": "Próximo campo", + "DE.ApplicationController.textNext": "Campo seguinte", "DE.ApplicationController.textOf": "de", - "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatório para poder submeter o formulário.", + "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatório para submeter o formulário.", "DE.ApplicationController.textSubmit": "Submeter", - "DE.ApplicationController.textSubmited": "Formulário submetido com êxito
Clique para fechar a dica", + "DE.ApplicationController.textSubmited": "Formulário submetido com sucesso
Clique para fechar a dica", "DE.ApplicationController.txtClose": "Fechar", "DE.ApplicationController.txtEmpty": "(Vazio)", "DE.ApplicationController.txtPressLink": "Prima Ctrl e clique na ligação", @@ -45,7 +45,8 @@ "DE.ApplicationView.txtDownloadPdf": "Descarregar como pdf", "DE.ApplicationView.txtEmbed": "Incorporar", "DE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", - "DE.ApplicationView.txtFullScreen": "Ecrã inteiro", + "DE.ApplicationView.txtFullScreen": "Ecrã completo", "DE.ApplicationView.txtPrint": "Imprimir", + "DE.ApplicationView.txtSearch": "Pesquisar", "DE.ApplicationView.txtShare": "Partilhar" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/tr.json b/apps/documenteditor/embed/locale/tr.json index 9e2c58d79..00ba75b72 100644 --- a/apps/documenteditor/embed/locale/tr.json +++ b/apps/documenteditor/embed/locale/tr.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Yükseklik", "common.view.modals.txtShare": "Bağlantıyı Paylaş", "common.view.modals.txtWidth": "Genişlik", + "common.view.SearchBar.textFind": "Bul", "DE.ApplicationController.convertationErrorText": "Değişim başarısız oldu.", "DE.ApplicationController.convertationTimeoutText": "Değişim süresi aşıldı.", "DE.ApplicationController.criticalErrorTitle": "Hata", @@ -46,5 +47,6 @@ "DE.ApplicationView.txtFileLocation": "Dosya konumunu aç", "DE.ApplicationView.txtFullScreen": "Tam Ekran", "DE.ApplicationView.txtPrint": "Yazdır", + "DE.ApplicationView.txtSearch": "Arama", "DE.ApplicationView.txtShare": "Paylaş" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index 00dd31c01..890fece20 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -32,6 +32,10 @@ "Common.UI.Calendar.textShortTuesday": "dt.", "Common.UI.Calendar.textShortWednesday": "dc.", "Common.UI.Calendar.textYears": "Anys", + "Common.UI.SearchBar.textFind": "Cercar", + "Common.UI.SearchBar.tipCloseSearch": "Tanca la cerca", + "Common.UI.SearchBar.tipNextResult": "El resultat següent", + "Common.UI.SearchBar.tipPreviousResult": "El resultat anterior", "Common.UI.Themes.txtThemeClassicLight": "Llum clàssica", "Common.UI.Themes.txtThemeDark": "Fosc", "Common.UI.Themes.txtThemeLight": "Clar", @@ -166,6 +170,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", "DE.Views.ApplicationView.txtFullScreen": "Pantalla sencera", "DE.Views.ApplicationView.txtPrint": "Imprimeix", + "DE.Views.ApplicationView.txtSearch": "Cerca", "DE.Views.ApplicationView.txtShare": "Comparteix", "DE.Views.ApplicationView.txtTheme": "Tema de la interfície" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/cs.json b/apps/documenteditor/forms/locale/cs.json index c45e2c933..93584e468 100644 --- a/apps/documenteditor/forms/locale/cs.json +++ b/apps/documenteditor/forms/locale/cs.json @@ -32,6 +32,10 @@ "Common.UI.Calendar.textShortTuesday": "út", "Common.UI.Calendar.textShortWednesday": "st", "Common.UI.Calendar.textYears": "roky", + "Common.UI.SearchBar.textFind": "Najít", + "Common.UI.SearchBar.tipCloseSearch": "Zavřít hledání", + "Common.UI.SearchBar.tipNextResult": "Následující", + "Common.UI.SearchBar.tipPreviousResult": "Předchozí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", @@ -166,6 +170,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Otevřít umístění souboru", "DE.Views.ApplicationView.txtFullScreen": "Na celou obrazovku", "DE.Views.ApplicationView.txtPrint": "Tisk", + "DE.Views.ApplicationView.txtSearch": "Hledat", "DE.Views.ApplicationView.txtShare": "Sdílet", "DE.Views.ApplicationView.txtTheme": "Vzhled prostředí" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/es.json b/apps/documenteditor/forms/locale/es.json index e716dccca..e325bac9f 100644 --- a/apps/documenteditor/forms/locale/es.json +++ b/apps/documenteditor/forms/locale/es.json @@ -32,6 +32,10 @@ "Common.UI.Calendar.textShortTuesday": "Ma", "Common.UI.Calendar.textShortWednesday": "Mié", "Common.UI.Calendar.textYears": "años", + "Common.UI.SearchBar.textFind": "Buscar", + "Common.UI.SearchBar.tipCloseSearch": "Cerrar búsqueda", + "Common.UI.SearchBar.tipNextResult": "Resultado siguiente", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.Themes.txtThemeClassicLight": "Clásico claro", "Common.UI.Themes.txtThemeDark": "Oscuro", "Common.UI.Themes.txtThemeLight": "Claro", @@ -166,6 +170,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", "DE.Views.ApplicationView.txtFullScreen": "Pantalla Completa", "DE.Views.ApplicationView.txtPrint": "Imprimir", + "DE.Views.ApplicationView.txtSearch": "Búsqueda", "DE.Views.ApplicationView.txtShare": "Compartir", "DE.Views.ApplicationView.txtTheme": "Tema de interfaz" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/fr.json b/apps/documenteditor/forms/locale/fr.json index a872d7c4c..678705aab 100644 --- a/apps/documenteditor/forms/locale/fr.json +++ b/apps/documenteditor/forms/locale/fr.json @@ -32,6 +32,10 @@ "Common.UI.Calendar.textShortTuesday": "Mar.", "Common.UI.Calendar.textShortWednesday": "Mer.", "Common.UI.Calendar.textYears": "Années", + "Common.UI.SearchBar.textFind": "Rechercher", + "Common.UI.SearchBar.tipCloseSearch": "Fermer la recherche", + "Common.UI.SearchBar.tipNextResult": "Résultat suivant", + "Common.UI.SearchBar.tipPreviousResult": "Résultat précédent", "Common.UI.Themes.txtThemeClassicLight": "Classique clair", "Common.UI.Themes.txtThemeDark": "Sombre", "Common.UI.Themes.txtThemeLight": "Clair", @@ -166,6 +170,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "DE.Views.ApplicationView.txtFullScreen": "Plein écran", "DE.Views.ApplicationView.txtPrint": "Imprimer", + "DE.Views.ApplicationView.txtSearch": "Recherche", "DE.Views.ApplicationView.txtShare": "Partager", "DE.Views.ApplicationView.txtTheme": "Thème d’interface" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/it.json b/apps/documenteditor/forms/locale/it.json index f6fa1b13e..f2f410e5c 100644 --- a/apps/documenteditor/forms/locale/it.json +++ b/apps/documenteditor/forms/locale/it.json @@ -32,6 +32,10 @@ "Common.UI.Calendar.textShortTuesday": "Mar", "Common.UI.Calendar.textShortWednesday": "Mer", "Common.UI.Calendar.textYears": "anni", + "Common.UI.SearchBar.textFind": "Trova", + "Common.UI.SearchBar.tipCloseSearch": "Chiudi la ricerca", + "Common.UI.SearchBar.tipNextResult": "Successivo", + "Common.UI.SearchBar.tipPreviousResult": "Precedente", "Common.UI.Themes.txtThemeClassicLight": "Classico chiaro", "Common.UI.Themes.txtThemeDark": "Scuro", "Common.UI.Themes.txtThemeLight": "Chiaro", @@ -166,6 +170,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Apri percorso file", "DE.Views.ApplicationView.txtFullScreen": "Schermo intero", "DE.Views.ApplicationView.txtPrint": "Stampa", + "DE.Views.ApplicationView.txtSearch": "Cerca", "DE.Views.ApplicationView.txtShare": "Condividi", "DE.Views.ApplicationView.txtTheme": "Tema dell'interfaccia" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/pt-PT.json b/apps/documenteditor/forms/locale/pt-PT.json index 15db13729..8a6c0d86c 100644 --- a/apps/documenteditor/forms/locale/pt-PT.json +++ b/apps/documenteditor/forms/locale/pt-PT.json @@ -32,6 +32,10 @@ "Common.UI.Calendar.textShortTuesday": "Ter", "Common.UI.Calendar.textShortWednesday": "Qua", "Common.UI.Calendar.textYears": "Anos", + "Common.UI.SearchBar.textFind": "Localizar", + "Common.UI.SearchBar.tipCloseSearch": "Fechar pesquisa", + "Common.UI.SearchBar.tipNextResult": "Resultado seguinte", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", "Common.UI.Themes.txtThemeDark": "Escuro", "Common.UI.Themes.txtThemeLight": "Claro", @@ -55,10 +59,10 @@ "Common.Views.EmbedDialog.textTitle": "Incorporar", "Common.Views.EmbedDialog.textWidth": "Largura", "Common.Views.EmbedDialog.txtCopy": "Copiar para a área de transferência", - "Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Use a tecla de atalho [Ctrl] + [C]", - "Common.Views.ImageFromUrlDialog.textUrl": "Colar um URL de imagem:", + "Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Utilize a tecla de atalho [Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Colar URL de uma imagem:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser um URL no formato \"http://www.example.com\"", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", "Common.Views.OpenDialog.closeButtonText": "Fechar ficheiro", "Common.Views.OpenDialog.txtEncoding": "Codificação", "Common.Views.OpenDialog.txtIncorrectPwd": "A palavra-passe está incorreta.", @@ -66,15 +70,15 @@ "Common.Views.OpenDialog.txtPassword": "Palavra-passe", "Common.Views.OpenDialog.txtPreview": "Pré-visualizar", "Common.Views.OpenDialog.txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta.", - "Common.Views.OpenDialog.txtTitle": "Escolha opções para %1", + "Common.Views.OpenDialog.txtTitle": "Escolha as opções para %1", "Common.Views.OpenDialog.txtTitleProtected": "Ficheiro protegido", "Common.Views.SaveAsDlg.textLoading": "A carregar", "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", "Common.Views.SelectFileDlg.textLoading": "A carregar", - "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", + "Common.Views.SelectFileDlg.textTitle": "Selecione a origem dos dados", "Common.Views.ShareDialog.textTitle": "Partilhar ligação", "Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência", - "Common.Views.ShareDialog.warnCopy": "Erro do navegador! Use a tecla de atalho [Ctrl] + [C]", + "Common.Views.ShareDialog.warnCopy": "Erro do navegador! Utilize a tecla de atalho [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Falha na conversão.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Erro", @@ -82,22 +86,22 @@ "DE.Controllers.ApplicationController.downloadTextText": "A descarregar documento...", "DE.Controllers.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissões.
Por favor contacte o administrador do servidor de documentos.", "DE.Controllers.ApplicationController.errorBadImageUrl": "O URL da imagem está incorreto", - "DE.Controllers.ApplicationController.errorConnectToServer": "Não foi possível guardar o documento. Verifique as definições de ligação ou contacte o administrador.
Quando clicar no botão 'OK', ser-lhe-á pedido para descarregar o documento.", + "DE.Controllers.ApplicationController.errorConnectToServer": "Não foi possível guardar o documento. Verifique a sua ligação de rede ou contacte o seu administrador.
Ao clicar no botão OK, ser-lhe-á pedido para descarregar o documento.", "DE.Controllers.ApplicationController.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", - "DE.Controllers.ApplicationController.errorDefaultMessage": "Código do erro: %1", + "DE.Controllers.ApplicationController.errorDefaultMessage": "Código de erro: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.", "DE.Controllers.ApplicationController.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", "DE.Controllers.ApplicationController.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", - "DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", - "DE.Controllers.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite permitido pelo servidor.
Contacte o administrador do servidor de documentos para mais informações.", + "DE.Controllers.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente mais tarde.", "DE.Controllers.ApplicationController.errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", "DE.Controllers.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.", - "DE.Controllers.ApplicationController.errorSessionIdle": "O documento não foi editado durante muito tempo. Por favor, recarregue a página.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Este documento não foi editado durante muito tempo. Tente recarregar a página.", "DE.Controllers.ApplicationController.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.", - "DE.Controllers.ApplicationController.errorSubmit": "Falha no envio.", - "DE.Controllers.ApplicationController.errorToken": "O token do documento não está correctamente formado.
Por favor contacte o seu administrador do Servidor de Documentos.", - "DE.Controllers.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "DE.Controllers.ApplicationController.errorSubmit": "Falha ao submeter.", + "DE.Controllers.ApplicationController.errorToken": "O 'token' de segurança do documento não foi formatado corretamente.
Entre em contato com o administrador do servidor de documentos.", + "DE.Controllers.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou.
Entre em contacto com o administrador do servidor de documentos.", "DE.Controllers.ApplicationController.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", "DE.Controllers.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", @@ -108,10 +112,10 @@ "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.Controllers.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", "DE.Controllers.ApplicationController.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.", - "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.
Os motivos podem ser:
1. O ficheiro é apenas de leitura.
2. O ficheiro está a ser editado por outro utilizador.
3. O disco está cheio ou corrompido.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.
Os motivos podem ser:
1. O ficheiro é apenas de leitura.
2. O ficheiro está a ser editado por outro utilizador.
3. O disco está cheio ou danificado.", "DE.Controllers.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.", "DE.Controllers.ApplicationController.textAnonymous": "Anónimo", - "DE.Controllers.ApplicationController.textBuyNow": "Visitar website", + "DE.Controllers.ApplicationController.textBuyNow": "Visitar site", "DE.Controllers.ApplicationController.textCloseTip": "Clique para fechar a dica.", "DE.Controllers.ApplicationController.textContactUs": "Contacte a equipa comercial", "DE.Controllers.ApplicationController.textGotIt": "Percebi", @@ -119,10 +123,10 @@ "DE.Controllers.ApplicationController.textLoadingDocument": "A carregar documento", "DE.Controllers.ApplicationController.textNoLicenseTitle": "Limite de licença atingido", "DE.Controllers.ApplicationController.textOf": "de", - "DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", + "DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatório para submeter o formulário.", "DE.Controllers.ApplicationController.textSaveAs": "Guardar como PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Guardar como...", - "DE.Controllers.ApplicationController.textSubmited": "Formulário submetido com êxito
Clique para fechar a dica", + "DE.Controllers.ApplicationController.textSubmited": "Formulário submetido com sucesso
Clique para fechar a dica", "DE.Controllers.ApplicationController.titleLicenseExp": "Licença expirada", "DE.Controllers.ApplicationController.titleServerVersion": "Editor atualizado", "DE.Controllers.ApplicationController.titleUpdateVersion": "Versão alterada", @@ -138,11 +142,11 @@ "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", "DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato de imagem desconhecido.", "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", - "DE.Controllers.ApplicationController.waitText": "Por favor, aguarde...", + "DE.Controllers.ApplicationController.waitText": "Aguarde...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte o administrador para obter mais detalhes.", "DE.Controllers.ApplicationController.warnLicenseExp": "A sua licença expirou.
Deve atualizar a licença e recarregar a página.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licença expirada.
Não pode editar o documento.
Por favor contacte o administrador de sistemas.", - "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
A edição de documentos está limitada.
Contacte o administrador de sistemas para obter acesso completo.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
A edição de documentos está limitada.
Contacte o administrador de sistemas para obter acesso total.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", "DE.Controllers.ApplicationController.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", @@ -155,7 +159,7 @@ "DE.Views.ApplicationView.textPaste": "Colar", "DE.Views.ApplicationView.textPrintSel": "Imprimir seleção", "DE.Views.ApplicationView.textRedo": "Refazer", - "DE.Views.ApplicationView.textSubmit": "Enviar", + "DE.Views.ApplicationView.textSubmit": "Submeter", "DE.Views.ApplicationView.textUndo": "Desfazer", "DE.Views.ApplicationView.textZoom": "Ampliação", "DE.Views.ApplicationView.txtDarkMode": "Modo escuro", @@ -166,6 +170,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", "DE.Views.ApplicationView.txtFullScreen": "Ecrã completo", "DE.Views.ApplicationView.txtPrint": "Imprimir", - "DE.Views.ApplicationView.txtShare": "Compartilhar", + "DE.Views.ApplicationView.txtSearch": "Pesquisar", + "DE.Views.ApplicationView.txtShare": "Partilhar", "DE.Views.ApplicationView.txtTheme": "Tema da interface" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index d88b11d0f..69ddbae69 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -344,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "S'està carregant", "Common.Views.Plugins.groupCaption": "Complements", "Common.Views.Plugins.strPlugins": "Complements", + "Common.Views.Plugins.textClosePanel": "Tanca el connector", "Common.Views.Plugins.textLoading": "S'està carregant", "Common.Views.Plugins.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 3d6e90d8c..6af05fb02 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -121,6 +121,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhlazenými spojnicemi a značkami", "Common.define.chartData.textStock": "Burzovní graf", "Common.define.chartData.textSurface": "Povrch", + "Common.Translation.textMoreButton": "Více", "Common.Translation.warnFileLocked": "Dokument není možné editovat, protože je používán jinou aplikací.", "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", "Common.Translation.warnFileLockedBtnView": "Otevřít pro náhled", @@ -170,6 +171,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Bez barvy", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobrazit heslo", + "Common.UI.SearchBar.textFind": "Najít", + "Common.UI.SearchBar.tipCloseSearch": "Zavřít hledání", + "Common.UI.SearchBar.tipNextResult": "Následující", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Otevřít pokročilé nastavení", + "Common.UI.SearchBar.tipPreviousResult": "Předchozí", "Common.UI.SearchDialog.textHighlight": "Zvýraznit výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovat malá a velká písmena", "Common.UI.SearchDialog.textReplaceDef": "Zadejte text, kterým nahradit", @@ -182,11 +188,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradit vše", "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtení těch od ostatních.", + "Common.UI.ThemeColorPalette.textRecentColors": "Aktuální barvy", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy vzhledu prostředí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", + "Common.UI.Themes.txtThemeSystem": "Stejné jako systémové", "Common.UI.Window.cancelButtonText": "Zrušit", "Common.UI.Window.closeButtonText": "Zavřít", "Common.UI.Window.noButtonText": "Ne", @@ -285,6 +293,7 @@ "Common.Views.Header.textHideLines": "Skrýt pravítka", "Common.Views.Header.textHideStatusBar": "Skrýt stavový řádek", "Common.Views.Header.textRemoveFavorite": "Odebrat z oblíbených", + "Common.Views.Header.textShare": "Sdílet", "Common.Views.Header.textZoom": "Přiblížení", "Common.Views.Header.tipAccessRights": "Spravovat přístupová práva k dokumentům", "Common.Views.Header.tipDownload": "Stáhnout soubor", @@ -292,7 +301,9 @@ "Common.Views.Header.tipPrint": "Vytisknout soubor", "Common.Views.Header.tipRedo": "Znovu", "Common.Views.Header.tipSave": "Uložit", + "Common.Views.Header.tipSearch": "Hledat", "Common.Views.Header.tipUndo": "Zpět", + "Common.Views.Header.tipUsers": "Zobrazit uživatele", "Common.Views.Header.tipViewSettings": "Zobrazit nastavení", "Common.Views.Header.tipViewUsers": "Zobrazte uživatele a spravujte přístupová práva k dokumentům", "Common.Views.Header.txtAccessRights": "Změnit přístupová práva", @@ -333,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "Načítání…", "Common.Views.Plugins.groupCaption": "Zásuvné moduly", "Common.Views.Plugins.strPlugins": "Zásuvné moduly", + "Common.Views.Plugins.textClosePanel": "Zavřít zásuvné moduly", "Common.Views.Plugins.textLoading": "Načítání…", "Common.Views.Plugins.textStart": "Začátek", "Common.Views.Plugins.textStop": "Stop", @@ -446,6 +458,21 @@ "Common.Views.ReviewPopover.txtReject": "Odmítnout", "Common.Views.SaveAsDlg.textLoading": "Načítání", "Common.Views.SaveAsDlg.textTitle": "Složka do které uložit", + "Common.Views.SearchPanel.textCaseSensitive": "Rozlišovat malá a velká písmena", + "Common.Views.SearchPanel.textCloseSearch": "Zavřít hledání", + "Common.Views.SearchPanel.textFind": "Najít", + "Common.Views.SearchPanel.textFindAndReplace": "Najít a nahradit", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Argument používá regulární výraz", + "Common.Views.SearchPanel.textNoMatches": "Shoda nebyla nalezena", + "Common.Views.SearchPanel.textNoSearchResults": "Žádné výsledky vyhledávání", + "Common.Views.SearchPanel.textReplace": "Nahradit", + "Common.Views.SearchPanel.textReplaceAll": "Nahradit vše", + "Common.Views.SearchPanel.textReplaceWith": "Nahradit pomocí", + "Common.Views.SearchPanel.textSearchResults": "Výsledek hledání: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Příliš mnoho výsledků pro zobrazení", + "Common.Views.SearchPanel.textWholeWords": "Pouze celá slova", + "Common.Views.SearchPanel.tipNextResult": "Následující", + "Common.Views.SearchPanel.tipPreviousResult": "Předchozí", "Common.Views.SelectFileDlg.textLoading": "Načítání", "Common.Views.SelectFileDlg.textTitle": "Vybrat zdroj dat", "Common.Views.SignDialog.textBold": "Tučné", @@ -537,17 +564,19 @@ "DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.", "DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "DE.Controllers.Main.errorDirectUrl": "Ověřte správnost odkazu na dokument.
Je třeba, aby se jednalo o přímý odkaz pro stažení souboru.", - "DE.Controllers.Main.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu 'Stáhnout jako…' pro uložení záložní kopie na harddisk Vašeho počítače. ", - "DE.Controllers.Main.errorEditingSaveas": "Při práci s dokumentem došlo k chybě.
Použijte volbu 'Uložit jako...' a uložte si do souboru jako záložní kopii na svůj počítač.", + "DE.Controllers.Main.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Stáhnout jako...“ a uložte si do souboru jako záložní kopii na svůj počítač.", + "DE.Controllers.Main.errorEditingSaveas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Uložit jako...“ a uložte si do souboru jako záložní kopii na svůj počítač.", "DE.Controllers.Main.errorEmailClient": "Nenalezen žádný e-mailový klient.", + "DE.Controllers.Main.errorEmptyTOC": "Začít vytvářet obsah aplikováním stylů pro nadpisy na vybraný text. ", "DE.Controllers.Main.errorFilePassProtect": "Soubor je zabezpečen heslem, bez kterého ho nelze otevřít.", "DE.Controllers.Main.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.
Ohledně podrobností se obraťte na správce dokumentového serveru.", - "DE.Controllers.Main.errorForceSave": "Došlo k chybě při ukládání souboru. Použijte volbu 'Stáhnout jako' a uložte si do souboru na svůj počítač nebo to zkuste znovu později.", + "DE.Controllers.Main.errorForceSave": "Došlo k chybě při ukládání souboru. Použijte volbu „Stáhnout jako“ a uložte si do souboru na svůj počítač nebo to zkuste později znovu.", "DE.Controllers.Main.errorKeyEncrypt": "Neznámý popisovač klíče", "DE.Controllers.Main.errorKeyExpire": "Platnost popisovače klíče skončila", "DE.Controllers.Main.errorLoadingFont": "Styly nejsou načteny.
Prosím kontaktujte Vašeho administrátora dokumentových serverů.", "DE.Controllers.Main.errorMailMergeLoadFile": "Načítání dokumentu se nezdařilo. Vyberte jiný soubor.", "DE.Controllers.Main.errorMailMergeSaveFile": "Sloučení se nezdařilo.", + "DE.Controllers.Main.errorNoTOC": "Chybí obsah k aktualizaci. Obsah můžete vložit pomocí záložky Odkazy.", "DE.Controllers.Main.errorProcessSaveResult": "Ukládání se nezdařilo.", "DE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.", "DE.Controllers.Main.errorSessionAbsolute": "Platnost relace upravování dokumentu skončila. Načtete stránku znovu.", @@ -615,8 +644,10 @@ "DE.Controllers.Main.textPaidFeature": "Placená funkce", "DE.Controllers.Main.textReconnect": "Spojení je obnoveno", "DE.Controllers.Main.textRemember": "Zapamatovat mou volbu", + "DE.Controllers.Main.textRememberMacros": "Zapamatovat moji volbu pro všechna makra", "DE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", "DE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", + "DE.Controllers.Main.textRequestMacros": "Makro vytváří požadavek na URL. Chcete povolit požadavek k přístupu na %1?", "DE.Controllers.Main.textShape": "Obrazec", "DE.Controllers.Main.textStrict": "Statický režim", "DE.Controllers.Main.textTryUndoRedo": "Funkce Zpět/Znovu nejsou v režimu rychlé spolupráce na úpravách k dispozici.
Kliknutím na tlačítko „Striktní režim“ přejdete do striktního režimu spolupráce na úpravách, ve kterém soubor upravujte bez vyrušování ostatními uživateli a vámi provedené změny odesíláte pouze po jejich uložení. Mezi oběma režimy spolupráce na úpravách je možné přepínat v pokročilých nastaveních editoru.", @@ -655,7 +686,7 @@ "DE.Controllers.Main.txtMissOperator": "Chybí operátor", "DE.Controllers.Main.txtNeedSynchronize": "Máte nové aktualizace", "DE.Controllers.Main.txtNone": "Žádný", - "DE.Controllers.Main.txtNoTableOfContents": "V dokumentu nebyly nalezeny žádné nadpisy. Použijte na ně v textu styly pro nadpisy, aby se objevily v tabulce obsahu.", + "DE.Controllers.Main.txtNoTableOfContents": "V dokumentu nebyly nalezeny žádné nadpisy. Použijte na text styly pro nadpisy, aby se objevily v tabulce obsahu.", "DE.Controllers.Main.txtNoTableOfFigures": "Pro seznam obrázků aj. nebyly nalezeny vstupní hodnoty.", "DE.Controllers.Main.txtNoText": "Chyba! V dokumentu není žádný text se zadaným stylem.", "DE.Controllers.Main.txtNotInTable": "Není v tabulce", @@ -891,6 +922,8 @@ "DE.Controllers.Main.warnProcessRightsChange": "Bylo vám odepřeno oprávnění soubor upravovat.", "DE.Controllers.Navigation.txtBeginning": "Začátek dokumentu", "DE.Controllers.Navigation.txtGotoBeginning": "Přejít na začátek dokumentu", + "DE.Controllers.Search.notcriticalErrorTitle": "Varování", + "DE.Controllers.Search.warnReplaceString": "{0} není platným speciálním znakem pro nahrazení polem.", "DE.Controllers.Statusbar.textDisconnect": "Spojení je ztraceno
Pokus o opětovné připojení. Zkontrolujte nastavení připojení.", "DE.Controllers.Statusbar.textHasChanges": "Byly zaznamenány nové změny", "DE.Controllers.Statusbar.textSetTrackChanges": "Jste v módu sledování změn", @@ -1700,6 +1733,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Stránky", "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Velikost stránky", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odstavce", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "Nástroj pro tvorbu PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "Označené PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Verze PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umístění", @@ -1731,9 +1765,13 @@ "DE.Views.FileMenuPanels.Settings.strFast": "Automatický", "DE.Views.FileMenuPanels.Settings.strFontRender": "Vyhlazování hran znaků", "DE.Views.FileMenuPanels.Settings.strForcesave": "Přidejte verzi do úložiště kliknutím na Uložit nebo Ctrl+S", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorovat slova psaná pouze VELKÝMI PÍSMENY", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorovat slova obsahující čísla", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavení maker", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Zobrazit možnosti vložení, při vkládání obsahu", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Změny při spolupráci v reálném čase", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Zobrazit komentáře v textu", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Zobrazit vyřešené komentáře", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnout kontrolu pravopisu", "DE.Views.FileMenuPanels.Settings.strStrict": "Statický", "DE.Views.FileMenuPanels.Settings.strTheme": "Vzhled prostředí", @@ -1757,9 +1795,13 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Zobrazit kliknutím do bublin", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Zobrazit najetím na popisky", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimetr", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Spolupráce", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Zapnout pro dokument tmavý režim", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Úprava a uložení", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Režim spolupráce v reálném čase. Veškeré změny jsou ukládány automaticky", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Přizpůsobit stránce", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyfy", "DE.Views.FileMenuPanels.Settings.txtInch": "Palce", "DE.Views.FileMenuPanels.Settings.txtInput": "Alternativní vstupní metoda", "DE.Views.FileMenuPanels.Settings.txtLast": "Zvýrazňovat poslední", @@ -1771,12 +1813,17 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Body", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Zapnout vše", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Zapnout všechna makra bez notifikace", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Zobrazit sledování změn", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Vypnout vše", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Vypnout všechna makra bez notifikací", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Pro synchronizaci provedených změn klikněte na tlačítko \"Uložit\"", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Použít klávesu Alt pro navigaci uživatelským rozhraním za použití klávesnice", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Použít klávesu Option pro navigaci uživatelským rozhraním za použití klávesnice", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Zobrazit notifikace", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Vypnout všechna makra s notifikacemi", "DE.Views.FileMenuPanels.Settings.txtWin": "jako Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Pracovní prostředí", "DE.Views.FormSettings.textAlways": "Vždy", "DE.Views.FormSettings.textAspect": "Zachovat poměr stran", "DE.Views.FormSettings.textAutofit": "Přizpůsobit", @@ -1807,6 +1854,7 @@ "DE.Views.FormSettings.textRequired": "Požadováno", "DE.Views.FormSettings.textScale": "Kdy provést změnu měřítka", "DE.Views.FormSettings.textSelectImage": "Vybrat obrázek", + "DE.Views.FormSettings.textTag": "Značka", "DE.Views.FormSettings.textTip": "Nápověda", "DE.Views.FormSettings.textTipAdd": "Vložit novou hodnotu", "DE.Views.FormSettings.textTipDelete": "Odstranit hodnotu", @@ -1819,6 +1867,7 @@ "DE.Views.FormSettings.textWidth": "Šířka buňky", "DE.Views.FormsTab.capBtnCheckBox": "Zaškrtávací pole", "DE.Views.FormsTab.capBtnComboBox": "Výběrové pole", + "DE.Views.FormsTab.capBtnDownloadForm": "Stáhnout jako OFORM", "DE.Views.FormsTab.capBtnDropDown": "Rozevírací seznam", "DE.Views.FormsTab.capBtnImage": "Obrázek", "DE.Views.FormsTab.capBtnNext": "Následující pole", @@ -1838,6 +1887,7 @@ "DE.Views.FormsTab.textSubmited": "Formulář úspěšně potvrzen", "DE.Views.FormsTab.tipCheckBox": "Vložit zaškrtávací pole", "DE.Views.FormsTab.tipComboBox": "Vložit výběrové pole", + "DE.Views.FormsTab.tipDownloadForm": "Stáhnout jako plnitelný dokument OFORM", "DE.Views.FormsTab.tipDropDown": "Vložit rozevírací seznam", "DE.Views.FormsTab.tipImageField": "Vložit obrázek", "DE.Views.FormsTab.tipNextForm": "Přejít na následující pole", @@ -1992,11 +2042,13 @@ "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Komentáře", "DE.Views.LeftMenu.tipNavigation": "Navigace", + "DE.Views.LeftMenu.tipOutline": "Nadpisy", "DE.Views.LeftMenu.tipPlugins": "Zásuvné moduly", "DE.Views.LeftMenu.tipSearch": "Hledat", "DE.Views.LeftMenu.tipSupport": "Zpětná vazba a technická podpora", "DE.Views.LeftMenu.tipTitles": "Nadpisy", "DE.Views.LeftMenu.txtDeveloper": "REŽIM PRO VÝVOJÁŘE", + "DE.Views.LeftMenu.txtEditor": "Editor dokumentů", "DE.Views.LeftMenu.txtLimit": "Omezený přístup", "DE.Views.LeftMenu.txtTrial": "ZKUŠEBNÍ REŽIM", "DE.Views.LeftMenu.txtTrialDev": "Zkušební vývojářský režim", @@ -2014,6 +2066,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Začít na", "DE.Views.LineNumbersDialog.textTitle": "Číslování řádků", "DE.Views.LineNumbersDialog.txtAutoText": "Automaticky", + "DE.Views.Links.capBtnAddText": "Přidat text", "DE.Views.Links.capBtnBookmarks": "Záložka", "DE.Views.Links.capBtnCaption": "Popisek", "DE.Views.Links.capBtnContentsUpdate": "Obnovit", @@ -2038,6 +2091,7 @@ "DE.Views.Links.textSwapNotes": "Prohodit poznámky pod čarou a vysvětlivky", "DE.Views.Links.textUpdateAll": "Obnovit celou tabulku", "DE.Views.Links.textUpdatePages": "Obnovit pouze čísla stránek", + "DE.Views.Links.tipAddText": "Zahrnout nadpis v rámci obsahu", "DE.Views.Links.tipBookmarks": "Vytvořit záložku", "DE.Views.Links.tipCaption": "Vložit popisek", "DE.Views.Links.tipContents": "Vložit obsah", @@ -2048,6 +2102,8 @@ "DE.Views.Links.tipTableFigures": "Vložit seznam obrázků aj.", "DE.Views.Links.tipTableFiguresUpdate": "Obnovit seznam obrázků aj.", "DE.Views.Links.titleUpdateTOF": "Obnovit seznam obrázků aj.", + "DE.Views.Links.txtDontShowTof": "Nezobrazovat v obsahu", + "DE.Views.Links.txtLevel": "Úroveň", "DE.Views.ListSettingsDialog.textAuto": "Automatické", "DE.Views.ListSettingsDialog.textCenter": "Na střed", "DE.Views.ListSettingsDialog.textLeft": "Vlevo", @@ -2112,6 +2168,8 @@ "DE.Views.MailMergeSettings.txtPrev": "K předchozímu záznamu", "DE.Views.MailMergeSettings.txtUntitled": "Bez názvu", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Spuštění hromadné korespondence se nezdařilo", + "DE.Views.Navigation.strNavigate": "Nadpisy", + "DE.Views.Navigation.txtClosePanel": "Zavřít nadpisy", "DE.Views.Navigation.txtCollapse": "Sbalit vše", "DE.Views.Navigation.txtDemote": "Degradovat", "DE.Views.Navigation.txtEmpty": "Tento dokument neobsahuje nadpisy.
Pro zahrnutí v textu v obsahu použijte na text stylování nadpisů.", @@ -2119,11 +2177,17 @@ "DE.Views.Navigation.txtEmptyViewer": "Tento dokument neobsahuje nadpisy.", "DE.Views.Navigation.txtExpand": "Rozbalit vše", "DE.Views.Navigation.txtExpandToLevel": "Rozbalit po úroveň", + "DE.Views.Navigation.txtFontSize": "Velikost písma", "DE.Views.Navigation.txtHeadingAfter": "Nový nadpis po", "DE.Views.Navigation.txtHeadingBefore": "Nový nadpis před", + "DE.Views.Navigation.txtLarge": "Velké", + "DE.Views.Navigation.txtMedium": "Střední", "DE.Views.Navigation.txtNewHeading": "Nový podnadpis", "DE.Views.Navigation.txtPromote": "Povýšit", "DE.Views.Navigation.txtSelect": "Vybrat obsah", + "DE.Views.Navigation.txtSettings": "Nastavení nadpisů", + "DE.Views.Navigation.txtSmall": "Malé", + "DE.Views.Navigation.txtWrapHeadings": "Zalamovat dlouhé nadpisy", "DE.Views.NoteSettingsDialog.textApply": "Použít", "DE.Views.NoteSettingsDialog.textApplyTo": "Uplatnit změny na", "DE.Views.NoteSettingsDialog.textContinue": "Spojité", @@ -2630,7 +2694,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru", "DE.Views.Toolbar.mniImageFromStorage": "Obrázek z úložiště", "DE.Views.Toolbar.mniImageFromUrl": "Obrázek z URL adresy", + "DE.Views.Toolbar.mniInsertSSE": "Vložit list", "DE.Views.Toolbar.mniLowerCase": "všechna malá", + "DE.Views.Toolbar.mniRemoveFooter": "Odstranit zápatí", + "DE.Views.Toolbar.mniRemoveHeader": "Odstranit záhlaví", "DE.Views.Toolbar.mniSentenceCase": "Velká na začátku věty.", "DE.Views.Toolbar.mniTextToTable": "Převést text na tabulku", "DE.Views.Toolbar.mniToggleCase": "zAMĚNIT mALÁ a vELKÁ", @@ -2815,6 +2882,7 @@ "DE.Views.ViewTab.textFitToWidth": "Přizpůsobit šířce", "DE.Views.ViewTab.textInterfaceTheme": "Vzhled prostředí", "DE.Views.ViewTab.textNavigation": "Navigace", + "DE.Views.ViewTab.textOutline": "Nadpisy", "DE.Views.ViewTab.textRulers": "Pravítka", "DE.Views.ViewTab.textStatusBar": "Stavová lišta", "DE.Views.ViewTab.textZoom": "Zvětšení", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index b52cb2dff..abea14fec 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -12,7 +12,7 @@ "Common.Controllers.History.notcriticalErrorTitle": "Achtung", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Um Dokumente zu vergleichen, gelten alle nachverfolgten Änderungen als akzeptiert. Möchten Sie weiter machen?", "Common.Controllers.ReviewChanges.textAtLeast": "Mindestens", - "Common.Controllers.ReviewChanges.textAuto": "auto", + "Common.Controllers.ReviewChanges.textAuto": "Automatisch", "Common.Controllers.ReviewChanges.textBaseline": "Grundlinie", "Common.Controllers.ReviewChanges.textBold": "Fett", "Common.Controllers.ReviewChanges.textBreakBefore": "Seitenumbruch oberhalb", @@ -48,10 +48,10 @@ "Common.Controllers.ReviewChanges.textNot": "Nicht", "Common.Controllers.ReviewChanges.textNoWidow": "Kein \"Widow-Control\"", "Common.Controllers.ReviewChanges.textNum": "Nummerierung ändern", - "Common.Controllers.ReviewChanges.textOff": "{0} verwendet Nachverfolgung von Änderungen nicht mehr.", - "Common.Controllers.ReviewChanges.textOffGlobal": "{0} hat Nachverfolgung von Änderungen für alle deaktiviert.", - "Common.Controllers.ReviewChanges.textOn": "{0} verwendet jetzt Nachverfolgung von Änderungen.", - "Common.Controllers.ReviewChanges.textOnGlobal": "{0} hat Nachverfolgung von Änderungen für alle aktiviert.", + "Common.Controllers.ReviewChanges.textOff": "{0} verwendet die Nachverfolgung von Änderungen nicht mehr.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} hat die Nachverfolgung von Änderungen für alle deaktiviert.", + "Common.Controllers.ReviewChanges.textOn": "{0} verwendet jetzt die Nachverfolgung von Änderungen.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} hat die Nachverfolgung von Änderungen für alle aktiviert.", "Common.Controllers.ReviewChanges.textParaDeleted": "Absatz gelöscht", "Common.Controllers.ReviewChanges.textParaFormatted": "Absatz ist formatiert", "Common.Controllers.ReviewChanges.textParaInserted": "Absatz eingefügt", @@ -70,9 +70,9 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Durchgestrichen", "Common.Controllers.ReviewChanges.textSubScript": "Tiefgestellt", "Common.Controllers.ReviewChanges.textSuperScript": "Hochgestellt", - "Common.Controllers.ReviewChanges.textTableChanged": "Tabelleneinstellungen sind geändert ", - "Common.Controllers.ReviewChanges.textTableRowsAdd": " Tabellenzeilen sind hinzugefügt ", - "Common.Controllers.ReviewChanges.textTableRowsDel": "Tabellenzeilen sind gelöscht", + "Common.Controllers.ReviewChanges.textTableChanged": "Tabelleneinstellungen", + "Common.Controllers.ReviewChanges.textTableRowsAdd": " Tabellenzeilen hinzugefügt ", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Tabellenzeilen gelöscht", "Common.Controllers.ReviewChanges.textTabs": "Registerkarten ändern", "Common.Controllers.ReviewChanges.textTitleComparison": "Vergleichseinstellungen", "Common.Controllers.ReviewChanges.textUnderline": "Unterstrichen", @@ -237,9 +237,9 @@ "Common.Views.AutoCorrectDialog.textReset": "Zurücksetzen", "Common.Views.AutoCorrectDialog.textResetAll": "Zurücksetzen auf die Standardeinstellungen", "Common.Views.AutoCorrectDialog.textRestore": "Wiederherstellen", - "Common.Views.AutoCorrectDialog.textTitle": "Autokorrektur", + "Common.Views.AutoCorrectDialog.textTitle": "Automatische Korrektur", "Common.Views.AutoCorrectDialog.textWarnAddRec": "Erkannte Funktionen sollen nur groß- oder kleingeschriebene Buchstaben von A bis Z beinhalten.", - "Common.Views.AutoCorrectDialog.textWarnResetRec": "Alle hinzugefügten Ausdrücke werden entfernt und die gelöschten Ausdrücke werden zurückgestellt. Möchten Sie wirklich fortsetzen?", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Alle hinzugefügten Ausdrücke werden entfernt und die gelöschten Ausdrücke werden zurückgestellt. Möchten Sie fortsetzen?", "Common.Views.AutoCorrectDialog.warnReplace": "Es gibt schon einen Autokorrektur-Eintrag für %1. Möchten Sie dieses ersetzen?", "Common.Views.AutoCorrectDialog.warnReset": "Hinzugefügte Autokorrektur wird entfernt und geänderte Autokorrektur wird zurückgestellt. Möchten Sie trotzdem fortsetzen?", "Common.Views.AutoCorrectDialog.warnRestore": "Der Autokorrektur-Eintrag für %1 wird zurückgestellt. Möchten Sie fortsetzen?", @@ -252,7 +252,7 @@ "Common.Views.Comments.mniPositionAsc": "Von oben", "Common.Views.Comments.mniPositionDesc": "Von unten", "Common.Views.Comments.textAdd": "Hinzufügen", - "Common.Views.Comments.textAddComment": "Hinzufügen", + "Common.Views.Comments.textAddComment": "Kommentar hinzufügen", "Common.Views.Comments.textAddCommentToDoc": "Kommentar zum Dokument hinzufügen", "Common.Views.Comments.textAddReply": "Antwort hinzufügen", "Common.Views.Comments.textAll": "Alle", @@ -349,12 +349,12 @@ "Common.Views.Plugins.textStop": "Beenden", "Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln", "Common.Views.Protection.hintPwd": "Das Kennwort ändern oder löschen", - "Common.Views.Protection.hintSignature": "Fügen Sie eine digitale Signatur oder Unterschriftenzeile hinzu", + "Common.Views.Protection.hintSignature": "Digitale Signatur oder Unterschriftenzeile hinzufügen", "Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen", "Common.Views.Protection.txtChangePwd": "Kennwort ändern", "Common.Views.Protection.txtDeletePwd": "Kennwort löschen", "Common.Views.Protection.txtEncrypt": "Verschlüsseln", - "Common.Views.Protection.txtInvisibleSignature": "Fügen Sie eine digitale Signatur hinzu", + "Common.Views.Protection.txtInvisibleSignature": "Digitale Signatur hinzufügen", "Common.Views.Protection.txtSignature": "Signatur", "Common.Views.Protection.txtSignatureLine": "Signaturzeile hinzufügen", "Common.Views.RenameDialog.textName": "Dateiname", @@ -406,7 +406,7 @@ "Common.Views.ReviewChanges.txtCompare": "Vergleichen", "Common.Views.ReviewChanges.txtDocLang": "Sprache", "Common.Views.ReviewChanges.txtEditing": "Bearbeitung", - "Common.Views.ReviewChanges.txtFinal": "Alle Änderungen werden übernommen {0}", + "Common.Views.ReviewChanges.txtFinal": "Alle Änderungen übernommen {0}", "Common.Views.ReviewChanges.txtFinalCap": "Endgültig", "Common.Views.ReviewChanges.txtHistory": "Versionshistorie", "Common.Views.ReviewChanges.txtMarkup": "Alle Änderungen {0}", @@ -418,7 +418,7 @@ "Common.Views.ReviewChanges.txtOffGlobal": "DEAKTIVIERT für alle", "Common.Views.ReviewChanges.txtOn": "AKTIVIERT für mich", "Common.Views.ReviewChanges.txtOnGlobal": "AKTIVIERT für alle", - "Common.Views.ReviewChanges.txtOriginal": "Alle Änderungen werden abgelehnt {0}", + "Common.Views.ReviewChanges.txtOriginal": "Alle Änderungen abgelehnt {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Original", "Common.Views.ReviewChanges.txtPrev": "Zur vorherigen Änderung", "Common.Views.ReviewChanges.txtPreview": "Vorschau", @@ -528,7 +528,7 @@ "Common.Views.UserNameDialog.textDontShow": "Nicht mehr anzeigen", "Common.Views.UserNameDialog.textLabel": "Bezeichnung:", "Common.Views.UserNameDialog.textLabelError": "Bezeichnung darf nicht leer sein.", - "DE.Controllers.LeftMenu.leavePageText": "Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ", + "DE.Controllers.LeftMenu.leavePageText": "Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
\nKlicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um Änderungen zu speichern. \nKlicken Sie auf \"OK\", und alle ungespeicherten Änderungen werden NICHT gespeichert und sind verloren.", "DE.Controllers.LeftMenu.newDocumentTitle": "Unbetiteltes Dokument", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Achtung", "DE.Controllers.LeftMenu.requestEditRightsText": "Anfrage betreffend die Bearbeitungsberechtigung...", @@ -592,7 +592,7 @@ "DE.Controllers.Main.errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten", "DE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Man kann das Dokument weiterhin anschauen.
Es ist aber momentan nicht möglich, es herunterzuladen oder zu drucken bis die Verbindung wiederhergestellt
und die Seite neu geladen wird.", "DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.", - "DE.Controllers.Main.leavePageTextOnClose": "Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
Klicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. Klicken Sie auf den Button \"OK\", so werden alle ungespeicherten Änderungen verloren gehen. ", + "DE.Controllers.Main.leavePageTextOnClose": "Alle ungespeicherten Änderungen in diesem Dokument werden verloren.
\nKlicken Sie auf \"Abbrechen\" und anschließend auf \"Speichern\", um die Änderungen zu speichern. \nKlicken Sie auf den Button \"OK\", und alle Änderungen werden NICHT gespeichert und sind verloren. ", "DE.Controllers.Main.loadFontsTextText": "Daten werden geladen...", "DE.Controllers.Main.loadFontsTitleText": "Daten werden geladen", "DE.Controllers.Main.loadFontTextText": "Daten werden geladen...", @@ -606,7 +606,7 @@ "DE.Controllers.Main.mailMergeLoadFileText": "Laden der Datenquellen...", "DE.Controllers.Main.mailMergeLoadFileTitle": "Laden der Datenquellen", "DE.Controllers.Main.notcriticalErrorTitle": "Achtung", - "DE.Controllers.Main.openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten.", + "DE.Controllers.Main.openErrorText": "Beim Öffnen der Datei ist ein Fehler aufgetreten.", "DE.Controllers.Main.openTextText": "Dokument wird geöffnet", "DE.Controllers.Main.openTitleText": "Das Dokument wird geöffnet", "DE.Controllers.Main.printTextText": "Dokument wird ausgedruckt...", @@ -614,7 +614,7 @@ "DE.Controllers.Main.reloadButtonText": "Seite erneut laden", "DE.Controllers.Main.requestEditFailedMessageText": "Jemand bearbeitet dieses Dokument in diesem Moment. Bitte versuchen Sie es später erneut.", "DE.Controllers.Main.requestEditFailedTitleText": "Zugriff verweigert", - "DE.Controllers.Main.saveErrorText": "Beim Speichern dieser Datei ist ein Fehler aufgetreten.", + "DE.Controllers.Main.saveErrorText": "Beim Speichern der Datei ist ein Fehler aufgetreten.", "DE.Controllers.Main.saveErrorTextDesktop": "Diese Datei kann nicht erstellt oder gespeichert werden.
Dies ist möglicherweise davon verursacht:
1. Die Datei ist schreibgeschützt.
2. Die Datei wird von anderen Benutzern bearbeitet.
3. Die Festplatte ist voll oder beschädigt.", "DE.Controllers.Main.saveTextText": "Dokument wird gespeichert...", "DE.Controllers.Main.saveTitleText": "Dokument wird gespeichert...", @@ -627,7 +627,7 @@ "DE.Controllers.Main.textAnonymous": "Anonym", "DE.Controllers.Main.textApplyAll": "Für alle Gleichungen verwenden", "DE.Controllers.Main.textBuyNow": "Webseite besuchen", - "DE.Controllers.Main.textChangesSaved": "Alle Änderungen wurden gespeichert", + "DE.Controllers.Main.textChangesSaved": "Alle Änderungen gespeichert", "DE.Controllers.Main.textClose": "Schließen", "DE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen", "DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren", @@ -842,16 +842,16 @@ "DE.Controllers.Main.txtShape_snip2SameRect": "Ecken des Rechtecks auf der gleichen Seite schneiden", "DE.Controllers.Main.txtShape_snipRoundRect": "Eine Ecke des Rechtecks schneiden und abrunden", "DE.Controllers.Main.txtShape_spline": "Kurve", - "DE.Controllers.Main.txtShape_star10": "10-zackiger Stern", - "DE.Controllers.Main.txtShape_star12": "12-zackiger Stern", - "DE.Controllers.Main.txtShape_star16": "16-zackiger Stern", - "DE.Controllers.Main.txtShape_star24": "24-zackiger Stern", - "DE.Controllers.Main.txtShape_star32": "32-zackiger Stern", - "DE.Controllers.Main.txtShape_star4": "4-zackiger Stern", - "DE.Controllers.Main.txtShape_star5": "5-zackiger Stern", - "DE.Controllers.Main.txtShape_star6": "6-zackiger Stern", - "DE.Controllers.Main.txtShape_star7": "7-zackiger Stern", - "DE.Controllers.Main.txtShape_star8": "8-zackiger Stern", + "DE.Controllers.Main.txtShape_star10": "10-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star12": "12-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star16": "16-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star24": "24-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star32": "32-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star4": "4-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star5": "5-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star6": "6-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star7": "7-Punkt zackiger Stern", + "DE.Controllers.Main.txtShape_star8": "8-Punkt zackiger Stern", "DE.Controllers.Main.txtShape_stripedRightArrow": "Gestreifter Pfeil nach rechts", "DE.Controllers.Main.txtShape_sun": "Sonne", "DE.Controllers.Main.txtShape_teardrop": "Tropfenförmig", @@ -1184,7 +1184,7 @@ "DE.Controllers.Toolbar.txtScriptSubSup": "Tiefgestellt-Hochgestellt", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Hochgestellter/ tiefgestellter Index links", "DE.Controllers.Toolbar.txtScriptSup": "Hochgestellt", - "DE.Controllers.Toolbar.txtSymbol_about": "Circa", + "DE.Controllers.Toolbar.txtSymbol_about": "Ungefähr", "DE.Controllers.Toolbar.txtSymbol_additional": "Komplement", "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", "DE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", @@ -1192,13 +1192,13 @@ "DE.Controllers.Toolbar.txtSymbol_ast": "Stern-Operator", "DE.Controllers.Toolbar.txtSymbol_beta": "Beta", "DE.Controllers.Toolbar.txtSymbol_beth": "Bet", - "DE.Controllers.Toolbar.txtSymbol_bullet": "Aufzählungsoperator", + "DE.Controllers.Toolbar.txtSymbol_bullet": "Aufzählungzeichensoperator", "DE.Controllers.Toolbar.txtSymbol_cap": "Schnittmenge", "DE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikwurzel", "DE.Controllers.Toolbar.txtSymbol_cdots": "Horizontale Ellipse (Mittellinie)", "DE.Controllers.Toolbar.txtSymbol_celsius": "Grad Celsius", "DE.Controllers.Toolbar.txtSymbol_chi": "Chi", - "DE.Controllers.Toolbar.txtSymbol_cong": "Etwa gleich ", + "DE.Controllers.Toolbar.txtSymbol_cong": "Ungefähr gleich ", "DE.Controllers.Toolbar.txtSymbol_cup": "Vereinigung", "DE.Controllers.Toolbar.txtSymbol_ddots": "Diagonale Ellipse nach unten rechts", "DE.Controllers.Toolbar.txtSymbol_degree": "Grad", @@ -1290,7 +1290,7 @@ "DE.Views.BookmarksDialog.txtInvalidName": "Der Name des Lesezeichens darf nur Buchstaben, Ziffern und Unterstriche enthalten und sollte mit dem Buchstaben beginnen", "DE.Views.CaptionDialog.textAdd": "Hinzufügen", "DE.Views.CaptionDialog.textAfter": "Nach", - "DE.Views.CaptionDialog.textBefore": "Vor ", + "DE.Views.CaptionDialog.textBefore": "Vorher", "DE.Views.CaptionDialog.textCaption": "Beschriftung", "DE.Views.CaptionDialog.textChapter": "Kapitel beginnt mit Stil", "DE.Views.CaptionDialog.textChapterInc": "Kapitelnummer einschließen", @@ -1327,7 +1327,7 @@ "DE.Views.ChartSettings.textUndock": "Seitenbereich abdocken", "DE.Views.ChartSettings.textWidth": "Breite", "DE.Views.ChartSettings.textWrap": "Textumbruch", - "DE.Views.ChartSettings.txtBehind": "Hinten", + "DE.Views.ChartSettings.txtBehind": "Hinter dem Text", "DE.Views.ChartSettings.txtInFront": "Vorne", "DE.Views.ChartSettings.txtInline": "Inline", "DE.Views.ChartSettings.txtSquare": "Eckig", @@ -1426,10 +1426,10 @@ "DE.Views.DocumentHolder.alignmentText": "Ausrichtung", "DE.Views.DocumentHolder.belowText": "Unten", "DE.Views.DocumentHolder.breakBeforeText": "Seitenumbruch oberhalb", - "DE.Views.DocumentHolder.bulletsText": "Nummerierung und Aufzählungszeichen", - "DE.Views.DocumentHolder.cellAlignText": "Vertikale Ausrichtung in Zellen", + "DE.Views.DocumentHolder.bulletsText": "Aufzählung und Nummerierung", + "DE.Views.DocumentHolder.cellAlignText": "Vertikale Zellenausrichtung", "DE.Views.DocumentHolder.cellText": "Zelle", - "DE.Views.DocumentHolder.centerText": "Zentriert", + "DE.Views.DocumentHolder.centerText": "Zenter", "DE.Views.DocumentHolder.chartText": "Erweiterte Einstellungen des Diagramms", "DE.Views.DocumentHolder.columnText": "Spalte", "DE.Views.DocumentHolder.deleteColumnText": "Spalte löschen", @@ -1565,7 +1565,7 @@ "DE.Views.DocumentHolder.txtAddTop": "Oberem Rahmen hinzufügen", "DE.Views.DocumentHolder.txtAddVer": "Vertikale Linie hinzufügen", "DE.Views.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten", - "DE.Views.DocumentHolder.txtBehind": "Hinten", + "DE.Views.DocumentHolder.txtBehind": "Hinter dem Text", "DE.Views.DocumentHolder.txtBorderProps": "Rahmeneigenschaften", "DE.Views.DocumentHolder.txtBottom": "Unten", "DE.Views.DocumentHolder.txtColumnAlign": "Spaltenausrichtung", @@ -1615,7 +1615,7 @@ "DE.Views.DocumentHolder.txtLimitUnder": "Grenzwert unter den Text", "DE.Views.DocumentHolder.txtMatchBrackets": "Eckige Klammern an Argumenthöhe anpassen", "DE.Views.DocumentHolder.txtMatrixAlign": "Matrixausrichtung", - "DE.Views.DocumentHolder.txtOverbar": "Linie über dem Text", + "DE.Views.DocumentHolder.txtOverbar": "Balken über dem Text", "DE.Views.DocumentHolder.txtOverwriteCells": "Zellen überschreiben", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten", "DE.Views.DocumentHolder.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", @@ -1642,7 +1642,7 @@ "DE.Views.DocumentHolder.txtTight": "Passend", "DE.Views.DocumentHolder.txtTop": "Oben", "DE.Views.DocumentHolder.txtTopAndBottom": "Oben und unten", - "DE.Views.DocumentHolder.txtUnderbar": "Linie unter dem Text ", + "DE.Views.DocumentHolder.txtUnderbar": "Balken unter dem Text ", "DE.Views.DocumentHolder.txtUngroup": "Gruppierung aufheben", "DE.Views.DocumentHolder.txtWarnUrl": "Dieser Link kann für Ihr Gerät und Daten gefährlich sein.
Möchten Sie wirklich fortsetzen?", "DE.Views.DocumentHolder.updateStyleText": "Format aktualisieren %1", @@ -1652,13 +1652,13 @@ "DE.Views.DropcapSettingsAdvanced.strMargins": "Ränder", "DE.Views.DropcapSettingsAdvanced.textAlign": "Ausrichtung", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Mindestens", - "DE.Views.DropcapSettingsAdvanced.textAuto": "auto", + "DE.Views.DropcapSettingsAdvanced.textAuto": "Automatisch", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Hintergrundfarbe", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Rahmenfarbe", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Rahmenstärke", "DE.Views.DropcapSettingsAdvanced.textBottom": "Unten", - "DE.Views.DropcapSettingsAdvanced.textCenter": "Zentriert", + "DE.Views.DropcapSettingsAdvanced.textCenter": "Zenter", "DE.Views.DropcapSettingsAdvanced.textColumn": "Spalte", "DE.Views.DropcapSettingsAdvanced.textDistance": "Abstand von Text", "DE.Views.DropcapSettingsAdvanced.textExact": "Genau", @@ -1763,7 +1763,7 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modus \"Gemeinsame Bearbeitung\"", "DE.Views.FileMenuPanels.Settings.strFast": "Schnell", "DE.Views.FileMenuPanels.Settings.strFontRender": "Schriftglättung", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Immer auf dem Server speichern (ansonsten auf dem Server beim Schließen des Dokuments speichern)", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Neue Version speichern wenn 'Speichern' oder 'CRTL-S' ausgeführt wird.", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Wörter in GROSSBUCHSTABEN ignorieren", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Wörter mit Zahlen ignorieren", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Einstellungen von Makros", @@ -1781,15 +1781,15 @@ "DE.Views.FileMenuPanels.Settings.text5Minutes": "Alle 5 Minuten", "DE.Views.FileMenuPanels.Settings.text60Minutes": "Jede Stunde", "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Ausrichtungslinien", - "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autowiederherstellen", - "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatisch speichern", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatisches wiederherstellen", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatisches speichern", "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilität", "DE.Views.FileMenuPanels.Settings.textDisabled": "Deaktiviert", "DE.Views.FileMenuPanels.Settings.textForceSave": "Auf dem Server speichern", "DE.Views.FileMenuPanels.Settings.textMinute": "Jede Minute", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Die Dateien mit älteren MS Word-Versionen kompatibel machen, wenn sie als DOCX gespeichert werden", "DE.Views.FileMenuPanels.Settings.txtAll": "Alle anzeigen", - "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Optionen von Autokorrektur...", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Automatische Korrekturoptionen", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard-Cache-Modus", "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "In Sprechblasen beim Klicken anzeigen", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "In Tipps anzeigen", @@ -1877,7 +1877,7 @@ "DE.Views.FormsTab.capBtnView": "Formular anzeigen", "DE.Views.FormsTab.textClear": "Felder löschen", "DE.Views.FormsTab.textClearFields": "Alle Felder löschen", - "DE.Views.FormsTab.textCreateForm": "Fügen Sie Felder hinzu und erstellen Sie eine ausfüllbare OFORM-Datei", + "DE.Views.FormsTab.textCreateForm": "Felder hinzufügen und ausfüllbare OFORM-Datei erstellen", "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "Einstellungen für Hervorhebungen", "DE.Views.FormsTab.textNoHighlight": "Ohne Hervorhebung", @@ -1954,7 +1954,7 @@ "DE.Views.ImageSettings.textSize": "Größe", "DE.Views.ImageSettings.textWidth": "Breite", "DE.Views.ImageSettings.textWrap": "Textumbruch", - "DE.Views.ImageSettings.txtBehind": "Hinten", + "DE.Views.ImageSettings.txtBehind": "Hinter dem Text", "DE.Views.ImageSettings.txtInFront": "Vorne", "DE.Views.ImageSettings.txtInline": "Inline", "DE.Views.ImageSettings.txtSquare": "Eckig", @@ -1964,7 +1964,7 @@ "DE.Views.ImageSettingsAdvanced.strMargins": "Ränder um den Text", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolut", "DE.Views.ImageSettingsAdvanced.textAlignment": "Ausrichtung", - "DE.Views.ImageSettingsAdvanced.textAlt": "Der alternative Text", + "DE.Views.ImageSettingsAdvanced.textAlt": "Alternativer Text", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Beschreibung", "DE.Views.ImageSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Titel", @@ -2029,7 +2029,7 @@ "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Stärken & Pfeile", "DE.Views.ImageSettingsAdvanced.textWidth": "Breite", "DE.Views.ImageSettingsAdvanced.textWrap": "Textumbruch", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Hinten", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Hinter dem Text", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Vorne", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Inline", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Eckig", @@ -2046,6 +2046,7 @@ "DE.Views.LeftMenu.tipSupport": "Feedback und Support", "DE.Views.LeftMenu.tipTitles": "Titel", "DE.Views.LeftMenu.txtDeveloper": "ENTWICKLERMODUS", + "DE.Views.LeftMenu.txtEditor": "Dokument Editor", "DE.Views.LeftMenu.txtLimit": "Zugriffseinschränkung", "DE.Views.LeftMenu.txtTrial": "Trial-Modus", "DE.Views.LeftMenu.txtTrialDev": "Testversion für Entwickler-Modus", @@ -2062,7 +2063,7 @@ "DE.Views.LineNumbersDialog.textSection": "Aktueller Abschnitt", "DE.Views.LineNumbersDialog.textStartAt": "Beginnen mit", "DE.Views.LineNumbersDialog.textTitle": "Zeilennummern", - "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.LineNumbersDialog.txtAutoText": "Automatisch", "DE.Views.Links.capBtnAddText": "Text hinzufügen", "DE.Views.Links.capBtnBookmarks": "Lesezeichen", "DE.Views.Links.capBtnCaption": "Beschriftung", @@ -2102,7 +2103,7 @@ "DE.Views.Links.txtDontShowTof": "Im Inhaltsverzeichnis nicht anzeigen", "DE.Views.Links.txtLevel": "Ebene", "DE.Views.ListSettingsDialog.textAuto": "Automatisch", - "DE.Views.ListSettingsDialog.textCenter": "Zentriert", + "DE.Views.ListSettingsDialog.textCenter": "Zenter", "DE.Views.ListSettingsDialog.textLeft": "Links", "DE.Views.ListSettingsDialog.textLevel": "Ebene", "DE.Views.ListSettingsDialog.textPreview": "Vorschau", @@ -2156,7 +2157,7 @@ "DE.Views.MailMergeSettings.textPortal": "Speichern", "DE.Views.MailMergeSettings.textPreview": "Ergebnisvorschau", "DE.Views.MailMergeSettings.textReadMore": "Weiter lesen", - "DE.Views.MailMergeSettings.textSendMsg": "Alle E-Mail-Nachrichten sind bereit und werden innerhalb einiger Zeit versendet.
Die Geschwindigkeit des Email-Versands hängt von Ihrem Mail-Dienst ab. Sie können an dem Dokument weiterarbeiten oder es schließen. Nachdem Email-Versand werden Sie per E-Mail, die Sie bei der Registriering wervendeten, benachrichtigt.", + "DE.Views.MailMergeSettings.textSendMsg": "Alle E-Mail-Nachrichten sind bereit und werden versendet.
Die Geschwindigkeit des Email-Versands hängt von Ihrem Mail-Dienst ab. Sie können an dem Dokument weiterarbeiten oder es schließen. Nachdem der Email-Versand fertig ist, werden Sie per E-Mail, die Sie bei der Registriering wervendeten, benachrichtigt.", "DE.Views.MailMergeSettings.textTo": "Zu", "DE.Views.MailMergeSettings.txtFirst": "Zum ersten Datensatz", "DE.Views.MailMergeSettings.txtFromToError": "Der Wert \"Von\" muss weniger als \"Bis\" sein", @@ -2246,7 +2247,7 @@ "DE.Views.ParagraphSettings.strParagraphSpacing": "Absatzabstand", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Kein Abstand zwischen Absätzen gleicher Formatierung", "DE.Views.ParagraphSettings.strSpacingAfter": "Nach", - "DE.Views.ParagraphSettings.strSpacingBefore": "Vor ", + "DE.Views.ParagraphSettings.strSpacingBefore": "Vorher ", "DE.Views.ParagraphSettings.textAdvanced": "Erweiterte Einstellungen anzeigen", "DE.Views.ParagraphSettings.textAt": "Um", "DE.Views.ParagraphSettings.textAtLeast": "Mindestens", @@ -2256,7 +2257,7 @@ "DE.Views.ParagraphSettings.textFirstLine": "Erste Zeile", "DE.Views.ParagraphSettings.textHanging": "Hängend", "DE.Views.ParagraphSettings.textNoneSpecial": "(kein)", - "DE.Views.ParagraphSettings.txtAutoText": "Auto", + "DE.Views.ParagraphSettings.txtAutoText": "Automatisch", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Rahmen & Füllung", @@ -2268,7 +2269,7 @@ "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Gliederungsebene", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Rechts", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Nach", - "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Vor ", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Vorher ", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speziell", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Absatz zusammenhalten", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Absätze nicht trennen", @@ -2290,7 +2291,7 @@ "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindestens", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Mehrfach", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Hintergrundfarbe", - "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basistext", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Standard text", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rahmenfarbe", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klicken Sie aufs Diagramm oder nutzen Sie die Buttons, um Umrandungen zu wählen und den gewählten Stil anzuwenden", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rahmenstärke", @@ -2314,7 +2315,7 @@ "DE.Views.ParagraphSettingsAdvanced.textRight": "Rechts", "DE.Views.ParagraphSettingsAdvanced.textSet": "Angeben", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Abstand", - "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Zentriert", + "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Zenter", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Links", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tabulatorposition", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Rechts", @@ -2385,7 +2386,7 @@ "DE.Views.ShapeSettings.textWrap": "Textumbruch", "DE.Views.ShapeSettings.tipAddGradientPoint": "Punkt des Farbverlaufs einfügen", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Punkt des Farbverlaufs entfernen", - "DE.Views.ShapeSettings.txtBehind": "Hinten", + "DE.Views.ShapeSettings.txtBehind": "Hinter dem Text", "DE.Views.ShapeSettings.txtBrownPaper": "Kraftpapier", "DE.Views.ShapeSettings.txtCanvas": "Leinwand", "DE.Views.ShapeSettings.txtCarton": "Pappe", @@ -2447,8 +2448,8 @@ "DE.Views.TableOfContentsSettings.strLinks": "Inhaltsverzeichnis als Links formatieren", "DE.Views.TableOfContentsSettings.strLinksOF": "Abbildungsverzeichnis als Links formatieren", "DE.Views.TableOfContentsSettings.strShowPages": "Seitenzahlen anzeigen", - "DE.Views.TableOfContentsSettings.textBuildTable": "Erstellen eines Inhaltsverzeichnisses mithilfe von", - "DE.Views.TableOfContentsSettings.textBuildTableOF": "Abbildungsverzeichnis aus", + "DE.Views.TableOfContentsSettings.textBuildTable": "Erstellen eines Inhaltsverzeichnisses von", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Erstelle Abbildungsverzeichnis aus", "DE.Views.TableOfContentsSettings.textEquation": "Gleichung", "DE.Views.TableOfContentsSettings.textFigure": "Abbildung", "DE.Views.TableOfContentsSettings.textLeader": "Füllzeichen", @@ -2532,7 +2533,7 @@ "DE.Views.TableSettingsAdvanced.textAlign": "Ausrichtung", "DE.Views.TableSettingsAdvanced.textAlignment": "Ausrichtung", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Abstand zwischen Zellen zulassen", - "DE.Views.TableSettingsAdvanced.textAlt": "Der alternative Text", + "DE.Views.TableSettingsAdvanced.textAlt": "Alternativer Text", "DE.Views.TableSettingsAdvanced.textAltDescription": "Beschreibung", "DE.Views.TableSettingsAdvanced.textAltTip": "Die alternative textbasierte Darstellung der visuellen Objektinformation, die den Menschen mit geistigen Behinderungen oder Sehbehinderungen vorgelesen wird, um besser verstehen zu können, was genau auf dem Bild, AutoForm, Diagramm oder der Tabelle dargestellt wurde.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Titel", @@ -2548,8 +2549,8 @@ "DE.Views.TableSettingsAdvanced.textCellOptions": "Zellenoptionen", "DE.Views.TableSettingsAdvanced.textCellProps": "Zelle", "DE.Views.TableSettingsAdvanced.textCellSize": "Zellengröße", - "DE.Views.TableSettingsAdvanced.textCenter": "Zentriert", - "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Zentriert", + "DE.Views.TableSettingsAdvanced.textCenter": "Zenter", + "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Zenter", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Standardränder nutzen", "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Standardränder", "DE.Views.TableSettingsAdvanced.textDistance": "Abstand vom Text", @@ -2632,9 +2633,9 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Punkt des Farbverlaufs einfügen", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Punkt des Farbverlaufs entfernen", "DE.Views.TextArtSettings.txtNoBorders": "Keine Linie", - "DE.Views.TextToTableDialog.textAutofit": "Einstellung für AutoAnpassen", + "DE.Views.TextToTableDialog.textAutofit": "Einstellung für Autoanpassen", "DE.Views.TextToTableDialog.textColumns": "Spalten", - "DE.Views.TextToTableDialog.textContents": "Autoanpassen an Inhalt", + "DE.Views.TextToTableDialog.textContents": "An Inhalt autoanpassen", "DE.Views.TextToTableDialog.textEmpty": "Für das benutzerdefinierte Trennzeichen muss ein Zeichen eingegeben werden.", "DE.Views.TextToTableDialog.textFixed": "Feste Spaltenbreite", "DE.Views.TextToTableDialog.textOther": "Sonstiges", @@ -2645,8 +2646,8 @@ "DE.Views.TextToTableDialog.textTab": "Tabulatoren", "DE.Views.TextToTableDialog.textTableSize": "Größe der Tabelle", "DE.Views.TextToTableDialog.textTitle": "Text in Tabelle umwandeln", - "DE.Views.TextToTableDialog.textWindow": "Größe an Fenster anpassen", - "DE.Views.TextToTableDialog.txtAutoText": "Autom.", + "DE.Views.TextToTableDialog.textWindow": "An Fenster autoanpassen", + "DE.Views.TextToTableDialog.txtAutoText": "Automatisch", "DE.Views.Toolbar.capBtnAddComment": "Kommentar hinzufügen", "DE.Views.Toolbar.capBtnBlankPage": "Leere Seite", "DE.Views.Toolbar.capBtnColumns": "Spalten", @@ -2674,7 +2675,7 @@ "DE.Views.Toolbar.capImgForward": "Eine Ebene nach vorne", "DE.Views.Toolbar.capImgGroup": "Gruppieren", "DE.Views.Toolbar.capImgWrapping": "Umbruch", - "DE.Views.Toolbar.mniCapitalizeWords": "Ersten Buchstaben im Wort großschreiben", + "DE.Views.Toolbar.mniCapitalizeWords": "Ersten Buchstaben im jedem Wort großschreiben", "DE.Views.Toolbar.mniCustomTable": "Benutzerdefinierte Tabelle einfügen", "DE.Views.Toolbar.mniDrawTable": "Tabelle zeichnen", "DE.Views.Toolbar.mniEditControls": "Steuerelementeinstellungen", @@ -2691,6 +2692,7 @@ "DE.Views.Toolbar.mniImageFromFile": "Bild aus Datei", "DE.Views.Toolbar.mniImageFromStorage": "Bild aus dem Speicher", "DE.Views.Toolbar.mniImageFromUrl": "Bild aus URL", + "DE.Views.Toolbar.mniInsertSSE": "Tabelle einfügen", "DE.Views.Toolbar.mniLowerCase": "Kleinbuchstaben", "DE.Views.Toolbar.mniRemoveFooter": "Fußzeile entfernen", "DE.Views.Toolbar.mniRemoveHeader": "Kopfzeile entfernen", @@ -2780,7 +2782,7 @@ "DE.Views.Toolbar.tipAlignRight": "Rechtsbündig ausrichten", "DE.Views.Toolbar.tipBack": "Zurück", "DE.Views.Toolbar.tipBlankPage": "Leere Seite einlegen", - "DE.Views.Toolbar.tipChangeCase": "Groß-/Kleinschreibung", + "DE.Views.Toolbar.tipChangeCase": "Groß-/Kleinschreibung ändern", "DE.Views.Toolbar.tipChangeChart": "Diagrammtyp ändern", "DE.Views.Toolbar.tipClearStyle": "Formatierung löschen", "DE.Views.Toolbar.tipColorSchemas": "Farbschema ändern", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index dee936176..76ab2592b 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1833,6 +1833,8 @@ "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", "DE.Views.FormSettings.textAlways": "Always", "DE.Views.FormSettings.textAspect": "Lock aspect ratio", + "DE.Views.FormSettings.textAtLeast": "At least", + "DE.Views.FormSettings.textAuto": "Auto", "DE.Views.FormSettings.textAutofit": "AutoFit", "DE.Views.FormSettings.textBackgroundColor": "Background Color", "DE.Views.FormSettings.textCheckbox": "Checkbox", @@ -1843,6 +1845,7 @@ "DE.Views.FormSettings.textDelete": "Delete", "DE.Views.FormSettings.textDisconnect": "Disconnect", "DE.Views.FormSettings.textDropDown": "Dropdown", + "DE.Views.FormSettings.textExact": "Exactly", "DE.Views.FormSettings.textField": "Text Field", "DE.Views.FormSettings.textFixed": "Fixed size field", "DE.Views.FormSettings.textFromFile": "From File", @@ -1872,9 +1875,6 @@ "DE.Views.FormSettings.textUnlock": "Unlock", "DE.Views.FormSettings.textValue": "Value Options", "DE.Views.FormSettings.textWidth": "Cell width", - "DE.Views.FormSettings.textAuto": "Auto", - "DE.Views.FormSettings.textAtLeast": "At least", - "DE.Views.FormSettings.textExact": "Exactly", "DE.Views.FormsTab.capBtnCheckBox": "Checkbox", "DE.Views.FormsTab.capBtnComboBox": "Combo Box", "DE.Views.FormsTab.capBtnDownloadForm": "Download as oform", @@ -2300,6 +2300,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suppress line numbers", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "DE.Views.ParagraphSettingsAdvanced.textAll": "All", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "At least", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background Color", @@ -2310,23 +2311,39 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bottom", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centered", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and Discretionary", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Historical and Discretionary", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and Historical", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exactly", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and Discretionary", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Justified", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Left", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Level", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures", "DE.Views.ParagraphSettingsAdvanced.textNone": "None", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType Features", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", "DE.Views.ParagraphSettingsAdvanced.textRight": "Right", "DE.Views.ParagraphSettingsAdvanced.textSet": "Specify", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spacing", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and Contextual", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, Contextual and Discretionary", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, Contextual and Historical", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and Discretionary", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, Historical and Discretionary", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and Historical", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", @@ -2343,23 +2360,6 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders", - "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType Features", - "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures", - "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only", - "DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual", - "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical", - "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and Contextual", - "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and Historical", - "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and Historical", - "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, Contextual and Historical", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, Contextual and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, Historical and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Historical and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textAll": "All", "DE.Views.RightMenu.txtChartSettings": "Chart settings", "DE.Views.RightMenu.txtFormSettings": "Form Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 3fc982791..acfa162e7 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -121,6 +121,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersión con líneas suavizadas y marcadores", "Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textSurface": "Superficie", + "Common.Translation.textMoreButton": "Más", "Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.", "Common.Translation.warnFileLockedBtnEdit": "Crear una copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -170,6 +171,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Sin color", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña", + "Common.UI.SearchBar.textFind": "Buscar", + "Common.UI.SearchBar.tipCloseSearch": "Cerrar búsqueda", + "Common.UI.SearchBar.tipNextResult": "Resultado siguiente", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir los ajustes avanzados", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.SearchDialog.textHighlight": "Resaltar resultados", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", @@ -182,11 +188,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Reemplazar todo", "Common.UI.SynchronizeTip.textDontShow": "No volver a mostrar este mensaje", "Common.UI.SynchronizeTip.textSynchronize": "El documento ha sido cambiado por otro usuario.
Por favor haga clic para guardar sus cambios y recargue las actualizaciones.", + "Common.UI.ThemeColorPalette.textRecentColors": "Colores recientes", "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", "Common.UI.Themes.txtThemeClassicLight": "Clásico claro", "Common.UI.Themes.txtThemeDark": "Oscuro", "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Themes.txtThemeSystem": "Igual que el sistema", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Cerrar", "Common.UI.Window.noButtonText": "No", @@ -285,6 +293,7 @@ "Common.Views.Header.textHideLines": "Ocultar reglas", "Common.Views.Header.textHideStatusBar": "Ocultar barra de estado", "Common.Views.Header.textRemoveFavorite": "Eliminar de Favoritos", + "Common.Views.Header.textShare": "Compartir", "Common.Views.Header.textZoom": "Ampliación", "Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento", "Common.Views.Header.tipDownload": "Descargar archivo", @@ -292,7 +301,9 @@ "Common.Views.Header.tipPrint": "Imprimir archivo", "Common.Views.Header.tipRedo": "Rehacer", "Common.Views.Header.tipSave": "Guardar", + "Common.Views.Header.tipSearch": "Búsqueda", "Common.Views.Header.tipUndo": "Deshacer", + "Common.Views.Header.tipUsers": "Ver usuarios", "Common.Views.Header.tipViewSettings": "Mostrar ajustes", "Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento", "Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso", @@ -333,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "Cargando", "Common.Views.Plugins.groupCaption": "Extensiones", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Cerrar plugin", "Common.Views.Plugins.textLoading": "Cargando", "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Detener", @@ -446,6 +458,21 @@ "Common.Views.ReviewPopover.txtReject": "Rechazar", "Common.Views.SaveAsDlg.textLoading": "Cargando", "Common.Views.SaveAsDlg.textTitle": "Carpeta para guardar", + "Common.Views.SearchPanel.textCaseSensitive": "Distinguir mayúsculas de minúsculas", + "Common.Views.SearchPanel.textCloseSearch": "Cerrar búsqueda", + "Common.Views.SearchPanel.textFind": "Buscar", + "Common.Views.SearchPanel.textFindAndReplace": "Buscar y reemplazar", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Coincidir utilizando expresiones regulares", + "Common.Views.SearchPanel.textNoMatches": "No hay coincidencias", + "Common.Views.SearchPanel.textNoSearchResults": "No hay resultados de búsqueda", + "Common.Views.SearchPanel.textReplace": "Reemplazar", + "Common.Views.SearchPanel.textReplaceAll": "Reemplazar todo", + "Common.Views.SearchPanel.textReplaceWith": "Reemplazar por", + "Common.Views.SearchPanel.textSearchResults": "Resultados de búsqueda: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Hay demasiados resultados para mostrar aquí", + "Common.Views.SearchPanel.textWholeWords": "Sólo palabras completas", + "Common.Views.SearchPanel.tipNextResult": "Resultado siguiente", + "Common.Views.SearchPanel.tipPreviousResult": "Resultado anterior", "Common.Views.SelectFileDlg.textLoading": "Cargando", "Common.Views.SelectFileDlg.textTitle": "Seleccionar fuente de datos", "Common.Views.SignDialog.textBold": "Negrilla", @@ -537,17 +564,19 @@ "DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", "DE.Controllers.Main.errorDefaultMessage": "Código de error: %1", "DE.Controllers.Main.errorDirectUrl": "Por favor, verifique el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo para descargar.", - "DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", - "DE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", + "DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro.", + "DE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.", "DE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo", + "DE.Controllers.Main.errorEmptyTOC": "Empezar a crear una tabla de contenido aplicando un estilo de título de la galería de estilos para el texto seleccionado.", "DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "DE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor.
Por favor, póngase en contacto con el administrador del Servidor de Documentos para obtener más detalles.", - "DE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras", + "DE.Controllers.Main.errorForceSave": "Se produjo un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.", "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "DE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "DE.Controllers.Main.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.", "DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", + "DE.Controllers.Main.errorNoTOC": "No hay ninguna tabla de contenido para actualizar. Se puede insertar una desde la pestaña Referencias.", "DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", "DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "DE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.", @@ -615,8 +644,10 @@ "DE.Controllers.Main.textPaidFeature": "Función de pago", "DE.Controllers.Main.textReconnect": "Se ha restablecido la conexión", "DE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", + "DE.Controllers.Main.textRememberMacros": "Recordar mi elección para todas las macros", "DE.Controllers.Main.textRenameError": "El nombre de usuario no debe estar vacío.", "DE.Controllers.Main.textRenameLabel": "Escriba un nombre que se utilizará para la colaboración", + "DE.Controllers.Main.textRequestMacros": "Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modo estricto", "DE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.
Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", @@ -891,6 +922,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado", "DE.Controllers.Navigation.txtBeginning": "Principio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de", + "DE.Controllers.Search.notcriticalErrorTitle": "Advertencia", "DE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar con.", "DE.Controllers.Statusbar.textDisconnect": "Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.", "DE.Controllers.Statusbar.textHasChanges": "Nuevos cambios han sido encontrado", @@ -1733,9 +1765,13 @@ "DE.Views.FileMenuPanels.Settings.strFast": "rápido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", "DE.Views.FileMenuPanels.Settings.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAYÚSCULAS", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Omitir palabras con números", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Cambios de colaboración en tiempo real", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Mostrar comentarios en el texto", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Mostrar comentarios resueltos", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar corrección ortográfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estricto", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema de interfaz", @@ -1759,9 +1795,13 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostrar con un clic en los globos", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostrar al mantener el puntero en la información sobre herramientas", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Colaboración", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Activar el modo oscuro para documentos", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editar y guardar", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Co-edición en tiempo real. Todos los cambios se guardan automáticamente", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar a la página", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar al ancho", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Jeroglíficos", "DE.Views.FileMenuPanels.Settings.txtInch": "Pulgada", "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "DE.Views.FileMenuPanels.Settings.txtLast": "Ver últimos", @@ -1773,12 +1813,17 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Punto", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todo", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar control de cambios", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Сorrección ortográfica", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Deshabilitar todo", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Deshabilitar todas las macros sin notificación", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Utilice el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Utilice la tecla Alt para navegar por la interfaz de usuario mediante el teclado", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Utilice la tecla Opción para navegar por la interfaz de usuario mediante el teclado", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de trabajo", "DE.Views.FormSettings.textAlways": "Siempre", "DE.Views.FormSettings.textAspect": "Bloquear relación de aspecto", "DE.Views.FormSettings.textAutofit": "Autoajustar", @@ -1809,6 +1854,7 @@ "DE.Views.FormSettings.textRequired": "Necesario", "DE.Views.FormSettings.textScale": "Cuándo escalar", "DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen", + "DE.Views.FormSettings.textTag": "Etiqueta", "DE.Views.FormSettings.textTip": "Sugerencia", "DE.Views.FormSettings.textTipAdd": "Agregar valor nuevo", "DE.Views.FormSettings.textTipDelete": "Eliminar valor", @@ -1821,6 +1867,7 @@ "DE.Views.FormSettings.textWidth": "Ancho de celda", "DE.Views.FormsTab.capBtnCheckBox": "Casilla", "DE.Views.FormsTab.capBtnComboBox": "Cuadro combinado", + "DE.Views.FormsTab.capBtnDownloadForm": "Descargar como oform", "DE.Views.FormsTab.capBtnDropDown": "Lista desplegable", "DE.Views.FormsTab.capBtnImage": "Imagen", "DE.Views.FormsTab.capBtnNext": "Campo siguiente", @@ -1840,6 +1887,7 @@ "DE.Views.FormsTab.textSubmited": "El formulario se ha enviado correctamente", "DE.Views.FormsTab.tipCheckBox": "Insertar casilla", "DE.Views.FormsTab.tipComboBox": "Insertar cuadro combinado", + "DE.Views.FormsTab.tipDownloadForm": "Descargar el archivo como documento OFORM rellenable", "DE.Views.FormsTab.tipDropDown": "Insertar lista desplegable", "DE.Views.FormsTab.tipImageField": "Insertar imagen", "DE.Views.FormsTab.tipNextForm": "Ir al siguiente campo", @@ -1994,11 +2042,13 @@ "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Comentarios", "DE.Views.LeftMenu.tipNavigation": "Navegación", + "DE.Views.LeftMenu.tipOutline": "Títulos", "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Búsqueda", "DE.Views.LeftMenu.tipSupport": "Feedback y Soporte", "DE.Views.LeftMenu.tipTitles": "Títulos", "DE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO", + "DE.Views.LeftMenu.txtEditor": "Editor de documentos", "DE.Views.LeftMenu.txtLimit": "Limitar acceso", "DE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA", "DE.Views.LeftMenu.txtTrialDev": "Modo de programador de prueba", @@ -2016,6 +2066,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Empezar en", "DE.Views.LineNumbersDialog.textTitle": "Numeración de Líneas", "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.Links.capBtnAddText": "Agregar texto", "DE.Views.Links.capBtnBookmarks": "Marcador", "DE.Views.Links.capBtnCaption": "Leyenda", "DE.Views.Links.capBtnContentsUpdate": "Actualizar la tabla", @@ -2040,6 +2091,7 @@ "DE.Views.Links.textSwapNotes": "Intercambiar Notas al Pie y Notas al Final", "DE.Views.Links.textUpdateAll": "Actualice toda la tabla", "DE.Views.Links.textUpdatePages": "Actualice solo los números de página", + "DE.Views.Links.tipAddText": "Incluir el título en la tabla de contenido", "DE.Views.Links.tipBookmarks": "Crear marcador", "DE.Views.Links.tipCaption": "Insertar leyenda", "DE.Views.Links.tipContents": "Introducir tabla de contenidos", @@ -2050,6 +2102,8 @@ "DE.Views.Links.tipTableFigures": "Insertar tabla de ilustraciones", "DE.Views.Links.tipTableFiguresUpdate": "Actualizar la tabla de ilustraciones", "DE.Views.Links.titleUpdateTOF": "Actualizar la tabla de ilustraciones", + "DE.Views.Links.txtDontShowTof": "No mostrar en la tabla de contenido", + "DE.Views.Links.txtLevel": "Nivel", "DE.Views.ListSettingsDialog.textAuto": "Automático", "DE.Views.ListSettingsDialog.textCenter": "Al centro", "DE.Views.ListSettingsDialog.textLeft": "Izquierda", @@ -2114,6 +2168,8 @@ "DE.Views.MailMergeSettings.txtPrev": "a registro anterior", "DE.Views.MailMergeSettings.txtUntitled": "Sin título", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Imposible empezar fusión", + "DE.Views.Navigation.strNavigate": "Títulos", + "DE.Views.Navigation.txtClosePanel": "Cerrar títulos", "DE.Views.Navigation.txtCollapse": "Desplegar todo", "DE.Views.Navigation.txtDemote": "Degradar", "DE.Views.Navigation.txtEmpty": "No hay títulos en el documento.
Aplique un estilo de título al texto para que aparezca en la tabla de contenido.", @@ -2121,11 +2177,17 @@ "DE.Views.Navigation.txtEmptyViewer": "No hay títulos en el documento.", "DE.Views.Navigation.txtExpand": "Expandir todo", "DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel", + "DE.Views.Navigation.txtFontSize": "Tamaño de fuente", "DE.Views.Navigation.txtHeadingAfter": "Título nuevo después ", "DE.Views.Navigation.txtHeadingBefore": "Título nuevo antes", + "DE.Views.Navigation.txtLarge": "Grande", + "DE.Views.Navigation.txtMedium": "Medio", "DE.Views.Navigation.txtNewHeading": "Subtítulo nuevo", "DE.Views.Navigation.txtPromote": "Promover", "DE.Views.Navigation.txtSelect": "Seleccione contenido", + "DE.Views.Navigation.txtSettings": "Ajustes de los títulos", + "DE.Views.Navigation.txtSmall": "Pequeño", + "DE.Views.Navigation.txtWrapHeadings": "Ajustar títulos largos", "DE.Views.NoteSettingsDialog.textApply": "Aplicar", "DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar cambios a", "DE.Views.NoteSettingsDialog.textContinue": "Continua", @@ -2632,7 +2694,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Imagen de archivo", "DE.Views.Toolbar.mniImageFromStorage": "Imagen de Almacenamiento", "DE.Views.Toolbar.mniImageFromUrl": "Imagen de URL", + "DE.Views.Toolbar.mniInsertSSE": "Insertar hoja de cálculo", "DE.Views.Toolbar.mniLowerCase": "minúsculas", + "DE.Views.Toolbar.mniRemoveFooter": "Quitar pie de página", + "DE.Views.Toolbar.mniRemoveHeader": "Quitar encabezado", "DE.Views.Toolbar.mniSentenceCase": "Tipo oración.", "DE.Views.Toolbar.mniTextToTable": "Convertir texto en tabla", "DE.Views.Toolbar.mniToggleCase": "tIPO iNVERSO", @@ -2817,6 +2882,7 @@ "DE.Views.ViewTab.textFitToWidth": "Ajustar al ancho", "DE.Views.ViewTab.textInterfaceTheme": "Tema del interfaz", "DE.Views.ViewTab.textNavigation": "Navegación", + "DE.Views.ViewTab.textOutline": "Títulos", "DE.Views.ViewTab.textRulers": "Reglas", "DE.Views.ViewTab.textStatusBar": "Barra de estado", "DE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 8f5be436f..9bdcbaa0d 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -344,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "Chargement", "Common.Views.Plugins.groupCaption": "Modules complémentaires", "Common.Views.Plugins.strPlugins": "Plug-ins", + "Common.Views.Plugins.textClosePanel": "Fermer le plugin", "Common.Views.Plugins.textLoading": "Chargement", "Common.Views.Plugins.textStart": "Démarrer", "Common.Views.Plugins.textStop": "Arrêter", @@ -1853,6 +1854,7 @@ "DE.Views.FormSettings.textRequired": "Requis", "DE.Views.FormSettings.textScale": "Mise à l'échelle", "DE.Views.FormSettings.textSelectImage": "Sélectionner une image", + "DE.Views.FormSettings.textTag": "Tag", "DE.Views.FormSettings.textTip": "Conseil", "DE.Views.FormSettings.textTipAdd": "Ajouter une nouvelle valeur", "DE.Views.FormSettings.textTipDelete": "Supprimer la valeur", @@ -2046,6 +2048,7 @@ "DE.Views.LeftMenu.tipSupport": "Commentaires & assistance", "DE.Views.LeftMenu.tipTitles": "Titres", "DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", + "DE.Views.LeftMenu.txtEditor": "Éditeur de Documents", "DE.Views.LeftMenu.txtLimit": "Accès limité", "DE.Views.LeftMenu.txtTrial": "MODE DEMO", "DE.Views.LeftMenu.txtTrialDev": "Essai en mode Développeur", @@ -2691,6 +2694,7 @@ "DE.Views.Toolbar.mniImageFromFile": "Image à partir d'un fichier", "DE.Views.Toolbar.mniImageFromStorage": "Image de stockage", "DE.Views.Toolbar.mniImageFromUrl": "Image à partir d'une URL", + "DE.Views.Toolbar.mniInsertSSE": "Insérer la feuille de calcul", "DE.Views.Toolbar.mniLowerCase": "minuscule", "DE.Views.Toolbar.mniRemoveFooter": "Supprimer le pied de page", "DE.Views.Toolbar.mniRemoveHeader": "Supprimer l'en-tête", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index d73c22d63..cffbc7d96 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -1318,10 +1318,6 @@ "DE.Views.CellsAddDialog.textRow": "Տողեր", "DE.Views.CellsAddDialog.textTitle": "Տեղադրեք մի քանիսը", "DE.Views.CellsAddDialog.textUp": "Նշորդի վերևում", - "DE.Views.CellsRemoveDialog.textCol": "Ջնջել ամբողջ սյունակը", - "DE.Views.CellsRemoveDialog.textLeft": "Տեղափոխեք վանդակները ձախ", - "DE.Views.CellsRemoveDialog.textRow": "Ջնջել ամբողջ տողը", - "DE.Views.CellsRemoveDialog.textTitle": "Ջնջել վանդակներ", "DE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "DE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը", "DE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները", @@ -1340,10 +1336,6 @@ "DE.Views.ChartSettings.txtTight": "Ձիգ", "DE.Views.ChartSettings.txtTitle": "Գծապատկեր", "DE.Views.ChartSettings.txtTopAndBottom": "Վերև և ներքև", - "DE.Views.CompareSettingsDialog.textChar": "Նիշերով", - "DE.Views.CompareSettingsDialog.textShow": " Ցուցադրել փոփոխությունները", - "DE.Views.CompareSettingsDialog.textTitle": "Համեմատման կարգավորումներ", - "DE.Views.CompareSettingsDialog.textWord": "Բառի մակարդակ", "DE.Views.ControlSettingsDialog.strGeneral": "Ընդհանուր", "DE.Views.ControlSettingsDialog.textAdd": "Հավելել", "DE.Views.ControlSettingsDialog.textAppearance": "Տեսք", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index d6db853ca..22d8d43cd 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -121,6 +121,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori", "Common.define.chartData.textStock": "Azionario", "Common.define.chartData.textSurface": "Superficie", + "Common.Translation.textMoreButton": "più", "Common.Translation.warnFileLocked": "Non puoi modificare questo file perché è in fase di modifica in un'altra applicazione.", "Common.Translation.warnFileLockedBtnEdit": "Crea copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", @@ -170,6 +171,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Nessun colore", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Nascondi password", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra password", + "Common.UI.SearchBar.textFind": "Trova", + "Common.UI.SearchBar.tipCloseSearch": "Chiudi la ricerca", + "Common.UI.SearchBar.tipNextResult": "Successivo", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Aprire le impostazioni avanzate", + "Common.UI.SearchBar.tipPreviousResult": "Precedente", "Common.UI.SearchDialog.textHighlight": "Evidenzia risultati", "Common.UI.SearchDialog.textMatchCase": "Sensibile al maiuscolo/minuscolo", "Common.UI.SearchDialog.textReplaceDef": "Inserisci testo sostitutivo", @@ -182,11 +188,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Sostituisci tutto", "Common.UI.SynchronizeTip.textDontShow": "Non mostrare più questo messaggio", "Common.UI.SynchronizeTip.textSynchronize": "Il documento è stato modificato da un altro utente.
Clicca per salvare le modifiche e ricaricare gli aggiornamenti.", + "Common.UI.ThemeColorPalette.textRecentColors": "Colori recenti", "Common.UI.ThemeColorPalette.textStandartColors": "Colori standard", "Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema", "Common.UI.Themes.txtThemeClassicLight": "Luce leggera", "Common.UI.Themes.txtThemeDark": "Scuro", "Common.UI.Themes.txtThemeLight": "Chiaro", + "Common.UI.Themes.txtThemeSystem": "Uguale al sistema", "Common.UI.Window.cancelButtonText": "Annulla", "Common.UI.Window.closeButtonText": "Chiudi", "Common.UI.Window.noButtonText": "No", @@ -213,6 +221,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Elenchi puntati automatici", "Common.Views.AutoCorrectDialog.textBy": "Di", "Common.Views.AutoCorrectDialog.textDelete": "Elimina", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Aggiungi punto con doppio spazio", "Common.Views.AutoCorrectDialog.textFLCells": "Rendere maiuscola la prima lettera delle celle della tabella", "Common.Views.AutoCorrectDialog.textFLSentence": "Rendere maiuscola la prima lettera di frasi", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali", @@ -261,6 +270,7 @@ "Common.Views.Comments.textResolved": "Chiuso", "Common.Views.Comments.textSort": "Ordinare commenti", "Common.Views.Comments.textViewResolved": "Non sei autorizzato a riaprire il commento", + "Common.Views.Comments.txtEmpty": "Non ci sono commenti nel documento.", "Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio", "Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.

Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:", "Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla", @@ -283,6 +293,7 @@ "Common.Views.Header.textHideLines": "Nascondi righelli", "Common.Views.Header.textHideStatusBar": "Nascondi barra di stato", "Common.Views.Header.textRemoveFavorite": "Rimuovi dai preferiti", + "Common.Views.Header.textShare": "Condividi", "Common.Views.Header.textZoom": "Ingrandimento", "Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento", "Common.Views.Header.tipDownload": "Scarica file", @@ -290,7 +301,9 @@ "Common.Views.Header.tipPrint": "Stampa file", "Common.Views.Header.tipRedo": "Ripristina", "Common.Views.Header.tipSave": "Salva", + "Common.Views.Header.tipSearch": "Cerca", "Common.Views.Header.tipUndo": "Annulla", + "Common.Views.Header.tipUsers": "Visualizzare gli utenti", "Common.Views.Header.tipViewSettings": "Mostra impostazioni", "Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento", "Common.Views.Header.txtAccessRights": "Modifica diritti di accesso", @@ -331,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "Caricamento", "Common.Views.Plugins.groupCaption": "Plugin", "Common.Views.Plugins.strPlugins": "Plugin", + "Common.Views.Plugins.textClosePanel": "Chiudi plugin", "Common.Views.Plugins.textLoading": "Caricamento", "Common.Views.Plugins.textStart": "Inizia", "Common.Views.Plugins.textStop": "Termina", @@ -444,6 +458,21 @@ "Common.Views.ReviewPopover.txtReject": "Rifiutare", "Common.Views.SaveAsDlg.textLoading": "Caricamento", "Common.Views.SaveAsDlg.textTitle": "Cartella di salvataggio", + "Common.Views.SearchPanel.textCaseSensitive": "Sensibile al maiuscolo/minuscolo", + "Common.Views.SearchPanel.textCloseSearch": "Chiudi la ricerca", + "Common.Views.SearchPanel.textFind": "Trova", + "Common.Views.SearchPanel.textFindAndReplace": "Trova e sostituisci", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Corrispondenza usando espressioni regolari", + "Common.Views.SearchPanel.textNoMatches": "Nessuna corrispondenza", + "Common.Views.SearchPanel.textNoSearchResults": "Nessun risultato di ricerca", + "Common.Views.SearchPanel.textReplace": "Sostituisci", + "Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto", + "Common.Views.SearchPanel.textReplaceWith": "Sostituire con", + "Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui", + "Common.Views.SearchPanel.textWholeWords": "Solo parole intere", + "Common.Views.SearchPanel.tipNextResult": "Successivo", + "Common.Views.SearchPanel.tipPreviousResult": "Precedente", "Common.Views.SelectFileDlg.textLoading": "Caricamento", "Common.Views.SelectFileDlg.textTitle": "Seleziona Sorgente Dati", "Common.Views.SignDialog.textBold": "Grassetto", @@ -511,7 +540,9 @@ "DE.Controllers.LeftMenu.txtCompatible": "Il documento verrà salvato nel nuovo formato questo consentirà di utilizzare tutte le funzionalità dell'editor, ma potrebbe influire sul layout del documento.
Utilizzare l'opzione \"Compatibilità\" nelle impostazioni avanzate se si desidera rendere i file compatibili con le versioni precedenti di MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Senza titolo", "DE.Controllers.LeftMenu.warnDownloadAs": "Se continui a salvare in questo formato tutte le funzioni eccetto il testo andranno perse.
Sei sicuro di voler continuare?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Il tuo {0} verrà convertito in un formato modificabile. Questo potrebbe richiedere del tempo. Il documento risultante sarà ottimizzato per consentirti di modificare il testo, quindi potrebbe non apparire esattamente come l'originale {0}, soprattutto se il file originale conteneva molti elementi grafici.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Se continui a salvare in questo formato, parte della formattazione potrebbe andare persa.
Sei sicuro di voler continuare?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} non è un carattere speciale valido per il campo della sostituzione.", "DE.Controllers.Main.applyChangesTextText": "Caricamento delle modifiche in corso...", "DE.Controllers.Main.applyChangesTitleText": "Caricamento delle modifiche", "DE.Controllers.Main.convertationTimeoutText": "È stato superato il tempo limite della conversione.", @@ -533,17 +564,19 @@ "DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", "DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", "DE.Controllers.Main.errorDirectUrl": "Si prega di verificare il link al documento.
Questo collegamento deve essere un collegamento diretto al file da scaricare.", - "DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", - "DE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Salva come ...' per salvare la copia di backup del file sul disco rigido del computer.", + "DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizza l'opzione 'Scaricare come ...' per salvare la copia di backup del file sul disco rigido del computer.", + "DE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.
Utilizza l'opzione 'Salvare come ...' per salvare la copia di backup del file sul disco rigido del computer.", "DE.Controllers.Main.errorEmailClient": "Non è stato trovato nessun client di posta elettronica.", + "DE.Controllers.Main.errorEmptyTOC": "Inizia a creare un sommario applicando uno stile di intestazione dalla galleria Stili al testo selezionato.", "DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", "DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", - "DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", + "DE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizza l'opzione 'Scaricare come' per salvare il file sul disco rigido del computer o riprova più tardi.", "DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", "DE.Controllers.Main.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Si prega di selezionare un altro file.", "DE.Controllers.Main.errorMailMergeSaveFile": "Unione non riuscita", + "DE.Controllers.Main.errorNoTOC": "Non è presente alcun indice da aggiornare. Puoi inserirne uno dalla scheda Riferimenti.", "DE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito", "DE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.", "DE.Controllers.Main.errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Si prega di ricaricare la pagina.", @@ -611,8 +644,10 @@ "DE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", "DE.Controllers.Main.textReconnect": "Connessione ripristinata", "DE.Controllers.Main.textRemember": "Ricorda la mia scelta per tutti i file", + "DE.Controllers.Main.textRememberMacros": "Ricordare la mia scelta per tutte le macro", "DE.Controllers.Main.textRenameError": "Il nome utente non può essere vuoto.", "DE.Controllers.Main.textRenameLabel": "Immettere un nome da utilizzare per la collaborazione", + "DE.Controllers.Main.textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modalità Rigorosa", "DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.
Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.", @@ -887,6 +922,8 @@ "DE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.", "DE.Controllers.Navigation.txtBeginning": "Inizio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Vai all'inizio del documento", + "DE.Controllers.Search.notcriticalErrorTitle": "Avviso", + "DE.Controllers.Search.warnReplaceString": "{0} non è un carattere speciale valido per la casella Sostituire con.", "DE.Controllers.Statusbar.textDisconnect": "Connessione persa
Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.", "DE.Controllers.Statusbar.textHasChanges": "Sono state rilevate nuove modifiche", "DE.Controllers.Statusbar.textSetTrackChanges": "Sei in modalità traccia cambiamenti", @@ -1660,7 +1697,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù", "DE.Views.FileMenu.btnCreateNewCaption": "Crea una nuova didascalia", "DE.Views.FileMenu.btnDownloadCaption": "Scarica come...", - "DE.Views.FileMenu.btnExitCaption": "Uscire", + "DE.Views.FileMenu.btnExitCaption": "Chiudere", "DE.Views.FileMenu.btnFileOpenCaption": "Aprire...", "DE.Views.FileMenu.btnHelpCaption": "Guida...", "DE.Views.FileMenu.btnHistoryCaption": "Cronologia delle versioni", @@ -1687,13 +1724,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Modifica diritti di accesso", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commento", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creato", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Visualizzazione Web veloce", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Caricamento in corso...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Ultima modifica di", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Ultima modifica", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "No", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietario", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pagine", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Dimensione pagina", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragrafi", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "Produttore PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF con tag", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "‎Versione PDF‎", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone che hanno diritti", @@ -1704,6 +1745,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Parole", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Sì", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modifica diritti di accesso", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone che hanno diritti", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso", @@ -1723,9 +1765,13 @@ "DE.Views.FileMenuPanels.Settings.strFast": "Rapido", "DE.Views.FileMenuPanels.Settings.strFontRender": "Suggerimento per i caratteri", "DE.Views.FileMenuPanels.Settings.strForcesave": "‎Aggiungere la versione all'archivio dopo aver fatto clic su Salva o CTRL+S‎", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignora le parole in MAIUSCOLO", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora le parole con i numeri", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Impostazioni macro", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Evidenzia modifiche di collaborazione in tempo reale", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Mostrare i commenti nel testo", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Mostrare i commenti risolti", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Attiva controllo ortografia", "DE.Views.FileMenuPanels.Settings.strStrict": "Rigorosa", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema dell'interfaccia", @@ -1749,9 +1795,13 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostrare tramite clic su balloons", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostrare tramite suggerimenti al passaggio del mouse", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimetro", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Collaborazione", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Attivare la modalità scura di documenti", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Modifica e salvataggio", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Co-editing in tempo reale. Tutte le modifiche vengono salvate automaticamente", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Adatta alla pagina", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Adatta alla larghezza", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Geroglifici", "DE.Views.FileMenuPanels.Settings.txtInch": "Pollice", "DE.Views.FileMenuPanels.Settings.txtInput": "Input alternativo", "DE.Views.FileMenuPanels.Settings.txtLast": "Ultime", @@ -1763,12 +1813,17 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Punto", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Abilita tutto", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Abilita tutte le macro senza una notifica", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrare le modifiche durante le revisioni", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Controllo ortografico", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Disabilita tutto", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Disabilita tutte le macro senza notifica", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Utilizza il pulsante \"Salvare\" per sincronizzare le modifiche apportate da te e da altri", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Utilizzare il tasto Alt per navigare nell'interfaccia utente usando la tastiera", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Utilizzare il tasto Opzione per navigare nell'interfaccia utente usando la tastiera", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra notifica", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica", "DE.Views.FileMenuPanels.Settings.txtWin": "come su Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Spazio di lavoro", "DE.Views.FormSettings.textAlways": "Sempre", "DE.Views.FormSettings.textAspect": "Blocca proporzioni", "DE.Views.FormSettings.textAutofit": "adattare automaticamente", @@ -1799,6 +1854,7 @@ "DE.Views.FormSettings.textRequired": "Richiesto", "DE.Views.FormSettings.textScale": "Quando scalare", "DE.Views.FormSettings.textSelectImage": "Seleziona Immagine", + "DE.Views.FormSettings.textTag": "Etichetta", "DE.Views.FormSettings.textTip": "Suggerimento", "DE.Views.FormSettings.textTipAdd": "Aggiungi un nuovo valore", "DE.Views.FormSettings.textTipDelete": "Elimina valore", @@ -1811,6 +1867,7 @@ "DE.Views.FormSettings.textWidth": "‎Larghezza cella‎", "DE.Views.FormsTab.capBtnCheckBox": "Casella di controllo", "DE.Views.FormsTab.capBtnComboBox": "Casella combinata", + "DE.Views.FormsTab.capBtnDownloadForm": "Scarica come oform", "DE.Views.FormsTab.capBtnDropDown": "Menù a discesca", "DE.Views.FormsTab.capBtnImage": "Immagine", "DE.Views.FormsTab.capBtnNext": "Campo successivo", @@ -1830,6 +1887,7 @@ "DE.Views.FormsTab.textSubmited": "Modulo inviato con successo", "DE.Views.FormsTab.tipCheckBox": "Inserisci casella di controllo", "DE.Views.FormsTab.tipComboBox": "Inserisci una cella combinata", + "DE.Views.FormsTab.tipDownloadForm": "Scaricare un file come un documento OFORM compilabile", "DE.Views.FormsTab.tipDropDown": "Inserisci lista in basso espandibile", "DE.Views.FormsTab.tipImageField": "Inserisci immagine", "DE.Views.FormsTab.tipNextForm": "Vai al campo successivo", @@ -1984,11 +2042,13 @@ "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Commenti", "DE.Views.LeftMenu.tipNavigation": "Navigazione", + "DE.Views.LeftMenu.tipOutline": "Intestazioni", "DE.Views.LeftMenu.tipPlugins": "Plugin", "DE.Views.LeftMenu.tipSearch": "Ricerca", "DE.Views.LeftMenu.tipSupport": "Feedback & Supporto", "DE.Views.LeftMenu.tipTitles": "Titoli", "DE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE", + "DE.Views.LeftMenu.txtEditor": "Document Editor", "DE.Views.LeftMenu.txtLimit": "‎Limita accesso‎", "DE.Views.LeftMenu.txtTrial": "Modalità di prova", "DE.Views.LeftMenu.txtTrialDev": "Prova Modalità sviluppatore", @@ -2006,6 +2066,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Inizia da", "DE.Views.LineNumbersDialog.textTitle": "Linea con numeri", "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.Links.capBtnAddText": "Aggiungi testo", "DE.Views.Links.capBtnBookmarks": "Segnalibro", "DE.Views.Links.capBtnCaption": "Didascalia", "DE.Views.Links.capBtnContentsUpdate": "Aggiorna tabella", @@ -2030,6 +2091,7 @@ "DE.Views.Links.textSwapNotes": "‎Scambia note a piè di pagina e di chiusura‎", "DE.Views.Links.textUpdateAll": "Aggiorna intera tabella", "DE.Views.Links.textUpdatePages": "Aggiorna solo numeri di pagina", + "DE.Views.Links.tipAddText": "Includere l'intestazione nell'indice", "DE.Views.Links.tipBookmarks": "Crea un segnalibro", "DE.Views.Links.tipCaption": "Inserisci didascalia", "DE.Views.Links.tipContents": "Inserisci Sommario", @@ -2040,6 +2102,8 @@ "DE.Views.Links.tipTableFigures": "Inserisci la tabella delle figure", "DE.Views.Links.tipTableFiguresUpdate": "‎Aggiorna indice delle figure‎", "DE.Views.Links.titleUpdateTOF": "‎Aggiorna indice delle figure‎", + "DE.Views.Links.txtDontShowTof": "Non mostrare nell'indice", + "DE.Views.Links.txtLevel": "Livello", "DE.Views.ListSettingsDialog.textAuto": "Automatico", "DE.Views.ListSettingsDialog.textCenter": "Al centro", "DE.Views.ListSettingsDialog.textLeft": "A sinistra", @@ -2104,6 +2168,8 @@ "DE.Views.MailMergeSettings.txtPrev": "al record precedente", "DE.Views.MailMergeSettings.txtUntitled": "Senza titolo", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Avvio unione non riuscito", + "DE.Views.Navigation.strNavigate": "Intestazioni", + "DE.Views.Navigation.txtClosePanel": "Chiudi intestazioni", "DE.Views.Navigation.txtCollapse": "Comprimi tutto", "DE.Views.Navigation.txtDemote": "Retrocedere", "DE.Views.Navigation.txtEmpty": "Non ci sono titoli nel documento.
Applica uno stile di titolo al testo in modo che appaia nel sommario.", @@ -2111,11 +2177,17 @@ "DE.Views.Navigation.txtEmptyViewer": "Non ci sono titoli nel documento.", "DE.Views.Navigation.txtExpand": "Espandi tutto", "DE.Views.Navigation.txtExpandToLevel": "Espandi al livello", + "DE.Views.Navigation.txtFontSize": "Dimensione carattere", "DE.Views.Navigation.txtHeadingAfter": "Nuova intestazione dopo", "DE.Views.Navigation.txtHeadingBefore": "Nuova intestazione prima", + "DE.Views.Navigation.txtLarge": "Grande", + "DE.Views.Navigation.txtMedium": "Medio", "DE.Views.Navigation.txtNewHeading": "Nuovo sottotitolo", "DE.Views.Navigation.txtPromote": "Promuovere", "DE.Views.Navigation.txtSelect": "Scegli contenuto", + "DE.Views.Navigation.txtSettings": "Impostazioni di intestazione", + "DE.Views.Navigation.txtSmall": "Piccolo", + "DE.Views.Navigation.txtWrapHeadings": "Adattare intestazioni lunghe", "DE.Views.NoteSettingsDialog.textApply": "Applica", "DE.Views.NoteSettingsDialog.textApplyTo": "Applica modifiche a", "DE.Views.NoteSettingsDialog.textContinue": "Continua", @@ -2355,6 +2427,8 @@ "DE.Views.Statusbar.pageIndexText": "Pagina {0} di {1}", "DE.Views.Statusbar.tipFitPage": "Adatta alla pagina", "DE.Views.Statusbar.tipFitWidth": "Adatta alla larghezza", + "DE.Views.Statusbar.tipHandTool": "Strumento Mano", + "DE.Views.Statusbar.tipSelectTool": "Strumento di selezione", "DE.Views.Statusbar.tipSetLang": "Imposta lingua del testo", "DE.Views.Statusbar.tipZoomFactor": "Ingrandimento", "DE.Views.Statusbar.tipZoomIn": "Zoom avanti", @@ -2620,7 +2694,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Immagine da file", "DE.Views.Toolbar.mniImageFromStorage": "Immagine dallo spazio di archiviazione", "DE.Views.Toolbar.mniImageFromUrl": "Immagine da URL", + "DE.Views.Toolbar.mniInsertSSE": "Inserire foglio di calcolo", "DE.Views.Toolbar.mniLowerCase": "minuscolo", + "DE.Views.Toolbar.mniRemoveFooter": "Rimuovere piè di pagina", + "DE.Views.Toolbar.mniRemoveHeader": "Rimuovere intestazione", "DE.Views.Toolbar.mniSentenceCase": "Sentenza della frase", "DE.Views.Toolbar.mniTextToTable": "Convertire testo in tabella", "DE.Views.Toolbar.mniToggleCase": "mAIUSCOLO mINUSCOLO", @@ -2805,6 +2882,7 @@ "DE.Views.ViewTab.textFitToWidth": "Adatta alla larghezza", "DE.Views.ViewTab.textInterfaceTheme": "Tema dell'interfaccia", "DE.Views.ViewTab.textNavigation": "Navigazione", + "DE.Views.ViewTab.textOutline": "Intestazioni", "DE.Views.ViewTab.textRulers": "Righelli", "DE.Views.ViewTab.textStatusBar": "Barra di stato", "DE.Views.ViewTab.textZoom": "Zoom", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 234b79db2..9f6b0cb17 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -344,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "Laden", "Common.Views.Plugins.groupCaption": "Plug-ins", "Common.Views.Plugins.strPlugins": "Plug-ins", + "Common.Views.Plugins.textClosePanel": "Plugin sluiten", "Common.Views.Plugins.textLoading": "Laden", "Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStop": "Stoppen", @@ -2047,6 +2048,7 @@ "DE.Views.LeftMenu.tipSupport": "Feedback en Support", "DE.Views.LeftMenu.tipTitles": "Titels", "DE.Views.LeftMenu.txtDeveloper": "ONTWIKKELAARSMODUS", + "DE.Views.LeftMenu.txtEditor": "Documenteditor", "DE.Views.LeftMenu.txtLimit": "Beperk toegang", "DE.Views.LeftMenu.txtTrial": "TEST MODUS", "DE.Views.LeftMenu.txtTrialDev": "Proefontwikkelaarsmodus", diff --git a/apps/documenteditor/main/locale/pt-PT.json b/apps/documenteditor/main/locale/pt-PT.json index 8a1e93fac..662dfaa60 100644 --- a/apps/documenteditor/main/locale/pt-PT.json +++ b/apps/documenteditor/main/locale/pt-PT.json @@ -307,7 +307,7 @@ "Common.Views.Header.tipViewSettings": "Definições de visualização", "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", - "Common.Views.Header.txtRename": "Renomear", + "Common.Views.Header.txtRename": "Mudar nome", "Common.Views.History.textCloseHistory": "Fechar histórico", "Common.Views.History.textHide": "Recolher", "Common.Views.History.textHideAll": "Ocultar alterações detalhadas", @@ -344,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "A carregar", "Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Fechar plugin", "Common.Views.Plugins.textLoading": "A carregar", "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Parar", @@ -461,12 +462,14 @@ "Common.Views.SearchPanel.textCloseSearch": "Fechar pesquisa", "Common.Views.SearchPanel.textFind": "Localizar", "Common.Views.SearchPanel.textFindAndReplace": "Localizar e substituir", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Correspondência através de expressões regulares", "Common.Views.SearchPanel.textNoMatches": "Sem correspondência", "Common.Views.SearchPanel.textNoSearchResults": "Sem resultados de pesquisa", "Common.Views.SearchPanel.textReplace": "Substituir", "Common.Views.SearchPanel.textReplaceAll": "Substituir tudo", "Common.Views.SearchPanel.textReplaceWith": "Substituir com", "Common.Views.SearchPanel.textSearchResults": "Resultados da pesquisa: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Existem demasiados resultados para poderem ser mostrados aqui", "Common.Views.SearchPanel.textWholeWords": "Palavras inteiras apenas", "Common.Views.SearchPanel.tipNextResult": "Resultado seguinte", "Common.Views.SearchPanel.tipPreviousResult": "Resultado anterior", @@ -561,18 +564,19 @@ "DE.Controllers.Main.errorDataRange": "Intervalo de dados inválido.", "DE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", "DE.Controllers.Main.errorDirectUrl": "Verifique a ligação ao documento.
Deve ser uma ligação direta para o ficheiro a descarregar.", - "DE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.", - "DE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "DE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar a cópia de segurança do ficheiro numa unidade.", + "DE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar a cópia de segurança do ficheiro numa unidade.", "DE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.", - "DE.Controllers.Main.errorEmptyTOC": "Comece a criar um indice, aplicando um estilo de título da galeria Estilos ao texto selecionado.", + "DE.Controllers.Main.errorEmptyTOC": "Pode criar um índice remissivo aplicando um estilo ao texto selecionado a partir da galeria de estilos.", "DE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", "DE.Controllers.Main.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", - "DE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.", + "DE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro para uma unidade ou tente novamente mais tarde.", "DE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", "DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "DE.Controllers.Main.errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", "DE.Controllers.Main.errorMailMergeLoadFile": "Não foi possível carregar o documento. Por favor escolha outro ficheiro.", "DE.Controllers.Main.errorMailMergeSaveFile": "Falha ao unir.", + "DE.Controllers.Main.errorNoTOC": "Não existem alterações a fazer no índice remissivo. Pode introduzir alterações no separador Referências.", "DE.Controllers.Main.errorProcessSaveResult": "Falha ao guardar.", "DE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", "DE.Controllers.Main.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.", @@ -640,6 +644,7 @@ "DE.Controllers.Main.textPaidFeature": "Funcionalidade paga", "DE.Controllers.Main.textReconnect": "A ligação foi reposta", "DE.Controllers.Main.textRemember": "Memorizar a minha escolha", + "DE.Controllers.Main.textRememberMacros": "Memorizar escolha para todas as macros", "DE.Controllers.Main.textRenameError": "O nome de utilizador não pode estar em branco.", "DE.Controllers.Main.textRenameLabel": "Introduza um nome a ser usado para colaboração", "DE.Controllers.Main.textRequestMacros": "Uma macro faz um pedido de URL. Quer permitir o pedido à %1?", @@ -887,7 +892,7 @@ "DE.Controllers.Main.txtTableInd": "O Índice da Tabela Não Pode Ser Zero", "DE.Controllers.Main.txtTableOfContents": "Índice remissivo", "DE.Controllers.Main.txtTableOfFigures": "Tabela de figuras", - "DE.Controllers.Main.txtTOCHeading": "Cabeçalho do Índice", + "DE.Controllers.Main.txtTOCHeading": "Título do índice remissivo", "DE.Controllers.Main.txtTooLarge": "Número Demasiado Grande para Formatar", "DE.Controllers.Main.txtTypeEquation": "Digite uma equação aqui.", "DE.Controllers.Main.txtUndefBookmark": "Marcador Não-Definido", @@ -900,10 +905,10 @@ "DE.Controllers.Main.uploadDocFileCountMessage": "Nenhum documento foi carregado.", "DE.Controllers.Main.uploadDocSizeMessage": "Excedeu o limite de tamanho para o documento.", "DE.Controllers.Main.uploadImageExtMessage": "Formato desconhecido", - "DE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", "DE.Controllers.Main.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", - "DE.Controllers.Main.uploadImageTextText": "A enviar imagem...", - "DE.Controllers.Main.uploadImageTitleText": "A enviar imagem", + "DE.Controllers.Main.uploadImageTextText": "A carregar imagem...", + "DE.Controllers.Main.uploadImageTitleText": "A carregar imagem", "DE.Controllers.Main.waitText": "Aguarde...", "DE.Controllers.Main.warnBrowserIE9": "A aplicação não funciona corretamente com IE9. Deve utilizar IE10 ou superior", "DE.Controllers.Main.warnBrowserZoom": "A definição 'zoom' do seu navegador não é totalmente suportada. Prima Ctrl+0 para repor o valor padrão.", @@ -919,7 +924,7 @@ "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", "DE.Controllers.Search.notcriticalErrorTitle": "Aviso", "DE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.", - "DE.Controllers.Statusbar.textDisconnect": "Sem Ligação
A tentar ligar. Por favor, verifique as definições de ligação.", + "DE.Controllers.Statusbar.textDisconnect": "Sem ligação
A tentar ligar. Por favor, verifique as definições da ligação.", "DE.Controllers.Statusbar.textHasChanges": "Novas alterações foram encontradas", "DE.Controllers.Statusbar.textSetTrackChanges": "Está no modo Registar Alterações", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", @@ -1330,7 +1335,7 @@ "DE.Views.ChartSettings.txtThrough": "Através", "DE.Views.ChartSettings.txtTight": "Justo", "DE.Views.ChartSettings.txtTitle": "Gráfico", - "DE.Views.ChartSettings.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.ChartSettings.txtTopAndBottom": "Cima e baixo", "DE.Views.ControlSettingsDialog.strGeneral": "Geral", "DE.Views.ControlSettingsDialog.textAdd": "Adicionar", "DE.Views.ControlSettingsDialog.textAppearance": "Aparência", @@ -1396,7 +1401,7 @@ "DE.Views.CrossReferenceDialog.textWhich": "Para qual legenda", "DE.Views.CrossReferenceDialog.textWhichBookmark": "Para qual favorito", "DE.Views.CrossReferenceDialog.textWhichEndnote": "Para qual nota final", - "DE.Views.CrossReferenceDialog.textWhichHeading": "De qual título", + "DE.Views.CrossReferenceDialog.textWhichHeading": "Para que título", "DE.Views.CrossReferenceDialog.textWhichNote": "Para qual nota de rodapé", "DE.Views.CrossReferenceDialog.textWhichPara": "Para qual item numerado", "DE.Views.CrossReferenceDialog.txtReference": "Inserir referência a", @@ -1631,13 +1636,13 @@ "DE.Views.DocumentHolder.txtShowDegree": "Exibir grau", "DE.Views.DocumentHolder.txtShowOpenBracket": "Mostrar chaveta de abertura", "DE.Views.DocumentHolder.txtShowPlaceholder": "Exibir espaço reservado", - "DE.Views.DocumentHolder.txtShowTopLimit": "Exibir limite superior", + "DE.Views.DocumentHolder.txtShowTopLimit": "Mostrar limite superior", "DE.Views.DocumentHolder.txtSquare": "Quadrado", "DE.Views.DocumentHolder.txtStretchBrackets": "Esticar colchetes", "DE.Views.DocumentHolder.txtThrough": "Através", "DE.Views.DocumentHolder.txtTight": "Justo", - "DE.Views.DocumentHolder.txtTop": "Parte superior", - "DE.Views.DocumentHolder.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.DocumentHolder.txtTop": "Cima", + "DE.Views.DocumentHolder.txtTopAndBottom": "Cima e baixo", "DE.Views.DocumentHolder.txtUnderbar": "Barra por baixo do texto", "DE.Views.DocumentHolder.txtUngroup": "Desagrupar", "DE.Views.DocumentHolder.txtWarnUrl": "Clicar nesta ligação pode ser prejudicial ao seu dispositivo e dados.
Deseja continuar?", @@ -1653,7 +1658,7 @@ "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Cor do contorno", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Clique no diagrama ou utilize os botões para selecionar o contorno", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Tamanho do contorno", - "DE.Views.DropcapSettingsAdvanced.textBottom": "Inferior", + "DE.Views.DropcapSettingsAdvanced.textBottom": "Baixo", "DE.Views.DropcapSettingsAdvanced.textCenter": "Centro", "DE.Views.DropcapSettingsAdvanced.textColumn": "Coluna", "DE.Views.DropcapSettingsAdvanced.textDistance": "Distância do texto", @@ -1679,7 +1684,7 @@ "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Altura em linhas", "DE.Views.DropcapSettingsAdvanced.textTitle": "Capitulares - Definições avançadas", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Moldura - Definições avançadas", - "DE.Views.DropcapSettingsAdvanced.textTop": "Parte superior", + "DE.Views.DropcapSettingsAdvanced.textTop": "Cima", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textWidth": "Largura", "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nome da fonte", @@ -1700,7 +1705,7 @@ "DE.Views.FileMenu.btnPrintCaption": "Imprimir", "DE.Views.FileMenu.btnProtectCaption": "Proteger", "DE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", - "DE.Views.FileMenu.btnRenameCaption": "Renomear...", + "DE.Views.FileMenu.btnRenameCaption": "Mudar nome...", "DE.Views.FileMenu.btnReturnCaption": "Voltar para documento", "DE.Views.FileMenu.btnRightsCaption": "Direitos de acesso...", "DE.Views.FileMenu.btnSaveAsCaption": "Guardar como", @@ -1738,7 +1743,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", - "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Enviado", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras", "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Sim", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", @@ -1766,6 +1771,7 @@ "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", "DE.Views.FileMenuPanels.Settings.strShowComments": "Mostrar comentários no texto", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Mostrar comentários resolvidos", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estrito", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema da interface", @@ -1795,6 +1801,7 @@ "DE.Views.FileMenuPanels.Settings.txtFastTip": "Co-edição em tempo real. Todas as alterações são salvas automaticamente", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar à página", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar à largura", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglifos", "DE.Views.FileMenuPanels.Settings.txtInch": "Polegada", "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "DE.Views.FileMenuPanels.Settings.txtLast": "Ver último", @@ -1806,9 +1813,13 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Ponto", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Ativar tudo", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Ativar todas as macros sem uma notificação", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar registo de alterações", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificação ortográfica", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Desativar tudo", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desativar todas as macros sem uma notificação", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Utilize o botão \"Guardar\" para sincronizar as alterações efetuadas", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Utilize a tecla 'Alt' para navegar na interface através do teclado", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Utilize a tecla 'Opção' para navegar na interface através do teclado", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", @@ -1856,6 +1867,7 @@ "DE.Views.FormSettings.textWidth": "Largura da célula", "DE.Views.FormsTab.capBtnCheckBox": "Caixa de seleção", "DE.Views.FormsTab.capBtnComboBox": "Caixa de combinação", + "DE.Views.FormsTab.capBtnDownloadForm": "Descarregar como OFORM", "DE.Views.FormsTab.capBtnDropDown": "Suspenso", "DE.Views.FormsTab.capBtnImage": "Imagem", "DE.Views.FormsTab.capBtnNext": "Campo seguinte", @@ -1875,6 +1887,7 @@ "DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso", "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", + "DE.Views.FormsTab.tipDownloadForm": "Descarregar um ficheiro no formato OFORM", "DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa", "DE.Views.FormsTab.tipImageField": "Inserir imagem", "DE.Views.FormsTab.tipNextForm": "Ir para o campo seguinte", @@ -1893,7 +1906,7 @@ "DE.Views.HeaderFooterSettings.textDiffOdd": "Páginas pares e ímpares diferentes", "DE.Views.HeaderFooterSettings.textFrom": "Iniciar em", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Rodapé abaixo", - "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Cabeçalho no início", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Cabeçalho em cima", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Inserir na posição atual ", "DE.Views.HeaderFooterSettings.textOptions": "Opções", "DE.Views.HeaderFooterSettings.textPageNum": "Inserir número da página", @@ -1949,7 +1962,7 @@ "DE.Views.ImageSettings.txtSquare": "Quadrado", "DE.Views.ImageSettings.txtThrough": "Através", "DE.Views.ImageSettings.txtTight": "Justo", - "DE.Views.ImageSettings.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.ImageSettings.txtTopAndBottom": "Cima e baixo", "DE.Views.ImageSettingsAdvanced.strMargins": "Preenchimento de texto", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absoluto", "DE.Views.ImageSettingsAdvanced.textAlignment": "Alinhamento", @@ -1965,7 +1978,7 @@ "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Estilo inicial", "DE.Views.ImageSettingsAdvanced.textBelow": "abaixo", "DE.Views.ImageSettingsAdvanced.textBevel": "Bisel", - "DE.Views.ImageSettingsAdvanced.textBottom": "Inferior", + "DE.Views.ImageSettingsAdvanced.textBottom": "Baixo", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Margem inferior", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Moldar texto", "DE.Views.ImageSettingsAdvanced.textCapType": "Tipo de letra", @@ -2011,7 +2024,7 @@ "DE.Views.ImageSettingsAdvanced.textTitle": "Imagem - Definições avançadas", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gráfico - Definições avançadas", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - Definições avançadas", - "DE.Views.ImageSettingsAdvanced.textTop": "Parte superior", + "DE.Views.ImageSettingsAdvanced.textTop": "Cima", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margem superior", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "DE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", @@ -2024,7 +2037,7 @@ "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrado", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Através", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Justo", - "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Parte superior e inferior", + "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Cima e baixo", "DE.Views.LeftMenu.tipAbout": "Acerca", "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Comentários", @@ -2068,7 +2081,7 @@ "DE.Views.Links.mniDelFootnote": "Eliminar todas as notas", "DE.Views.Links.mniInsEndnote": "Inserir nota final", "DE.Views.Links.mniInsFootnote": "Inserir nota de rodapé", - "DE.Views.Links.mniNoteSettings": "Definições de nota", + "DE.Views.Links.mniNoteSettings": "Definições de notas", "DE.Views.Links.textContentsRemove": "Remover índice remissivo", "DE.Views.Links.textContentsSettings": "Definições", "DE.Views.Links.textConvertToEndnotes": "Converter todas as notas de rodapé em notas finais", @@ -2078,6 +2091,7 @@ "DE.Views.Links.textSwapNotes": "Trocar as notas de rodapé pelas notas de fim", "DE.Views.Links.textUpdateAll": "Atualizar toda a tabela", "DE.Views.Links.textUpdatePages": "Recarregar apenas o número de páginas", + "DE.Views.Links.tipAddText": "Incluir título no índice remissivo ", "DE.Views.Links.tipBookmarks": "Criar marcador", "DE.Views.Links.tipCaption": "Inserir legenda", "DE.Views.Links.tipContents": "Inserir índice remissivo", @@ -2088,6 +2102,7 @@ "DE.Views.Links.tipTableFigures": "Inserir tabela de figuras", "DE.Views.Links.tipTableFiguresUpdate": "Recarregar tabela de figuras", "DE.Views.Links.titleUpdateTOF": "Recarregar tabela de figuras", + "DE.Views.Links.txtDontShowTof": "Não mostrar no índice remissivo", "DE.Views.Links.txtLevel": "Nível", "DE.Views.ListSettingsDialog.textAuto": "Automático", "DE.Views.ListSettingsDialog.textCenter": "Centro", @@ -2120,7 +2135,7 @@ "DE.Views.MailMergeEmailDlg.textTitle": "Send to Email", "DE.Views.MailMergeEmailDlg.textTo": "a", "DE.Views.MailMergeEmailDlg.textWarning": "Aviso!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tenha em atenção que não é possível interromper o envio de e-mail assim que selecionar 'Enviar'", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tenha em atenção de que não é possível interromper o envio de e-mail assim que selecionar 'Enviar'", "DE.Views.MailMergeSettings.downloadMergeTitle": "Merging", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Falha ao unir.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Aviso", @@ -2154,12 +2169,12 @@ "DE.Views.MailMergeSettings.txtUntitled": "Sem título", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", "DE.Views.Navigation.strNavigate": "Títulos", - "DE.Views.Navigation.txtClosePanel": "Fechar cabeçalhos", + "DE.Views.Navigation.txtClosePanel": "Fechar títulos", "DE.Views.Navigation.txtCollapse": "Recolher tudo", "DE.Views.Navigation.txtDemote": "Rebaixar", "DE.Views.Navigation.txtEmpty": "Não existem títulos no documento.
Aplique um estilo de título ao texto para que este apareça no índice remissivo.", "DE.Views.Navigation.txtEmptyItem": "Título vazio", - "DE.Views.Navigation.txtEmptyViewer": "Não há títulos no documento.", + "DE.Views.Navigation.txtEmptyViewer": "Não existem títulos no documento.", "DE.Views.Navigation.txtExpand": "Expandir tudo", "DE.Views.Navigation.txtExpandToLevel": "Expandir ao nível", "DE.Views.Navigation.txtFontSize": "Tamanho do tipo de letra", @@ -2170,8 +2185,9 @@ "DE.Views.Navigation.txtNewHeading": "Novo subtítulo", "DE.Views.Navigation.txtPromote": "Promover", "DE.Views.Navigation.txtSelect": "Selecionar conteúdo", + "DE.Views.Navigation.txtSettings": "Definições dos títulos", "DE.Views.Navigation.txtSmall": "Pequeno", - "DE.Views.Navigation.txtWrapHeadings": "Ajustar títulos longos", + "DE.Views.Navigation.txtWrapHeadings": "Moldar títulos longos", "DE.Views.NoteSettingsDialog.textApply": "Aplicar", "DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar alterações a", "DE.Views.NoteSettingsDialog.textContinue": "Contínua", @@ -2192,7 +2208,7 @@ "DE.Views.NoteSettingsDialog.textSection": "Secção atual", "DE.Views.NoteSettingsDialog.textStart": "Iniciar em", "DE.Views.NoteSettingsDialog.textTextBottom": "Abaixo do texto", - "DE.Views.NoteSettingsDialog.textTitle": "Definições de nota", + "DE.Views.NoteSettingsDialog.textTitle": "Definições de notas", "DE.Views.NotesRemoveDialog.textEnd": "Eliminar todas as notas finais", "DE.Views.NotesRemoveDialog.textFoot": "Eliminar todas as notas de rodapé", "DE.Views.NotesRemoveDialog.textTitle": "Eliminar notas", @@ -2212,7 +2228,7 @@ "DE.Views.PageMarginsDialog.textPreview": "Pré-visualizar", "DE.Views.PageMarginsDialog.textRight": "Direita", "DE.Views.PageMarginsDialog.textTitle": "Margens", - "DE.Views.PageMarginsDialog.textTop": "Parte superior", + "DE.Views.PageMarginsDialog.textTop": "Cima", "DE.Views.PageMarginsDialog.txtMarginsH": "As margens superior e inferior são muito grandes para a altura indicada", "DE.Views.PageMarginsDialog.txtMarginsW": "As margens direita e esquerda são muito grandes para a largura indicada", "DE.Views.PageSizeDialog.textHeight": "Altura", @@ -2281,7 +2297,7 @@ "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Cor do contorno", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Clique no diagrama ou utilize os botões para selecionar os contornos e aplicar um estilo", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamanho do contorno", - "DE.Views.ParagraphSettingsAdvanced.textBottom": "Inferior", + "DE.Views.ParagraphSettingsAdvanced.textBottom": "Baixo", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrado", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaçamento entre caracteres", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Aba padrão", @@ -2306,7 +2322,7 @@ "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posição da aba", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Direita", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Parágrafo - Definições avançadas", - "DE.Views.ParagraphSettingsAdvanced.textTop": "Parte superior", + "DE.Views.ParagraphSettingsAdvanced.textTop": "Cima", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Definir contorno externo e todas as linhas internas", "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Definir apenas contorno inferior", "DE.Views.ParagraphSettingsAdvanced.tipInner": "Definir apenas linhas internas horizontais", @@ -2318,7 +2334,7 @@ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem contornos", "DE.Views.RightMenu.txtChartSettings": "Definições de gráfico", - "DE.Views.RightMenu.txtFormSettings": "Definições do formulário", + "DE.Views.RightMenu.txtFormSettings": "Definições de formulários", "DE.Views.RightMenu.txtHeaderFooterSettings": "Definições de cabeçalho/rodapé", "DE.Views.RightMenu.txtImageSettings": "Definições de imagem", "DE.Views.RightMenu.txtMailMergeSettings": "Definições de e-mail em série", @@ -2389,7 +2405,7 @@ "DE.Views.ShapeSettings.txtSquare": "Quadrado", "DE.Views.ShapeSettings.txtThrough": "Através", "DE.Views.ShapeSettings.txtTight": "Justo", - "DE.Views.ShapeSettings.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.ShapeSettings.txtTopAndBottom": "Cima e baixo", "DE.Views.ShapeSettings.txtWood": "Madeira", "DE.Views.SignatureSettings.notcriticalErrorTitle": "Aviso", "DE.Views.SignatureSettings.strDelete": "Remover assinatura", @@ -2428,7 +2444,7 @@ "DE.Views.TableFormulaDialog.textFormat": "Formato de número", "DE.Views.TableFormulaDialog.textFormula": "Fórmula", "DE.Views.TableFormulaDialog.textInsertFunction": "Colar Função", - "DE.Views.TableFormulaDialog.textTitle": "Definições de fórmula", + "DE.Views.TableFormulaDialog.textTitle": "Definições de fórmulas", "DE.Views.TableOfContentsSettings.strAlign": "Alinhar número das páginas à direita", "DE.Views.TableOfContentsSettings.strFullCaption": "Incluir etiqueta e número", "DE.Views.TableOfContentsSettings.strLinks": "Formatar índice remissivo como ligação", @@ -2531,7 +2547,7 @@ "DE.Views.TableSettingsAdvanced.textBorderDesc": "Clique no diagrama ou utilize os botões para selecionar os contornos e aplicar um estilo", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Contornos e Fundo", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Tamanho do contorno", - "DE.Views.TableSettingsAdvanced.textBottom": "Inferior", + "DE.Views.TableSettingsAdvanced.textBottom": "Baixo", "DE.Views.TableSettingsAdvanced.textCellOptions": "Opções de célula", "DE.Views.TableSettingsAdvanced.textCellProps": "Propriedades da célula", "DE.Views.TableSettingsAdvanced.textCellSize": "Tamanho da célula", @@ -2564,7 +2580,7 @@ "DE.Views.TableSettingsAdvanced.textTablePosition": "Posição da tabela", "DE.Views.TableSettingsAdvanced.textTableSize": "Tamanho da tabela", "DE.Views.TableSettingsAdvanced.textTitle": "Tabela - Definições avançadas", - "DE.Views.TableSettingsAdvanced.textTop": "Parte superior", + "DE.Views.TableSettingsAdvanced.textTop": "Cima", "DE.Views.TableSettingsAdvanced.textVertical": "Vertical", "DE.Views.TableSettingsAdvanced.textWidth": "Largura", "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Largura e Espaços", @@ -2689,7 +2705,7 @@ "DE.Views.Toolbar.strMenuNoFill": "Sem preenchimento", "DE.Views.Toolbar.textAutoColor": "Automático", "DE.Views.Toolbar.textBold": "Negrito", - "DE.Views.Toolbar.textBottom": "Inferior:", + "DE.Views.Toolbar.textBottom": "Baixo:", "DE.Views.Toolbar.textChangeLevel": "Alterar nível de lista", "DE.Views.Toolbar.textCheckboxControl": "Caixa de seleção", "DE.Views.Toolbar.textColumnsCustom": "Colunas personalizadas", @@ -2760,7 +2776,7 @@ "DE.Views.Toolbar.textTabView": "Visualizar", "DE.Views.Toolbar.textTitleError": "Erro", "DE.Views.Toolbar.textToCurrent": "Para posição atual", - "DE.Views.Toolbar.textTop": "Parte superior:", + "DE.Views.Toolbar.textTop": "Cima:", "DE.Views.Toolbar.textUnderline": "Sublinhado", "DE.Views.Toolbar.tipAlignCenter": "Alinhar ao centro", "DE.Views.Toolbar.tipAlignJust": "Justificado", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index ddd333276..504296b27 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -9,6 +9,10 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Închidere", "Common.Controllers.ExternalMergeEditor.warningText": "Obiectul este dezactivat deoarece este editat de către un alt utilizator.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Avertisment", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonim", + "Common.Controllers.ExternalOleEditor.textClose": "Închide", + "Common.Controllers.ExternalOleEditor.warningText": "Obiectul este dezactivat deoarece este editat de către un alt utilizator.", + "Common.Controllers.ExternalOleEditor.warningTitle": "Avertisment", "Common.Controllers.History.notcriticalErrorTitle": "Avertisment", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Pentru ca comparaţia documentelor să fie posibilă, toate modificările urmărite vor fi acceptate. Doriți să continuați?", "Common.Controllers.ReviewChanges.textAtLeast": "cel puțin", @@ -285,6 +289,9 @@ "Common.Views.ExternalMergeEditor.textClose": "Închidere", "Common.Views.ExternalMergeEditor.textSave": "Salvare și ieșire", "Common.Views.ExternalMergeEditor.textTitle": "Destinatari pentru îmbinare corespondență", + "Common.Views.ExternalOleEditor.textClose": "Închide", + "Common.Views.ExternalOleEditor.textSave": "Salvare și ieșire", + "Common.Views.ExternalOleEditor.textTitle": "Editor de foi de calcul", "Common.Views.Header.labelCoUsersDescr": "Fișierul este editat de către:", "Common.Views.Header.textAddFavorite": "Marcare ca preferat", "Common.Views.Header.textAdvSettings": "Setări avansate", @@ -1826,6 +1833,8 @@ "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", "DE.Views.FormSettings.textAlways": "Întotdeauna", "DE.Views.FormSettings.textAspect": "Blocare raport aspect", + "DE.Views.FormSettings.textAtLeast": "Cel puțin", + "DE.Views.FormSettings.textAuto": "Automat", "DE.Views.FormSettings.textAutofit": "Potrivire automată", "DE.Views.FormSettings.textBackgroundColor": "Culoare de fundal", "DE.Views.FormSettings.textCheckbox": "Caseta de selectare", @@ -1836,6 +1845,7 @@ "DE.Views.FormSettings.textDelete": "Ștergere", "DE.Views.FormSettings.textDisconnect": "Deconectare", "DE.Views.FormSettings.textDropDown": "Derulant", + "DE.Views.FormSettings.textExact": "Exact", "DE.Views.FormSettings.textField": "Câmp text", "DE.Views.FormSettings.textFixed": "Câmpul cu dimensiunea fixă ", "DE.Views.FormSettings.textFromFile": "Din fișier", @@ -2290,6 +2300,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimare numere de linie", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulatori", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Aliniere", + "DE.Views.ParagraphSettingsAdvanced.textAll": "Toate", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Cel puțin", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiplu", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Culoare de fundal", @@ -2300,23 +2311,39 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Jos", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrat", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spațierea caracterelor", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual și discreționar", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, istoric și discreționar", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual și istoric", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulator implicit", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discreționar", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efecte", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exact", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primul rând", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Agățat", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Istoric", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Istoric și discreționar", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Aliniat stânga-dreapta", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Indicator", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Stânga", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Nivel", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaturi", "DE.Views.ParagraphSettingsAdvanced.textNone": "Niciunul", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(niciunul)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Caracteristici OpenType", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Poziție", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Ștergere", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Se șterg toate", "DE.Views.ParagraphSettingsAdvanced.textRight": "Dreapta", "DE.Views.ParagraphSettingsAdvanced.textSet": "Specificare", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spațiere", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Doar standard", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard și contextual", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, contextual și discreționar", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, contextual și istoric", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard și discreționar", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, istoric și discreționar", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard și istoric", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "La centru", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Stânga", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Poziționare tabulator", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index eb07ecf5f..59c005cdb 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -9,6 +9,10 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Закрыть", "Common.Controllers.ExternalMergeEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Внимание", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Аноним", + "Common.Controllers.ExternalOleEditor.textClose": "Закрыть", + "Common.Controllers.ExternalOleEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.", + "Common.Controllers.ExternalOleEditor.warningTitle": "Внимание", "Common.Controllers.History.notcriticalErrorTitle": "Внимание", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Для сравнения документов все отслеживаемые изменения в них будут считаться принятыми. Вы хотите продолжить?", "Common.Controllers.ReviewChanges.textAtLeast": "Минимум", @@ -285,6 +289,9 @@ "Common.Views.ExternalMergeEditor.textClose": "Закрыть", "Common.Views.ExternalMergeEditor.textSave": "Сохранить и выйти", "Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния", + "Common.Views.ExternalOleEditor.textClose": "Закрыть", + "Common.Views.ExternalOleEditor.textSave": "Сохранить и выйти", + "Common.Views.ExternalOleEditor.textTitle": "Редактор таблиц", "Common.Views.Header.labelCoUsersDescr": "Пользователи, редактирующие документ:", "Common.Views.Header.textAddFavorite": "Добавить в избранное", "Common.Views.Header.textAdvSettings": "Дополнительные параметры", @@ -1826,6 +1833,8 @@ "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Рабочая область", "DE.Views.FormSettings.textAlways": "Всегда", "DE.Views.FormSettings.textAspect": "Сохранять пропорции", + "DE.Views.FormSettings.textAtLeast": "Минимум", + "DE.Views.FormSettings.textAuto": "Авто", "DE.Views.FormSettings.textAutofit": "Автоподбор", "DE.Views.FormSettings.textBackgroundColor": "Цвет фона", "DE.Views.FormSettings.textCheckbox": "Флажок", @@ -1836,6 +1845,7 @@ "DE.Views.FormSettings.textDelete": "Удалить", "DE.Views.FormSettings.textDisconnect": "Отключить", "DE.Views.FormSettings.textDropDown": "Выпадающий список", + "DE.Views.FormSettings.textExact": "Точно", "DE.Views.FormSettings.textField": "Текстовое поле", "DE.Views.FormSettings.textFixed": "Поле фиксированного размера", "DE.Views.FormSettings.textFromFile": "Из файла", @@ -2290,6 +2300,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Запретить нумерацию строк", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Табуляция", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Выравнивание", + "DE.Views.ParagraphSettingsAdvanced.textAll": "Все", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Минимум", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Множитель", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Цвет фона", @@ -2300,23 +2311,39 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Снизу", "DE.Views.ParagraphSettingsAdvanced.textCentered": "По центру", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Межзнаковый интервал", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Контекстные", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Контекстные и дискреционные", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Контекстные, исторические и дискреционные", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Контекстные и исторические", "DE.Views.ParagraphSettingsAdvanced.textDefault": "По умолчанию", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Дискреционные", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Эффекты", "DE.Views.ParagraphSettingsAdvanced.textExact": "Точно", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Отступ", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Выступ", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Исторические", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Исторические и дискреционные", "DE.Views.ParagraphSettingsAdvanced.textJustified": "По ширине", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Заполнитель", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Слева", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Уровень", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Лигатуры", "DE.Views.ParagraphSettingsAdvanced.textNone": "Нет", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(нет)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Шрифты OpenType", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Положение", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Удалить", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Удалить все", "DE.Views.ParagraphSettingsAdvanced.textRight": "Справа", "DE.Views.ParagraphSettingsAdvanced.textSet": "Задать", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Интервал", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Только стандартные", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Стандартные и контекстные", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Стандартные, контекстные и дискреционные", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Стандартные, контекстные и исторические", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Стандартные и дискреционные", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Стандартные, исторические и дискреционные", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Стандартные и исторические", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "По центру", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "По левому краю", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Позиция", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index c1a89d1e3..7386264cf 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -121,6 +121,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Yumuşak çizgiler ve işaretleyicilerle dağılım", "Common.define.chartData.textStock": "Stok Grafiği", "Common.define.chartData.textSurface": "Yüzey", + "Common.Translation.textMoreButton": "Daha fazla", "Common.Translation.warnFileLocked": "Başka bir uygulamada düzenlendiği için bu dosyayı düzenleyemezsiniz. ", "Common.Translation.warnFileLockedBtnEdit": "Kopya oluştur", "Common.Translation.warnFileLockedBtnView": "Görüntülemek için aç", @@ -170,6 +171,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Renk yok", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Parolayı gizle", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Parolayı göster", + "Common.UI.SearchBar.textFind": "Bulmak", + "Common.UI.SearchBar.tipCloseSearch": "Aramayı kapat", + "Common.UI.SearchBar.tipNextResult": "Sonraki sonuç", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Gelişmiş ayarları aç", + "Common.UI.SearchBar.tipPreviousResult": "Önceki sonuç", "Common.UI.SearchDialog.textHighlight": "Vurgu sonuçları", "Common.UI.SearchDialog.textMatchCase": "Büyük küçük harfe duyarlı", "Common.UI.SearchDialog.textReplaceDef": "Yerine geçecek metini giriniz", @@ -182,11 +188,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir", "Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", + "Common.UI.ThemeColorPalette.textRecentColors": "Son Renkler", "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", "Common.UI.Themes.txtThemeClassicLight": "Klasik Aydınlık", "Common.UI.Themes.txtThemeDark": "Karanlık", "Common.UI.Themes.txtThemeLight": "Aydınlık", + "Common.UI.Themes.txtThemeSystem": "Sistemle aynı", "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -213,6 +221,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Otomatik madde listesi", "Common.Views.AutoCorrectDialog.textBy": "Tarafından", "Common.Views.AutoCorrectDialog.textDelete": "Sil", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "\nÇift boşluklu nokta ekle", "Common.Views.AutoCorrectDialog.textFLCells": "Tablo hücrelerinin ilk harfini büyük harf yap", "Common.Views.AutoCorrectDialog.textFLSentence": "Cümlelerin ilk harfini büyük yaz", "Common.Views.AutoCorrectDialog.textHyperlink": "Köprülü internet ve ağ yolları", @@ -261,6 +270,7 @@ "Common.Views.Comments.textResolved": "Çözüldü", "Common.Views.Comments.textSort": "Yorumları sırala", "Common.Views.Comments.textViewResolved": "Yorumu yeniden açma izniniz yok", + "Common.Views.Comments.txtEmpty": "Belgede yorum yok.", "Common.Views.CopyWarningDialog.textDontShow": "Bu mesajı bir daha gösterme", "Common.Views.CopyWarningDialog.textMsg": "Editör araç çubuğu tuşlarını kullanarak eylemleri kopyala,kes ve yapıştır ve içerik menüsü eylemleri sadece bu editör sekmesiyle yapılabilir.

Editör sekmesi dışındaki uygulamalara/dan kopyalamak yada yapıştırmak için şu klavye kombinasyonlarını kullanınız:", "Common.Views.CopyWarningDialog.textTitle": "Eylemler Kopyala,Kes ve Yapıştır", @@ -283,6 +293,7 @@ "Common.Views.Header.textHideLines": "Cetvelleri gizle", "Common.Views.Header.textHideStatusBar": "Durum Çubuğunu Gizle", "Common.Views.Header.textRemoveFavorite": "Favorilerden çıkar", + "Common.Views.Header.textShare": "Paylaş", "Common.Views.Header.textZoom": "Büyüt", "Common.Views.Header.tipAccessRights": "Belge erişim haklarını yönet", "Common.Views.Header.tipDownload": "Dosyayı indir", @@ -290,7 +301,9 @@ "Common.Views.Header.tipPrint": "Sayfayı yazdır", "Common.Views.Header.tipRedo": "Yinele", "Common.Views.Header.tipSave": "Kaydet", + "Common.Views.Header.tipSearch": "Arama", "Common.Views.Header.tipUndo": "Geri Al", + "Common.Views.Header.tipUsers": "Kullanıcıları görüntüle", "Common.Views.Header.tipViewSettings": "Seçenekler", "Common.Views.Header.tipViewUsers": "Kullanıcıları görüntüle ve belge erişim haklarını yönet", "Common.Views.Header.txtAccessRights": "Erişim haklarını değiştir", @@ -331,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "Yükleniyor", "Common.Views.Plugins.groupCaption": "Eklentiler", "Common.Views.Plugins.strPlugins": "Plugin", + "Common.Views.Plugins.textClosePanel": "Eklentiyi kapat", "Common.Views.Plugins.textLoading": "Yükleniyor", "Common.Views.Plugins.textStart": "Başlat", "Common.Views.Plugins.textStop": "Bitir", @@ -444,6 +458,21 @@ "Common.Views.ReviewPopover.txtReject": "Reddet", "Common.Views.SaveAsDlg.textLoading": "Yükleniyor", "Common.Views.SaveAsDlg.textTitle": "Kaydetmek için klasör", + "Common.Views.SearchPanel.textCaseSensitive": "\nHarfe duyarlı", + "Common.Views.SearchPanel.textCloseSearch": "Aramayı kapat", + "Common.Views.SearchPanel.textFind": "Bulmak", + "Common.Views.SearchPanel.textFindAndReplace": "Bul ve Değiştir", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Normal ifadeler kullanarak eşleştir", + "Common.Views.SearchPanel.textNoMatches": "Eşleşme yok", + "Common.Views.SearchPanel.textNoSearchResults": "Arama sonucu bulunamadı", + "Common.Views.SearchPanel.textReplace": "Değiştir", + "Common.Views.SearchPanel.textReplaceAll": "Tümünü Değiştir", + "Common.Views.SearchPanel.textReplaceWith": "İle değiştirin", + "Common.Views.SearchPanel.textSearchResults": "Arama sonuçları: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Burada gösterilecek çok fazla sonuç var", + "Common.Views.SearchPanel.textWholeWords": "Sadece tam kelimeler", + "Common.Views.SearchPanel.tipNextResult": "Sonraki sonuç", + "Common.Views.SearchPanel.tipPreviousResult": "Önceki sonuç", "Common.Views.SelectFileDlg.textLoading": "Yükleniyor", "Common.Views.SelectFileDlg.textTitle": "Veri Kaynağını Seçin", "Common.Views.SignDialog.textBold": "Kalın", @@ -510,7 +539,9 @@ "DE.Controllers.LeftMenu.textReplaceSuccess": "Arama yapıldı. {0} olay değiştirildi.", "DE.Controllers.LeftMenu.txtUntitled": "Başlıksız", "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} dosyanız düzenlenebilir bir biçime dönüştürülecek. Bu biraz zaman alabilir. Ortaya çıkan belge, metni düzenlemenize izin verecek şekilde optimize edilecektir, bu nedenle, özellikle orijinal dosya çok sayıda grafik içeriyorsa, tam olarak orijinal {0} gibi görünmeyebilir.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Bu şekilde kaydederseniz bazı biçimlendirmeler kaybolacaktır.
Devam etmek istiyor musunuz?", + "DE.Controllers.LeftMenu.warnReplaceString": "\n{0}, değiştirme alanı için geçerli bir özel karakter değil.", "DE.Controllers.Main.applyChangesTextText": "Değişiklikler yükleniyor...", "DE.Controllers.Main.applyChangesTitleText": "Değişiklikler Yükleniyor", "DE.Controllers.Main.convertationTimeoutText": "Değişim süresi geçti.", @@ -535,6 +566,7 @@ "DE.Controllers.Main.errorEditingDownloadas": "Dosyayla çalışırken hata meydana geldi. 'Farklı Kaydet...' seçeneğini kullanarak dosyayı bilgisayarınıza yedekleyin.", "DE.Controllers.Main.errorEditingSaveas": "Belgeyle çalışma sırasında bir hata oluştu.
Dosya yedek kopyasını bilgisayarınızın sabit diskine kaydetmek için 'Farklı kaydet...' seçeneğini kullanın.", "DE.Controllers.Main.errorEmailClient": "E-posta istemcisi bulunamadı.", + "DE.Controllers.Main.errorEmptyTOC": "Seçilen metne Stiller galerisinden bir başlık stili uygulayarak içindekiler tablosu oluşturmaya başlayın.", "DE.Controllers.Main.errorFilePassProtect": "Dosya parola korumalıdır ve açılamaz.", "DE.Controllers.Main.errorFileSizeExceed": "Dosya boyutu, sunucunuz için belirlenen limiti aşıyor.
Ayrıntılar için lütfen Doküman Sunucusu yöneticinizle iletişime geçin.", "DE.Controllers.Main.errorForceSave": "Dosya kaydedilirken bir hata oluştu. Dosyayı bilgisayarınızın sabit diskine kaydetmek için lütfen 'Farklı indir' seçeneğini kullanın veya daha sonra tekrar deneyin.", @@ -543,6 +575,7 @@ "DE.Controllers.Main.errorLoadingFont": "Yazı tipleri yüklenmedi.
Lütfen Doküman Sunucusu yöneticinize başvurun.", "DE.Controllers.Main.errorMailMergeLoadFile": "Belge yüklenemedi. Lütfen farklı bir dosya seçin.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", + "DE.Controllers.Main.errorNoTOC": "Güncellenecek içindekiler tablosu yok. Referanslar sekmesinden bir tane ekleyebilirsiniz.", "DE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.", "DE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", "DE.Controllers.Main.errorSessionAbsolute": "Doküman düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", @@ -610,8 +643,10 @@ "DE.Controllers.Main.textPaidFeature": "Ücretli Özellik", "DE.Controllers.Main.textReconnect": "Yeniden bağlanıldı", "DE.Controllers.Main.textRemember": "Seçimimi tüm dosyalar için hatırla", + "DE.Controllers.Main.textRememberMacros": "Tüm makrolar için seçimimi hatırla", "DE.Controllers.Main.textRenameError": "Kullanıcı adı boş bırakılmamalıdır.", "DE.Controllers.Main.textRenameLabel": "Ortak çalışma için kullanılacak bir ad girin", + "DE.Controllers.Main.textRequestMacros": "\nBir makro, URL'ye istekte bulunur. %1 isteğine izin vermek istiyor musunuz?", "DE.Controllers.Main.textShape": "Şekil", "DE.Controllers.Main.textStrict": "Strict mode", "DE.Controllers.Main.textTryUndoRedo": "Geri al/Yinele fonksiyonları hızlı ortak çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı ortak düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayabilirsiniz. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", @@ -886,6 +921,8 @@ "DE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", "DE.Controllers.Navigation.txtBeginning": "Belge başlangıcı", "DE.Controllers.Navigation.txtGotoBeginning": "Belgenin başlangıcına git", + "DE.Controllers.Search.notcriticalErrorTitle": "Uyarı", + "DE.Controllers.Search.warnReplaceString": "\n{0}, Şununla Değiştir kutusu için geçerli bir özel karakter değil.", "DE.Controllers.Statusbar.textDisconnect": "Bağlantı kesildi
Bağlanmayı deneyin. Lütfen bağlantı ayarlarını kontrol edin.", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "DE.Controllers.Statusbar.textSetTrackChanges": "Değişiklikleri İzle modundasınız", @@ -1448,6 +1485,7 @@ "DE.Views.DocumentHolder.strSign": "İmzala", "DE.Views.DocumentHolder.styleText": "Stil Olarak Biçimlendirme", "DE.Views.DocumentHolder.tableText": "Tablo", + "DE.Views.DocumentHolder.textAccept": "Değişikliği Kabul Et", "DE.Views.DocumentHolder.textAlign": "Hizala", "DE.Views.DocumentHolder.textArrange": "Düzenle", "DE.Views.DocumentHolder.textArrangeBack": "Arkaplana gönder", @@ -1482,6 +1520,7 @@ "DE.Views.DocumentHolder.textPaste": "Yapıştır", "DE.Views.DocumentHolder.textPrevPage": "Önceki Sayfa", "DE.Views.DocumentHolder.textRefreshField": "Alanı yenile", + "DE.Views.DocumentHolder.textReject": "Değişikliği Reddet", "DE.Views.DocumentHolder.textRemCheckBox": "İşaret Kutusunu Kaldır", "DE.Views.DocumentHolder.textRemComboBox": "Açılan kutuyu kaldır", "DE.Views.DocumentHolder.textRemDropdown": "Açılır Menüyü Kaldır", @@ -1684,12 +1723,18 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Erişim haklarını değiştir", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Yorum", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Oluşturuldu", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Hızlı Web Görünümü", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Yükleniyor...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Son Düzenleyen", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Son güncelleme", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Hayır", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Sahip", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Sayfalar", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Sayfa Boyutu", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraflar", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "PDF Üreticisi", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "Etiketli PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Sürümü", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasyon", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Hakkı olan kişiler", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Boşluklarla birlikte karakterler", @@ -1699,6 +1744,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Başlık", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Yüklendi", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kelimeler", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Evet", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Erişim haklarını değiştir", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Uyarı", @@ -1718,9 +1764,13 @@ "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "Yazı Tipi İpucu", "DE.Views.FileMenuPanels.Settings.strForcesave": "Kaydet veya Ctrl+S'ye tıkladıktan sonra sürümü depolamaya ekleyin", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "BÜYÜK HARF içindeki kelimeleri yoksay", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Sayılarla kelimeleri yoksay", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Ayarları", "DE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Yorumları metinde göster", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Çözümlenen yorumları göster", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Yazım denetimi seçeneğini aç", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", "DE.Views.FileMenuPanels.Settings.strTheme": "Arayüz teması", @@ -1744,9 +1794,13 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Balonlarda tıklayarak göster", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Araç ipuçlarında üzerine gelindiğinde göster ", "DE.Views.FileMenuPanels.Settings.txtCm": "Santimetre", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "İşbirliği", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Doküman için karanlık modu aç", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "\nDüzenleme ve kaydetme", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Gerçek zamanlı ortak düzenleme. Tüm değişiklikler otomatik olarak kaydedilir", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sayfaya Sığdır", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Genişliğe Sığdır", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "hiyeroglifler", "DE.Views.FileMenuPanels.Settings.txtInch": "İnç", "DE.Views.FileMenuPanels.Settings.txtInput": "Girdiyi Değiştir", "DE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", @@ -1758,12 +1812,17 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Nokta", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Hepsini Etkinleştir", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Tüm makroları bildirimde bulunmadan etkinleştir", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Parça değişikliklerini göster", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Yazım denetimi", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Tümünü Devre Dışı Bırak", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Tüm makroları bildirimde bulunmadan devre dışı bırakın", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Sizin ve diğerlerinin yaptığı değişiklikleri senkronize etmek için \"Kaydet\" düğmesini kullanın", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Klavyeyi kullanarak kullanıcı arayüzünde gezinmek için Alt tuşunu kullanın", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Klavyeyi kullanarak kullanıcı arayüzünde gezinmek için Option tuşunu kullanın", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Bildirim Göster", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Bütün macroları uyarı vererek devre dışı bırak", "DE.Views.FileMenuPanels.Settings.txtWin": "Windows olarak", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "çalışma alanı", "DE.Views.FormSettings.textAlways": "Her zaman", "DE.Views.FormSettings.textAspect": "En-boy oranını kilitle", "DE.Views.FormSettings.textAutofit": "Otomatik Sığdır", @@ -1794,6 +1853,7 @@ "DE.Views.FormSettings.textRequired": "Zorunlu", "DE.Views.FormSettings.textScale": "Ölçeklenecek ise", "DE.Views.FormSettings.textSelectImage": "Resim Seç", + "DE.Views.FormSettings.textTag": "Etiket", "DE.Views.FormSettings.textTip": "Tavsiye", "DE.Views.FormSettings.textTipAdd": "Yeni değer ekle", "DE.Views.FormSettings.textTipDelete": "Değeri sil", @@ -1806,6 +1866,7 @@ "DE.Views.FormSettings.textWidth": "Hücre genişliği", "DE.Views.FormsTab.capBtnCheckBox": "Onay kutusu", "DE.Views.FormsTab.capBtnComboBox": "Açılan kutu", + "DE.Views.FormsTab.capBtnDownloadForm": "oform olarak indir", "DE.Views.FormsTab.capBtnDropDown": "Aşağı açılır", "DE.Views.FormsTab.capBtnImage": "Resim", "DE.Views.FormsTab.capBtnNext": "Sonraki alan", @@ -1825,6 +1886,7 @@ "DE.Views.FormsTab.textSubmited": "Form başarıyla gönderildi ", "DE.Views.FormsTab.tipCheckBox": "Onay kutusu ekle", "DE.Views.FormsTab.tipComboBox": "Açılan kutu ekle", + "DE.Views.FormsTab.tipDownloadForm": "Bir dosyayı doldurulabilir bir OFORM belgesi olarak indirin", "DE.Views.FormsTab.tipDropDown": "Aşağı açılır liste ekle", "DE.Views.FormsTab.tipImageField": "Resim ekle", "DE.Views.FormsTab.tipNextForm": "Sonraki alana git", @@ -1979,11 +2041,13 @@ "DE.Views.LeftMenu.tipChat": "Sohbet", "DE.Views.LeftMenu.tipComments": "Yorumlar", "DE.Views.LeftMenu.tipNavigation": "Gezinti", + "DE.Views.LeftMenu.tipOutline": "Başlıklar", "DE.Views.LeftMenu.tipPlugins": "Plugin", "DE.Views.LeftMenu.tipSearch": "Ara", "DE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek", "DE.Views.LeftMenu.tipTitles": "Başlıklar", "DE.Views.LeftMenu.txtDeveloper": "GELİŞTİRİCİ MODU", + "DE.Views.LeftMenu.txtEditor": "\nBelge Düzenleyici", "DE.Views.LeftMenu.txtLimit": "Erişimi Limitle", "DE.Views.LeftMenu.txtTrial": "DENEME MODU", "DE.Views.LeftMenu.txtTrialDev": "Deneme Geliştirici Modu", @@ -2001,6 +2065,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Başlangıç", "DE.Views.LineNumbersDialog.textTitle": "Satır Numaraları", "DE.Views.LineNumbersDialog.txtAutoText": "Otomatik", + "DE.Views.Links.capBtnAddText": "\nYazı ekle", "DE.Views.Links.capBtnBookmarks": "Yer imi", "DE.Views.Links.capBtnCaption": "Resim yazısı", "DE.Views.Links.capBtnContentsUpdate": "Yenile", @@ -2025,6 +2090,7 @@ "DE.Views.Links.textSwapNotes": "Dipnotlar ile son notların yerini değiştir", "DE.Views.Links.textUpdateAll": "Tüm tabloyu güncelle", "DE.Views.Links.textUpdatePages": "Sadece sayfa numaralarını yenile", + "DE.Views.Links.tipAddText": "İçindekiler bölümüne başlık ekle", "DE.Views.Links.tipBookmarks": "Yer imi oluştur", "DE.Views.Links.tipCaption": "Resim yazısı ekle", "DE.Views.Links.tipContents": "İçindekiler tablosu ekle", @@ -2035,6 +2101,8 @@ "DE.Views.Links.tipTableFigures": "Şekil tablosu ekle", "DE.Views.Links.tipTableFiguresUpdate": "Şekil tablosunu yenile", "DE.Views.Links.titleUpdateTOF": "Şekil tablosunu yenile", + "DE.Views.Links.txtDontShowTof": "İçindekiler Tablosunda Gösterme", + "DE.Views.Links.txtLevel": "Seviye", "DE.Views.ListSettingsDialog.textAuto": "Otomatik", "DE.Views.ListSettingsDialog.textCenter": "Ortala", "DE.Views.ListSettingsDialog.textLeft": "Sol", @@ -2099,6 +2167,8 @@ "DE.Views.MailMergeSettings.txtPrev": "To previous record", "DE.Views.MailMergeSettings.txtUntitled": "Başlıksız", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", + "DE.Views.Navigation.strNavigate": "Başlıklar", + "DE.Views.Navigation.txtClosePanel": "\nBaşlıkları kapat", "DE.Views.Navigation.txtCollapse": "Hepsini daralt", "DE.Views.Navigation.txtDemote": "İndirgeme", "DE.Views.Navigation.txtEmpty": "Belgede başlık yok.
İçindekiler tablosunda görünmesi için metne bir başlık stili uygulayın.", @@ -2106,11 +2176,17 @@ "DE.Views.Navigation.txtEmptyViewer": "Belgede başlık yok.", "DE.Views.Navigation.txtExpand": "Hepsini genişlet", "DE.Views.Navigation.txtExpandToLevel": "Seviyeye genişlet", + "DE.Views.Navigation.txtFontSize": "Yazı Boyutu", "DE.Views.Navigation.txtHeadingAfter": "Sonra yeni başlık", "DE.Views.Navigation.txtHeadingBefore": "Önce yeni başlık", + "DE.Views.Navigation.txtLarge": "Büyük", + "DE.Views.Navigation.txtMedium": "Orta", "DE.Views.Navigation.txtNewHeading": "Yeni alt başlık", "DE.Views.Navigation.txtPromote": "Terfi", "DE.Views.Navigation.txtSelect": "İçerik seçin", + "DE.Views.Navigation.txtSettings": "Başlık ayarları", + "DE.Views.Navigation.txtSmall": "Küçük", + "DE.Views.Navigation.txtWrapHeadings": "Uzun başlıkları sarın", "DE.Views.NoteSettingsDialog.textApply": "Uygula", "DE.Views.NoteSettingsDialog.textApplyTo": "Değişiklikleri uygula", "DE.Views.NoteSettingsDialog.textContinue": "Sürekli", @@ -2350,6 +2426,8 @@ "DE.Views.Statusbar.pageIndexText": "Sayfa {0}/{1}", "DE.Views.Statusbar.tipFitPage": "Sayfaya Sığdır", "DE.Views.Statusbar.tipFitWidth": "Genişliğe Sığdır", + "DE.Views.Statusbar.tipHandTool": "El aleti", + "DE.Views.Statusbar.tipSelectTool": "Araç seçin", "DE.Views.Statusbar.tipSetLang": "Metin Dili Belirle", "DE.Views.Statusbar.tipZoomFactor": "Büyütme", "DE.Views.Statusbar.tipZoomIn": "Yakınlaştır", @@ -2615,7 +2693,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim", "DE.Views.Toolbar.mniImageFromStorage": "Depolamadan Resim", "DE.Views.Toolbar.mniImageFromUrl": "URL'den resim", + "DE.Views.Toolbar.mniInsertSSE": "E-tablo Ekle", "DE.Views.Toolbar.mniLowerCase": "küçük harf", + "DE.Views.Toolbar.mniRemoveFooter": "Altbilgiyi Kaldır", + "DE.Views.Toolbar.mniRemoveHeader": "Başlığı Kaldır", "DE.Views.Toolbar.mniSentenceCase": "Cümle durumu.", "DE.Views.Toolbar.mniTextToTable": "Metni Tabloya Dönüştür", "DE.Views.Toolbar.mniToggleCase": "bAŞ hARFİ kÜÇÜK", @@ -2800,6 +2881,7 @@ "DE.Views.ViewTab.textFitToWidth": "Genişliğe Sığdır", "DE.Views.ViewTab.textInterfaceTheme": "Arayüz teması", "DE.Views.ViewTab.textNavigation": "Gezinti", + "DE.Views.ViewTab.textOutline": "Başlıklar", "DE.Views.ViewTab.textRulers": "Cetveller", "DE.Views.ViewTab.textStatusBar": "Durum Çubuğu", "DE.Views.ViewTab.textZoom": "Yakınlaştırma", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index bfcf83430..cc163eb67 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -344,6 +344,7 @@ "Common.Views.PluginDlg.textLoading": "载入中", "Common.Views.Plugins.groupCaption": "插件", "Common.Views.Plugins.strPlugins": "插件", + "Common.Views.Plugins.textClosePanel": "关闭插件", "Common.Views.Plugins.textLoading": "载入中", "Common.Views.Plugins.textStart": "开始", "Common.Views.Plugins.textStop": "停止", diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index a6253d813..68f160cec 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -35,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", "PE.ApplicationView.txtFullScreen": "Pantalla completa", "PE.ApplicationView.txtPrint": "Imprimeix", + "PE.ApplicationView.txtSearch": "Cerca", "PE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/cs.json b/apps/presentationeditor/embed/locale/cs.json index f4ec57823..def374fd5 100644 --- a/apps/presentationeditor/embed/locale/cs.json +++ b/apps/presentationeditor/embed/locale/cs.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Odkaz pro sdílení", "common.view.modals.txtWidth": "Šířka", + "common.view.SearchBar.textFind": "Najít", "PE.ApplicationController.convertationErrorText": "Převod se nezdařil.", "PE.ApplicationController.convertationTimeoutText": "Překročen časový limit pro provedení převodu.", "PE.ApplicationController.criticalErrorTitle": "Chyba", @@ -34,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Otevřít umístění souboru", "PE.ApplicationView.txtFullScreen": "Na celou obrazovku", "PE.ApplicationView.txtPrint": "Tisk", + "PE.ApplicationView.txtSearch": "Hledat", "PE.ApplicationView.txtShare": "Sdílet" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/es.json b/apps/presentationeditor/embed/locale/es.json index c0b9b7a54..a02c0c207 100644 --- a/apps/presentationeditor/embed/locale/es.json +++ b/apps/presentationeditor/embed/locale/es.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", + "common.view.SearchBar.textFind": "Buscar", "PE.ApplicationController.convertationErrorText": "Se ha producido un error en la conversión.", "PE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "PE.ApplicationController.criticalErrorTitle": "Error", @@ -34,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", "PE.ApplicationView.txtFullScreen": "Pantalla completa", "PE.ApplicationView.txtPrint": "Imprimir", + "PE.ApplicationView.txtSearch": "Búsqueda", "PE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/fr.json b/apps/presentationeditor/embed/locale/fr.json index e748da2f7..0e2e049ce 100644 --- a/apps/presentationeditor/embed/locale/fr.json +++ b/apps/presentationeditor/embed/locale/fr.json @@ -35,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "PE.ApplicationView.txtFullScreen": "Plein écran", "PE.ApplicationView.txtPrint": "Imprimer", + "PE.ApplicationView.txtSearch": "Recherche", "PE.ApplicationView.txtShare": "Partager" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/it.json b/apps/presentationeditor/embed/locale/it.json index cefbe807b..7c1426858 100644 --- a/apps/presentationeditor/embed/locale/it.json +++ b/apps/presentationeditor/embed/locale/it.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Altezza", "common.view.modals.txtShare": "Condividi collegamento", "common.view.modals.txtWidth": "Larghezza", + "common.view.SearchBar.textFind": "Trova", "PE.ApplicationController.convertationErrorText": "Conversione fallita.", "PE.ApplicationController.convertationTimeoutText": "È stato superato il tempo limite della conversione.", "PE.ApplicationController.criticalErrorTitle": "Errore", @@ -34,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Apri percorso file", "PE.ApplicationView.txtFullScreen": "Schermo intero", "PE.ApplicationView.txtPrint": "Stampa", + "PE.ApplicationView.txtSearch": "Cerca", "PE.ApplicationView.txtShare": "Condividi" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/pt-PT.json b/apps/presentationeditor/embed/locale/pt-PT.json index c4043dad4..fc4288719 100644 --- a/apps/presentationeditor/embed/locale/pt-PT.json +++ b/apps/presentationeditor/embed/locale/pt-PT.json @@ -13,10 +13,10 @@ "PE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.
Contacte o administrador do servidor de documentos.", "PE.ApplicationController.errorDefaultMessage": "Código de erro: %1", "PE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.", - "PE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", + "PE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite permitido pelo servidor.
Contacte o administrador do servidor de documentos para mais informações.", "PE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", "PE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", - "PE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "PE.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou.
Entre em contacto com o administrador do servidor de documentos.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para assegurar que nada seja perdido e depois recarregue esta página.", "PE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", @@ -33,7 +33,8 @@ "PE.ApplicationView.txtDownload": "Descarregar", "PE.ApplicationView.txtEmbed": "Incorporar", "PE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", - "PE.ApplicationView.txtFullScreen": "Ecrã inteiro", + "PE.ApplicationView.txtFullScreen": "Ecrã completo", "PE.ApplicationView.txtPrint": "Imprimir", + "PE.ApplicationView.txtSearch": "Pesquisar", "PE.ApplicationView.txtShare": "Partilhar" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 35a4bbec2..325a3381e 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -446,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "S'està carregant", "Common.Views.Plugins.groupCaption": "Complements", "Common.Views.Plugins.strPlugins": "Complements", + "Common.Views.Plugins.textClosePanel": "Tanca el connector", "Common.Views.Plugins.textLoading": "S'està carregant", "Common.Views.Plugins.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 68f172fc5..4b5313b92 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -241,6 +241,7 @@ "Common.define.effectData.textWipe": "Setření", "Common.define.effectData.textZigzag": "Cikcak", "Common.define.effectData.textZoom": "Přiblížení", + "Common.Translation.textMoreButton": "Více", "Common.Translation.warnFileLocked": "Soubor je upravován v jiné aplikaci. Můžete pokračovat v úpravách a uložit ho jako kopii.", "Common.Translation.warnFileLockedBtnEdit": "Vytvořit kopii", "Common.Translation.warnFileLockedBtnView": "Otevřít pro náhled", @@ -257,6 +258,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Bez barvy", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobrazit heslo", + "Common.UI.SearchBar.textFind": "Najít", + "Common.UI.SearchBar.tipCloseSearch": "Zavřít hledání", + "Common.UI.SearchBar.tipNextResult": "Následující", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Otevřít pokročilé nastavení", + "Common.UI.SearchBar.tipPreviousResult": "Předchozí", "Common.UI.SearchDialog.textHighlight": "Zvýraznit výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovat malá a velká písmena", "Common.UI.SearchDialog.textReplaceDef": "Zadejte text, kterým nahradit", @@ -269,11 +275,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradit vše", "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtěte ty od ostatních.", + "Common.UI.ThemeColorPalette.textRecentColors": "Aktuální barvy", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy vzhledu prostředí", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", + "Common.UI.Themes.txtThemeSystem": "Stejné jako systémové", "Common.UI.Window.cancelButtonText": "Zrušit", "Common.UI.Window.closeButtonText": "Zavřít", "Common.UI.Window.noButtonText": "Ne", @@ -374,6 +382,7 @@ "Common.Views.Header.textSaveChanged": "Změněno", "Common.Views.Header.textSaveEnd": "Všechny změny uloženy", "Common.Views.Header.textSaveExpander": "Všechny změny uloženy", + "Common.Views.Header.textShare": "Sdílet", "Common.Views.Header.textZoom": "Přiblížení", "Common.Views.Header.tipAccessRights": "Spravovat přístupová práva k dokumentům", "Common.Views.Header.tipDownload": "Stáhnout soubor", @@ -381,8 +390,10 @@ "Common.Views.Header.tipPrint": "Vytisknout soubor", "Common.Views.Header.tipRedo": "Znovu", "Common.Views.Header.tipSave": "Uložit", + "Common.Views.Header.tipSearch": "Hledání", "Common.Views.Header.tipUndo": "Zpět", "Common.Views.Header.tipUndock": "Oddělit do zvlášť okna", + "Common.Views.Header.tipUsers": "Zobrazit uživatele", "Common.Views.Header.tipViewSettings": "Zobrazit nastavení", "Common.Views.Header.tipViewUsers": "Zobrazit uživatele a spravovat přístupová práva k dokumentu", "Common.Views.Header.txtAccessRights": "Změnit přístupová práva", @@ -435,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "Načítání", "Common.Views.Plugins.groupCaption": "Zásuvné moduly", "Common.Views.Plugins.strPlugins": "Zásuvné moduly", + "Common.Views.Plugins.textClosePanel": "Zavřít zásuvné moduly", "Common.Views.Plugins.textLoading": "Načítání", "Common.Views.Plugins.textStart": "Spustit", "Common.Views.Plugins.textStop": "Zastavit", @@ -453,7 +465,7 @@ "Common.Views.ReviewChanges.hintNext": "K další změně", "Common.Views.ReviewChanges.hintPrev": "K předchozí změně", "Common.Views.ReviewChanges.strFast": "Automatický", - "Common.Views.ReviewChanges.strFastDesc": "Společně prováděná úprava v reálném čase. Veškeré změny jsou ukládány automaticky.", + "Common.Views.ReviewChanges.strFastDesc": "Režim spolupráce v reálném čase. Veškeré změny jsou ukládány automaticky.", "Common.Views.ReviewChanges.strStrict": "Striktní", "Common.Views.ReviewChanges.strStrictDesc": "Pro synchronizaci změn, které jste udělali vy a ostatní, použijte tlačítko „Uložit“.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Přijmout změnu, která právě proběhla", @@ -519,6 +531,21 @@ "Common.Views.ReviewPopover.txtEditTip": "Upravit", "Common.Views.SaveAsDlg.textLoading": "Načítá se", "Common.Views.SaveAsDlg.textTitle": "Složka do které uložit", + "Common.Views.SearchPanel.textCaseSensitive": "Rozlišovat malá a velká písmena", + "Common.Views.SearchPanel.textCloseSearch": "Zavřít hledání", + "Common.Views.SearchPanel.textFind": "Najít", + "Common.Views.SearchPanel.textFindAndReplace": "Najít a nahradit", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Argument používá regulární výraz", + "Common.Views.SearchPanel.textNoMatches": "Shoda nebyla nalezena", + "Common.Views.SearchPanel.textNoSearchResults": "Žádné výsledky vyhledávání", + "Common.Views.SearchPanel.textReplace": "Nahradit", + "Common.Views.SearchPanel.textReplaceAll": "Nahradit vše", + "Common.Views.SearchPanel.textReplaceWith": "Nahradit pomocí", + "Common.Views.SearchPanel.textSearchResults": "Výsledek hledání: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Příliš mnoho výsledků pro zobrazení", + "Common.Views.SearchPanel.textWholeWords": "Pouze celá slova", + "Common.Views.SearchPanel.tipNextResult": "Následující", + "Common.Views.SearchPanel.tipPreviousResult": "Předchozí", "Common.Views.SelectFileDlg.textLoading": "Načítá se", "Common.Views.SelectFileDlg.textTitle": "Vybrat zdroj dat", "Common.Views.SignDialog.textBold": "Tučné", @@ -601,8 +628,8 @@ "PE.Controllers.Main.errorDataEncrypted": "Obdrženy šifrované změny – bez hesla je není možné zobrazit.", "PE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.", "PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Stáhnout jako…“ a uložte si do souboru jako záložní kopii na svůj počítač.", - "PE.Controllers.Main.errorEditingSaveas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Uložit jako…“ a uložte si do souboru jako záložní kopii na svůj počítač.", + "PE.Controllers.Main.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Stáhnout jako...“ a uložte si do souboru jako záložní kopii na svůj počítač.", + "PE.Controllers.Main.errorEditingSaveas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Uložit jako...“ a uložte si do souboru jako záložní kopii na svůj počítač.", "PE.Controllers.Main.errorEmailClient": "Nenalezen žádný e-mailový klient.", "PE.Controllers.Main.errorFilePassProtect": "Soubor je zabezpečen heslem, bez kterého ho nelze otevřít.", "PE.Controllers.Main.errorFileSizeExceed": "Velikost souboru překračuje omezení nastavená na serveru, který využíváte.
Ohledně podrobností se obraťte na správce dokumentového serveru.", @@ -674,8 +701,10 @@ "PE.Controllers.Main.textPaidFeature": "Placená funkce", "PE.Controllers.Main.textReconnect": "Spojení je obnoveno", "PE.Controllers.Main.textRemember": "Zapamatovat mou volbu", + "PE.Controllers.Main.textRememberMacros": "Zapamatovat moji volbu pro všechna makra", "PE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", "PE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", + "PE.Controllers.Main.textRequestMacros": "Makro vytváří požadavek na URL. Chcete povolit požadavek k přístupu na %1?", "PE.Controllers.Main.textShape": "Obrazec", "PE.Controllers.Main.textStrict": "Striktní režim", "PE.Controllers.Main.textTryUndoRedo": "Funkce zpět/znovu nejsou v režimu rychlé spolupráce na úpravách k dispozici.
Kliknutím na tlačítko „Striktní režim“ přejdete do striktního režimu spolupráce na úpravách, ve kterém soubor upravujte bez vyrušování ostatními uživateli a vámi provedené změny odesíláte pouze po jejich uložení. Mezi oběma režimy spolupráce na úpravách je možné přepínat v pokročilých nastaveních editoru.", @@ -954,6 +983,8 @@ "PE.Controllers.Main.warnNoLicense": "Došlo dosažení limitu souběžných připojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "PE.Controllers.Main.warnProcessRightsChange": "Bylo vám odepřeno oprávnění soubor upravovat.", + "PE.Controllers.Search.notcriticalErrorTitle": "Varování", + "PE.Controllers.Search.warnReplaceString": "{0} není platným speciálním znakem pro nahrazení polem.", "PE.Controllers.Statusbar.textDisconnect": "Spojení je ztraceno
Pokus o opětovné připojení. Zkontrolujte nastavení připojení.", "PE.Controllers.Statusbar.zoomText": "Přiblížení {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Písmo (font) ve kterém se chystáte uložit, není na tomto zařízení k dispozici.
Text bude zobrazen pomocí některého ze systémových písem s tím, že uložené písmo bude použito, když bude dostupné.
Chcete pokračovat?", @@ -1336,7 +1367,18 @@ "PE.Views.ChartSettingsAdvanced.textAltDescription": "Popis", "PE.Views.ChartSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Název", + "PE.Views.ChartSettingsAdvanced.textCenter": "Na střed", + "PE.Views.ChartSettingsAdvanced.textFrom": "Od", + "PE.Views.ChartSettingsAdvanced.textHeight": "Výška", + "PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontálně", + "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Zachovat poměr stran", + "PE.Views.ChartSettingsAdvanced.textPlacement": "Umístění", + "PE.Views.ChartSettingsAdvanced.textPosition": "Pozice", + "PE.Views.ChartSettingsAdvanced.textSize": "Velikost", "PE.Views.ChartSettingsAdvanced.textTitle": "Graf – pokročilá nastavení", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Roh vlevo nahoře", + "PE.Views.ChartSettingsAdvanced.textVertical": "Svislé", + "PE.Views.ChartSettingsAdvanced.textWidth": "Šířka", "PE.Views.DateTimeDialog.confirmDefault": "Nastavit výchozí formát pro {0}: „{1}“", "PE.Views.DateTimeDialog.textDefault": "Nastavit jako výchozí", "PE.Views.DateTimeDialog.textFormat": "Formáty", @@ -1592,6 +1634,8 @@ "PE.Views.FileMenuPanels.Settings.strFast": "Automatický", "PE.Views.FileMenuPanels.Settings.strFontRender": "Vyhlazování hran znaků", "PE.Views.FileMenuPanels.Settings.strForcesave": "Přidejte verzi do úložiště kliknutím na Uložit nebo Ctrl+S", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorovat slova psaná pouze VELKÝMI PÍSMENY", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorovat slova obsahující čísla", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavení maker", "PE.Views.FileMenuPanels.Settings.strPaste": "Vyjmout, kopírovat, vložit", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Zobrazit možnosti vložení, při vkládání obsahu", @@ -1613,8 +1657,12 @@ "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Autokorekce možnosti...", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Výchozí režim mezipaměti", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimetry", + "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Spolupráce", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Úprava a uložení", + "PE.Views.FileMenuPanels.Settings.txtFastTip": "Režim spolupráce v reálném čase. Veškeré změny jsou ukládány automaticky", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Přizpůsobit snímku", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce", + "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyfy", "PE.Views.FileMenuPanels.Settings.txtInch": "Palce", "PE.Views.FileMenuPanels.Settings.txtInput": "Alternativní vstupní metoda", "PE.Views.FileMenuPanels.Settings.txtLast": "Zobrazit poslední", @@ -1627,9 +1675,13 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Vypnout vše", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Vypnout všechna makra bez notifikací", + "PE.Views.FileMenuPanels.Settings.txtStrictTip": "Pro synchronizaci provedených změn klikněte na tlačítko \"Uložit\"", + "PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Použít klávesu Alt pro navigaci uživatelským rozhraním za použití klávesnice", + "PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Použít klávesu Option pro navigaci uživatelským rozhraním za použití klávesnice", "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Zobrazit notifikace", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Vypnout všechna makra s notifikacemi", "PE.Views.FileMenuPanels.Settings.txtWin": "jako Windows", + "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Pracovní prostředí", "PE.Views.HeaderFooterDialog.applyAllText": "Použít na vše", "PE.Views.HeaderFooterDialog.applyText": "Použít", "PE.Views.HeaderFooterDialog.diffLanguage": "Není možné použít formát data z jiného jazyka, než je používán pro hlavní snímek.
Pro změnu hlavního, klikněte na „Uplatnit na vše“ namísto „Uplatnit“", @@ -1692,8 +1744,11 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Název", "PE.Views.ImageSettingsAdvanced.textAngle": "Úhel", + "PE.Views.ImageSettingsAdvanced.textCenter": "Na střed", "PE.Views.ImageSettingsAdvanced.textFlipped": "Převrácené", + "PE.Views.ImageSettingsAdvanced.textFrom": "Od", "PE.Views.ImageSettingsAdvanced.textHeight": "Výška", + "PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontálně", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Vodorovně", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Zachovat poměr stran", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Skutečná velikost", @@ -1702,6 +1757,8 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "Otočení", "PE.Views.ImageSettingsAdvanced.textSize": "Velikost", "PE.Views.ImageSettingsAdvanced.textTitle": "Obrázek – pokročilá nastavení", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Roh vlevo nahoře", + "PE.Views.ImageSettingsAdvanced.textVertical": "Svislé", "PE.Views.ImageSettingsAdvanced.textVertically": "Svisle", "PE.Views.ImageSettingsAdvanced.textWidth": "Šířka", "PE.Views.LeftMenu.tipAbout": "O aplikaci", @@ -1713,6 +1770,7 @@ "PE.Views.LeftMenu.tipSupport": "Zpětná vazba a technická podpora", "PE.Views.LeftMenu.tipTitles": "Nadpisy", "PE.Views.LeftMenu.txtDeveloper": "REŽIM PRO VÝVOJÁŘE", + "PE.Views.LeftMenu.txtEditor": "Editor prezentací", "PE.Views.LeftMenu.txtLimit": "Omezený přístup", "PE.Views.LeftMenu.txtTrial": "ZKUŠEBNÍ REŽIM", "PE.Views.LeftMenu.txtTrialDev": "Zkušební vývojářský režim", @@ -1841,12 +1899,15 @@ "PE.Views.ShapeSettingsAdvanced.textBevel": "Zkosení", "PE.Views.ShapeSettingsAdvanced.textBottom": "Dole", "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončení", + "PE.Views.ShapeSettingsAdvanced.textCenter": "Na střed", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Počet sloupců", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Velikost konce", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Styl konce", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Převrácené", + "PE.Views.ShapeSettingsAdvanced.textFrom": "Od", "PE.Views.ShapeSettingsAdvanced.textHeight": "Výška", + "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontálně", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Vodorovně", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Typ spoje", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Zachovat poměr stran", @@ -1854,6 +1915,8 @@ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Styl čáry", "PE.Views.ShapeSettingsAdvanced.textMiter": "Pokos", "PE.Views.ShapeSettingsAdvanced.textNofit": "Nepřizpůsobovat automaticky", + "PE.Views.ShapeSettingsAdvanced.textPlacement": "Umístění", + "PE.Views.ShapeSettingsAdvanced.textPosition": "Pozice", "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Upravit velikost podle textu", "PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "PE.Views.ShapeSettingsAdvanced.textRotation": "Otočení", @@ -1865,6 +1928,8 @@ "PE.Views.ShapeSettingsAdvanced.textTextBox": "Textové pole", "PE.Views.ShapeSettingsAdvanced.textTitle": "Obrazce – pokročilá nastavení", "PE.Views.ShapeSettingsAdvanced.textTop": "Nahoře", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Roh vlevo nahoře", + "PE.Views.ShapeSettingsAdvanced.textVertical": "Svislé", "PE.Views.ShapeSettingsAdvanced.textVertically": "Svisle", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Tloušťka a šipky", "PE.Views.ShapeSettingsAdvanced.textWidth": "Šířka", @@ -2018,13 +2083,24 @@ "PE.Views.TableSettingsAdvanced.textAltTip": "Alternativní textová reprezentace informací vizuálního objektu, která bude čtena lidem se zrakovým nebo kognitivním postižením, aby jim pomohla lépe porozumět informacím, které se nacházejí v obrázku, grafu, obrazci nebo v tabulce.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Název", "PE.Views.TableSettingsAdvanced.textBottom": "Dole", + "PE.Views.TableSettingsAdvanced.textCenter": "Na střed", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Použít výchozí okraje", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Výchozí okraje", + "PE.Views.TableSettingsAdvanced.textFrom": "Od", + "PE.Views.TableSettingsAdvanced.textHeight": "Výška", + "PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontálně", + "PE.Views.TableSettingsAdvanced.textKeepRatio": "Zachovat poměr stran", "PE.Views.TableSettingsAdvanced.textLeft": "Vlevo", "PE.Views.TableSettingsAdvanced.textMargins": "Okraje buňky", + "PE.Views.TableSettingsAdvanced.textPlacement": "Umístění", + "PE.Views.TableSettingsAdvanced.textPosition": "Pozice", "PE.Views.TableSettingsAdvanced.textRight": "Vpravo", + "PE.Views.TableSettingsAdvanced.textSize": "Velikost", "PE.Views.TableSettingsAdvanced.textTitle": "Tabulka – pokročilá nastavení", "PE.Views.TableSettingsAdvanced.textTop": "Nahoře", + "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Roh vlevo nahoře", + "PE.Views.TableSettingsAdvanced.textVertical": "Svislé", + "PE.Views.TableSettingsAdvanced.textWidth": "Šířka", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Okraje", "PE.Views.TextArtSettings.strBackground": "Barva pozadí", "PE.Views.TextArtSettings.strColor": "Barva", @@ -2095,6 +2171,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Obrázek ze souboru", "PE.Views.Toolbar.mniImageFromStorage": "Obrázek z úložiště", "PE.Views.Toolbar.mniImageFromUrl": "Obrázek z URL adresy", + "PE.Views.Toolbar.mniInsertSSE": "Vložit list", "PE.Views.Toolbar.mniLowerCase": "všechna malá", "PE.Views.Toolbar.mniSentenceCase": "Velká na začátku věty.", "PE.Views.Toolbar.mniSlideAdvanced": "Pokročilá nastavení", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 0a3217fcc..5d7a8c0b7 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -241,6 +241,7 @@ "Common.define.effectData.textWipe": "Barrido", "Common.define.effectData.textZigzag": "Zigzag", "Common.define.effectData.textZoom": "Zoom", + "Common.Translation.textMoreButton": "Más", "Common.Translation.warnFileLocked": "El archivo está siendo editado en otra aplicación. Puede continuar editándolo y guardarlo como una copia.", "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -257,6 +258,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Sin Color", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña", + "Common.UI.SearchBar.textFind": "Buscar", + "Common.UI.SearchBar.tipCloseSearch": "Cerrar búsqueda", + "Common.UI.SearchBar.tipNextResult": "Resultado siguiente", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir los ajustes avanzados", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.SearchDialog.textHighlight": "Resaltar resultados", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", @@ -269,11 +275,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Reemplazar todo", "Common.UI.SynchronizeTip.textDontShow": "No volver a mostrar este mensaje", "Common.UI.SynchronizeTip.textSynchronize": "El documento ha sido cambiado por otro usuario.
Por favor haga clic para guardar sus cambios y recargue las actualizaciones.", + "Common.UI.ThemeColorPalette.textRecentColors": "Colores recientes", "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", "Common.UI.Themes.txtThemeClassicLight": "Clásico claro", "Common.UI.Themes.txtThemeDark": "Oscuro", "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Themes.txtThemeSystem": "Igual que el sistema", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Cerrar", "Common.UI.Window.noButtonText": "No", @@ -374,6 +382,7 @@ "Common.Views.Header.textSaveChanged": "Modificado", "Common.Views.Header.textSaveEnd": "Todos los cambios son guardados", "Common.Views.Header.textSaveExpander": "Todos los cambios son guardados", + "Common.Views.Header.textShare": "Compartir", "Common.Views.Header.textZoom": "Ampliación", "Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento", "Common.Views.Header.tipDownload": "Descargar archivo", @@ -381,8 +390,10 @@ "Common.Views.Header.tipPrint": "Imprimir archivo", "Common.Views.Header.tipRedo": "Rehacer", "Common.Views.Header.tipSave": "Guardar", + "Common.Views.Header.tipSearch": "Búsqueda", "Common.Views.Header.tipUndo": "Deshacer", "Common.Views.Header.tipUndock": "Desacoplar en una ventana independiente", + "Common.Views.Header.tipUsers": "Ver usuarios", "Common.Views.Header.tipViewSettings": "Mostrar ajustes", "Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento", "Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso", @@ -435,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "Cargando", "Common.Views.Plugins.groupCaption": "Extensiones", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Cerrar plugin", "Common.Views.Plugins.textLoading": "Cargando", "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Detener", @@ -519,6 +531,21 @@ "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Cargando", "Common.Views.SaveAsDlg.textTitle": "Carpeta para guardar", + "Common.Views.SearchPanel.textCaseSensitive": "Distinguir mayúsculas de minúsculas", + "Common.Views.SearchPanel.textCloseSearch": "Cerrar búsqueda", + "Common.Views.SearchPanel.textFind": "Buscar", + "Common.Views.SearchPanel.textFindAndReplace": "Buscar y reemplazar", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Coincidir utilizando expresiones regulares", + "Common.Views.SearchPanel.textNoMatches": "No hay coincidencias", + "Common.Views.SearchPanel.textNoSearchResults": "No hay resultados de búsqueda", + "Common.Views.SearchPanel.textReplace": "Reemplazar", + "Common.Views.SearchPanel.textReplaceAll": "Reemplazar todo", + "Common.Views.SearchPanel.textReplaceWith": "Reemplazar por", + "Common.Views.SearchPanel.textSearchResults": "Resultados de búsqueda: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Hay demasiados resultados para mostrar aquí", + "Common.Views.SearchPanel.textWholeWords": "Sólo palabras completas", + "Common.Views.SearchPanel.tipNextResult": "Resultado siguiente", + "Common.Views.SearchPanel.tipPreviousResult": "Resultado anterior", "Common.Views.SelectFileDlg.textLoading": "Cargando", "Common.Views.SelectFileDlg.textTitle": "Seleccionar fuente de datos", "Common.Views.SignDialog.textBold": "Negrita", @@ -601,12 +628,12 @@ "PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", "PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", "PE.Controllers.Main.errorDefaultMessage": "Código de error: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", - "PE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", + "PE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro.", + "PE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.", "PE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo", "PE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "PE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo supera la configuración del servidor.
Póngase en contacto con el administrador del servidor para obtener más detalles. ", - "PE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras guardaba el archivo. Por favor use la opción \"Descargar\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", + "PE.Controllers.Main.errorForceSave": "Se produjo un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "PE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "PE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", @@ -674,8 +701,10 @@ "PE.Controllers.Main.textPaidFeature": "Función de pago", "PE.Controllers.Main.textReconnect": "Se ha restablecido la conexión", "PE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", + "PE.Controllers.Main.textRememberMacros": "Recordar mi elección para todas las macros", "PE.Controllers.Main.textRenameError": "El nombre de usuario no debe estar vacío.", "PE.Controllers.Main.textRenameLabel": "Escriba un nombre que se utilizará para la colaboración", + "PE.Controllers.Main.textRequestMacros": "Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Modo estricto", "PE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.
Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", @@ -954,6 +983,8 @@ "PE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "PE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", + "PE.Controllers.Search.notcriticalErrorTitle": "Advertencia", + "PE.Controllers.Search.warnReplaceString": "{0} no es un carácter especial válido para la casilla Reemplazar por.", "PE.Controllers.Statusbar.textDisconnect": "Se ha perdido la conexión
Intentando conectar. Compruebe la configuración de la conexión.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "El tipo de letra que usted va a guardar no está disponible en este dispositivo.
El estilo de letra se mostrará usando uno de los tipos de letra del dispositivo, el tipo de letra guardado va a usarse cuando esté disponible.
¿Desea continuar?", @@ -1336,7 +1367,18 @@ "PE.Views.ChartSettingsAdvanced.textAltDescription": "Descripción", "PE.Views.ChartSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Título", + "PE.Views.ChartSettingsAdvanced.textCenter": "Al centro", + "PE.Views.ChartSettingsAdvanced.textFrom": "De", + "PE.Views.ChartSettingsAdvanced.textHeight": "Altura", + "PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontal ", + "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Proporciones constantes", + "PE.Views.ChartSettingsAdvanced.textPlacement": "Ubicación", + "PE.Views.ChartSettingsAdvanced.textPosition": "Posición", + "PE.Views.ChartSettingsAdvanced.textSize": "Tamaño", "PE.Views.ChartSettingsAdvanced.textTitle": "Gráfico - Ajustes avanzados", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Esquina superior izquierda", + "PE.Views.ChartSettingsAdvanced.textVertical": "Vertical", + "PE.Views.ChartSettingsAdvanced.textWidth": "Ancho", "PE.Views.DateTimeDialog.confirmDefault": "Establecer formato predeterminado para {0}: \"{1}\"", "PE.Views.DateTimeDialog.textDefault": "Establecer como el valor predeterminado", "PE.Views.DateTimeDialog.textFormat": "Formatos", @@ -1592,6 +1634,8 @@ "PE.Views.FileMenuPanels.Settings.strFast": "rápido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Hinting", "PE.Views.FileMenuPanels.Settings.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAYÚSCULAS", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Omitir palabras con números", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ajustes de macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar y pegar", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", @@ -1613,8 +1657,12 @@ "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opciones de autocorrección", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de caché predeterminado", "PE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", + "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Colaboración", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editar y guardar", + "PE.Views.FileMenuPanels.Settings.txtFastTip": "Co-edición en tiempo real. Todos los cambios se guardan automáticamente", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajustar a la diapositiva", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar al ancho", + "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Jeroglíficos", "PE.Views.FileMenuPanels.Settings.txtInch": "Pulgada", "PE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "PE.Views.FileMenuPanels.Settings.txtLast": "Ver últimos", @@ -1627,9 +1675,13 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Сorrección ortográfica", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Deshabilitar todo", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Deshabilitar todas las macros sin notificación", + "PE.Views.FileMenuPanels.Settings.txtStrictTip": "Utilice el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen", + "PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Utilice la tecla Alt para navegar por la interfaz de usuario mediante el teclado", + "PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Utilice la tecla Opción para navegar por la interfaz de usuario mediante el teclado", "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "PE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de trabajo", "PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todo", "PE.Views.HeaderFooterDialog.applyText": "Aplicar", "PE.Views.HeaderFooterDialog.diffLanguage": "No se puede usar un formato de fecha en un idioma diferente del patrón de diapositivas.
Para cambiar el patrón pulse \"Aplicar a todo\" en vez de \"Aplicar\"", @@ -1692,8 +1744,11 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Título", "PE.Views.ImageSettingsAdvanced.textAngle": "Ángulo", + "PE.Views.ImageSettingsAdvanced.textCenter": "Al centro", "PE.Views.ImageSettingsAdvanced.textFlipped": "Volteado", + "PE.Views.ImageSettingsAdvanced.textFrom": "De", "PE.Views.ImageSettingsAdvanced.textHeight": "Altura", + "PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal ", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporciones constantes", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamaño actual", @@ -1702,6 +1757,8 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "Rotación", "PE.Views.ImageSettingsAdvanced.textSize": "Tamaño", "PE.Views.ImageSettingsAdvanced.textTitle": "Imagen - ajustes avanzados", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Esquina superior izquierda", + "PE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", "PE.Views.ImageSettingsAdvanced.textWidth": "Ancho", "PE.Views.LeftMenu.tipAbout": "Acerca de programa", @@ -1713,6 +1770,7 @@ "PE.Views.LeftMenu.tipSupport": "Feedback y Soporte", "PE.Views.LeftMenu.tipTitles": "Títulos", "PE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO", + "PE.Views.LeftMenu.txtEditor": "Editor de presentaciones", "PE.Views.LeftMenu.txtLimit": "Limitar acceso", "PE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA", "PE.Views.LeftMenu.txtTrialDev": "Modo de programador de prueba", @@ -1841,12 +1899,15 @@ "PE.Views.ShapeSettingsAdvanced.textBevel": "Biselado", "PE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipo de remate", + "PE.Views.ShapeSettingsAdvanced.textCenter": "Al centro", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Número de columnas", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Tamaño final", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Estilo final", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plano", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Volteado", + "PE.Views.ShapeSettingsAdvanced.textFrom": "De", "PE.Views.ShapeSettingsAdvanced.textHeight": "Altura", + "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontal ", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalmente", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Tipo de combinación", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporciones constantes", @@ -1854,6 +1915,8 @@ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Estilo de línea", "PE.Views.ShapeSettingsAdvanced.textMiter": "Ángulo", "PE.Views.ShapeSettingsAdvanced.textNofit": "No autoajustar", + "PE.Views.ShapeSettingsAdvanced.textPlacement": "Ubicación", + "PE.Views.ShapeSettingsAdvanced.textPosition": "Posición", "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Ajustar tamaño de la forma al texto", "PE.Views.ShapeSettingsAdvanced.textRight": "Derecho", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotación", @@ -1865,6 +1928,8 @@ "PE.Views.ShapeSettingsAdvanced.textTextBox": "Cuadro de texto", "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - ajustes avanzados", "PE.Views.ShapeSettingsAdvanced.textTop": "Superior", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Esquina superior izquierda", + "PE.Views.ShapeSettingsAdvanced.textVertical": "Vertical", "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Grosores y flechas", "PE.Views.ShapeSettingsAdvanced.textWidth": "Ancho", @@ -2018,13 +2083,24 @@ "PE.Views.TableSettingsAdvanced.textAltTip": "Representación de texto alternativa de la información sobre el objeto visual, que se leerá para las personas con deficiencia visual o deterioro cognitivo para ayudarles a entender mejor, que información contiene la imagen, autoforma, gráfica o tabla.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Título", "PE.Views.TableSettingsAdvanced.textBottom": "Inferior", + "PE.Views.TableSettingsAdvanced.textCenter": "Al centro", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Usar márgenes predeterminados", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Márgenes predeterminados", + "PE.Views.TableSettingsAdvanced.textFrom": "De", + "PE.Views.TableSettingsAdvanced.textHeight": "Altura", + "PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal ", + "PE.Views.TableSettingsAdvanced.textKeepRatio": "Proporciones constantes", "PE.Views.TableSettingsAdvanced.textLeft": "Izquierdo", "PE.Views.TableSettingsAdvanced.textMargins": "Márgenes de celdas", + "PE.Views.TableSettingsAdvanced.textPlacement": "Ubicación", + "PE.Views.TableSettingsAdvanced.textPosition": "Posición", "PE.Views.TableSettingsAdvanced.textRight": "Derecho", + "PE.Views.TableSettingsAdvanced.textSize": "Tamaño", "PE.Views.TableSettingsAdvanced.textTitle": "Tabla - ajustes avanzados", "PE.Views.TableSettingsAdvanced.textTop": "Superior", + "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Esquina superior izquierda", + "PE.Views.TableSettingsAdvanced.textVertical": "Vertical", + "PE.Views.TableSettingsAdvanced.textWidth": "Ancho", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Márgenes", "PE.Views.TextArtSettings.strBackground": "Color de fondo", "PE.Views.TextArtSettings.strColor": "Color", @@ -2095,6 +2171,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Imagen de archivo", "PE.Views.Toolbar.mniImageFromStorage": "Imagen de Almacenamiento", "PE.Views.Toolbar.mniImageFromUrl": "Imagen de URL", + "PE.Views.Toolbar.mniInsertSSE": "Insertar hoja de cálculo", "PE.Views.Toolbar.mniLowerCase": "minúsculas", "PE.Views.Toolbar.mniSentenceCase": "Tipo oración.", "PE.Views.Toolbar.mniSlideAdvanced": "Ajustes avanzados", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index a023aaedc..62971c10e 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -446,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "Chargement", "Common.Views.Plugins.groupCaption": "Modules complémentaires", "Common.Views.Plugins.strPlugins": "Plug-ins", + "Common.Views.Plugins.textClosePanel": "Fermer le plugin", "Common.Views.Plugins.textLoading": "Chargement", "Common.Views.Plugins.textStart": "Lancer", "Common.Views.Plugins.textStop": "Arrêter", @@ -1769,6 +1770,7 @@ "PE.Views.LeftMenu.tipSupport": "Commentaires & assistance", "PE.Views.LeftMenu.tipTitles": "Titres", "PE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", + "PE.Views.LeftMenu.txtEditor": "Éditeur de Présentation", "PE.Views.LeftMenu.txtLimit": "Accès limité", "PE.Views.LeftMenu.txtTrial": "MODE DEMO", "PE.Views.LeftMenu.txtTrialDev": "Essai en mode Développeur", @@ -2169,6 +2171,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Image à partir d'un fichier", "PE.Views.Toolbar.mniImageFromStorage": "Image de stockage", "PE.Views.Toolbar.mniImageFromUrl": "Image à partir d'une URL", + "PE.Views.Toolbar.mniInsertSSE": "Insérer la feuille de calcul", "PE.Views.Toolbar.mniLowerCase": "minuscule", "PE.Views.Toolbar.mniSentenceCase": "Majuscule en début de phrase.", "PE.Views.Toolbar.mniSlideAdvanced": "Paramètres avancés", diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index a9d3dca4a..26272880d 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -141,7 +141,6 @@ "Common.define.effectData.textInFromScreenCenter": "Դեպի ներս՝ էկրանի կենտրոնից", "Common.define.effectData.textInSlightly": "Թեթևակի դեպի ներս", "Common.define.effectData.textInToScreenBottom": "Դեպի ներս՝ էկրանի ներքևի մաս", - "Common.define.effectData.textInToScreenCenter": "Դեպի ներս՝ էկրանի կենտրոնական մաս", "Common.define.effectData.textInvertedSquare": "Հակադարձված քառակուսի", "Common.define.effectData.textInvertedTriangle": "Հակադարձված եռանկյունի", "Common.define.effectData.textLeft": "Ձախ", @@ -217,7 +216,6 @@ "Common.define.effectData.textToBottom": "Դեպի ներքև", "Common.define.effectData.textToBottomLeft": "Դեպի ներքևի ձախ մաս", "Common.define.effectData.textToBottomRight": "Դեպի ներքևի աջ մաս", - "Common.define.effectData.textToFromScreenBottom": "Դեպի դուրս՝ էկրանի ներքևից", "Common.define.effectData.textToLeft": "Դեպի ձախ", "Common.define.effectData.textToRight": "Դեպի աջ", "Common.define.effectData.textToTop": "Դեպի վերև", @@ -448,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "Բեռնվում է", "Common.Views.Plugins.groupCaption": "Պլագիններ", "Common.Views.Plugins.strPlugins": "Պլագիններ", + "Common.Views.Plugins.textClosePanel": "Փակել օժանդակ ծրագիրը", "Common.Views.Plugins.textLoading": "Բեռնվում է", "Common.Views.Plugins.textStart": "Մեկնարկ", "Common.Views.Plugins.textStop": "Կանգ", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index d13bbd772..d9a98adc8 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Arco verso il basso", "Common.define.effectData.textArcLeft": "Arco a sinistra", "Common.define.effectData.textArcRight": "Arco a destra", + "Common.define.effectData.textArcs": "Archi", "Common.define.effectData.textArcUp": "Arco in alto", "Common.define.effectData.textBasic": "Di base", "Common.define.effectData.textBasicSwivel": "Girevole di base", @@ -98,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Sciogliere fuori", "Common.define.effectData.textDown": "Giù", "Common.define.effectData.textDrop": "Cadere", - "Common.define.effectData.textEmphasis": "Effetto di risalto", - "Common.define.effectData.textEntrance": "Effetto di ingresso", + "Common.define.effectData.textEmphasis": "Effetti di enfasi", + "Common.define.effectData.textEntrance": "Effetti di ingresso", "Common.define.effectData.textEqualTriangle": "Triangolo equilatero", "Common.define.effectData.textExciting": "Accattivante", - "Common.define.effectData.textExit": "Effetto di uscita", + "Common.define.effectData.textExit": "Effetti di uscita", "Common.define.effectData.textExpand": "Espandi", "Common.define.effectData.textFade": "Dissolvenza", "Common.define.effectData.textFigureFour": "Figura quattro volte 8", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "All'interno", "Common.define.effectData.textInFromScreenCenter": "Aumentare da centro schermo", "Common.define.effectData.textInSlightly": "Lieve aumento", + "Common.define.effectData.textInToScreenBottom": "Zoom verso la parte inferiore dello schermo", "Common.define.effectData.textInvertedSquare": "Quadrato invertito", "Common.define.effectData.textInvertedTriangle": "Triangolo invertito", "Common.define.effectData.textLeft": "A sinistra", @@ -149,6 +151,7 @@ "Common.define.effectData.textLines": "Linee", "Common.define.effectData.textLinesCurves": "Linee Curve", "Common.define.effectData.textLoopDeLoop": "Ciclo continuo", + "Common.define.effectData.textLoops": "Loop", "Common.define.effectData.textModerate": "Moderato", "Common.define.effectData.textNeutron": "Neutrone", "Common.define.effectData.textObjectCenter": "Centro dell'oggetto", @@ -157,8 +160,9 @@ "Common.define.effectData.textOut": "All'esterno", "Common.define.effectData.textOutFromScreenBottom": "Allontanare dal fondo dello schermo", "Common.define.effectData.textOutSlightly": "Lieve diminuzione", + "Common.define.effectData.textOutToScreenCenter": "Diminuire verso il centro dello schermo", "Common.define.effectData.textParallelogram": "Parallelogramma", - "Common.define.effectData.textPath": "Percorso di movimento", + "Common.define.effectData.textPath": "Percorsi di movimento", "Common.define.effectData.textPeanut": "Arachidi", "Common.define.effectData.textPeekIn": "Sbirciare dentro", "Common.define.effectData.textPeekOut": "Sbirciare fuori", @@ -221,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Trapezio", "Common.define.effectData.textTurnDown": "Girare verso il basso", "Common.define.effectData.textTurnDownRight": "Girare verso il basso e destra", + "Common.define.effectData.textTurns": "Giri", "Common.define.effectData.textTurnUp": "Girare verso l'alto", "Common.define.effectData.textTurnUpRight": "Girare verso l'alto a destra", "Common.define.effectData.textUnderline": "Sottolineare", @@ -236,6 +241,7 @@ "Common.define.effectData.textWipe": "Apparizione", "Common.define.effectData.textZigzag": "Zigzag", "Common.define.effectData.textZoom": "Zoom", + "Common.Translation.textMoreButton": "più", "Common.Translation.warnFileLocked": "Il file è in fase di modifica in un'altra applicazione. Puoi continuare a modificarlo e salvarlo come copia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", @@ -252,6 +258,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Nessun colore", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Nascondere la password", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra password", + "Common.UI.SearchBar.textFind": "Trova", + "Common.UI.SearchBar.tipCloseSearch": "Chiudi la ricerca", + "Common.UI.SearchBar.tipNextResult": "Successivo", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Aprire le impostazioni avanzate", + "Common.UI.SearchBar.tipPreviousResult": "Precedente", "Common.UI.SearchDialog.textHighlight": "Evidenzia risultati", "Common.UI.SearchDialog.textMatchCase": "Sensibile al maiuscolo/minuscolo", "Common.UI.SearchDialog.textReplaceDef": "Inserisci testo sostitutivo", @@ -264,11 +275,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Sostituisci tutto", "Common.UI.SynchronizeTip.textDontShow": "Non mostrare più questo messaggio", "Common.UI.SynchronizeTip.textSynchronize": "Il documento è stato modificato da un altro utente.
Clicca per salvare le modifiche e ricaricare gli aggiornamenti.", + "Common.UI.ThemeColorPalette.textRecentColors": "Colori recenti", "Common.UI.ThemeColorPalette.textStandartColors": "Colori standard", "Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema", "Common.UI.Themes.txtThemeClassicLight": "Luce leggera", "Common.UI.Themes.txtThemeDark": "Scuro", "Common.UI.Themes.txtThemeLight": "Chiaro", + "Common.UI.Themes.txtThemeSystem": "Uguale al sistema", "Common.UI.Window.cancelButtonText": "Annulla", "Common.UI.Window.closeButtonText": "Chiudi", "Common.UI.Window.noButtonText": "No", @@ -295,6 +308,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Elenchi puntati automatici", "Common.Views.AutoCorrectDialog.textBy": "Di", "Common.Views.AutoCorrectDialog.textDelete": "Elimina", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Aggiungere punto con doppio spazio", "Common.Views.AutoCorrectDialog.textFLCells": "Rendere maiuscola la prima lettera delle celle della tabella", "Common.Views.AutoCorrectDialog.textFLSentence": "‎In maiuscolo la prima lettera delle frasi‎", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali", @@ -343,6 +357,7 @@ "Common.Views.Comments.textResolved": "Chiuso", "Common.Views.Comments.textSort": "Ordinare commenti", "Common.Views.Comments.textViewResolved": "Non sei autorizzato a riaprire il commento", + "Common.Views.Comments.txtEmpty": "Non ci sono commenti nel documento.", "Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio", "Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.

Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:", "Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla", @@ -367,6 +382,7 @@ "Common.Views.Header.textSaveChanged": "Modificato", "Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate", "Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate", + "Common.Views.Header.textShare": "Condividi", "Common.Views.Header.textZoom": "Ingrandimento", "Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento", "Common.Views.Header.tipDownload": "Scarica file", @@ -374,8 +390,10 @@ "Common.Views.Header.tipPrint": "Stampa file", "Common.Views.Header.tipRedo": "Ripristina", "Common.Views.Header.tipSave": "Salva", + "Common.Views.Header.tipSearch": "Cerca", "Common.Views.Header.tipUndo": "Annulla", "Common.Views.Header.tipUndock": "Sgancia in una finestra separata", + "Common.Views.Header.tipUsers": "Visualizzare gli utenti", "Common.Views.Header.tipViewSettings": "Mostra impostazioni", "Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento", "Common.Views.Header.txtAccessRights": "Modifica diritti di accesso", @@ -428,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "Caricamento", "Common.Views.Plugins.groupCaption": "Plugin", "Common.Views.Plugins.strPlugins": "Plugin", + "Common.Views.Plugins.textClosePanel": "Chiudere plugin", "Common.Views.Plugins.textLoading": "Caricamento", "Common.Views.Plugins.textStart": "Avvio", "Common.Views.Plugins.textStop": "Termina", @@ -512,6 +531,21 @@ "Common.Views.ReviewPopover.txtEditTip": "Modificare", "Common.Views.SaveAsDlg.textLoading": "Caricamento", "Common.Views.SaveAsDlg.textTitle": "Cartella di salvataggio", + "Common.Views.SearchPanel.textCaseSensitive": "Sensibile al maiuscolo/minuscolo", + "Common.Views.SearchPanel.textCloseSearch": "Chiudi la ricerca", + "Common.Views.SearchPanel.textFind": "Trova", + "Common.Views.SearchPanel.textFindAndReplace": "Trova e sostituisci", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Corrispondenza usando espressioni regolari", + "Common.Views.SearchPanel.textNoMatches": "Nessuna corrispondenza", + "Common.Views.SearchPanel.textNoSearchResults": "Nessun risultato di ricerca", + "Common.Views.SearchPanel.textReplace": "Sostituisci", + "Common.Views.SearchPanel.textReplaceAll": "Sostituisci tutto", + "Common.Views.SearchPanel.textReplaceWith": "Sostituire con", + "Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui", + "Common.Views.SearchPanel.textWholeWords": "Solo parole intere", + "Common.Views.SearchPanel.tipNextResult": "Successivo", + "Common.Views.SearchPanel.tipPreviousResult": "Precedente", "Common.Views.SelectFileDlg.textLoading": "Caricamento", "Common.Views.SelectFileDlg.textTitle": "Seleziona Sorgente Dati", "Common.Views.SignDialog.textBold": "Grassetto", @@ -594,12 +628,12 @@ "PE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", "PE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", "PE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", - "PE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Salva come ...' per salvare la copia di backup del file sul disco rigido del computer.", + "PE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizza l'opzione 'Scaricare come ...' per salvare la copia di backup del file sul disco rigido del computer.", + "PE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.
Utilizza l'opzione 'Salvare come ...' per salvare la copia di backup del file sul disco rigido del computer.", "PE.Controllers.Main.errorEmailClient": "Non è stato trovato nessun client di posta elettronica.", "PE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "PE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", - "PE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", + "PE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizza l'opzione 'Scaricare come' per salvare il file sul disco rigido del computer o riprova più tardi.", "PE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "PE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", "PE.Controllers.Main.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", @@ -667,8 +701,10 @@ "PE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento", "PE.Controllers.Main.textReconnect": "Connessione ripristinata", "PE.Controllers.Main.textRemember": "Ricorda la mia scelta", + "PE.Controllers.Main.textRememberMacros": "Ricordare la mia scelta per tutte le macro", "PE.Controllers.Main.textRenameError": "Il nome utente non può essere vuoto.", "PE.Controllers.Main.textRenameLabel": "Immettere un nome da utilizzare per la collaborazione", + "PE.Controllers.Main.textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Modalità Rigorosa", "PE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.
Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.", @@ -947,6 +983,8 @@ "PE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "PE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.", + "PE.Controllers.Search.notcriticalErrorTitle": "Avviso", + "PE.Controllers.Search.warnReplaceString": "{0} non è un carattere speciale valido per la casella Sostituire con.", "PE.Controllers.Statusbar.textDisconnect": "Connessione persa
Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Il carattere che vuoi salvare non è accessibile su questo dispositivo.
Lo stile di testo sarà visualizzato usando uno dei caratteri di sistema, il carattere salvato sarà usato quando accessibile.
Vuoi continuare?", @@ -1284,6 +1322,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Adatta alla diapositiva", "PE.Controllers.Viewport.textFitWidth": "Adatta alla larghezza", + "PE.Views.Animation.str0_5": "0,5 s (molto veloce)", + "PE.Views.Animation.str1": "1 s (veloce)", + "PE.Views.Animation.str2": "2 s (medio)", + "PE.Views.Animation.str20": "20 s (estremamente lento)", + "PE.Views.Animation.str3": "3 s (lento)", + "PE.Views.Animation.str5": "5 s (molto lento)", "PE.Views.Animation.strDelay": "Ritardo", "PE.Views.Animation.strDuration": "Durata", "PE.Views.Animation.strRepeat": "Ripetere", @@ -1302,6 +1346,8 @@ "PE.Views.Animation.textStartAfterPrevious": "Dopo il precedente", "PE.Views.Animation.textStartOnClick": "Al clic", "PE.Views.Animation.textStartWithPrevious": "Con il precedente", + "PE.Views.Animation.textUntilEndOfSlide": "Fino alla fine della diapositiva", + "PE.Views.Animation.textUntilNextClick": "Fino al prossimo clic", "PE.Views.Animation.txtAddEffect": "Aggiungi animazione", "PE.Views.Animation.txtAnimationPane": "Riquadro animazione", "PE.Views.Animation.txtParameters": "Parametri", @@ -1321,7 +1367,18 @@ "PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrizione", "PE.Views.ChartSettingsAdvanced.textAltTip": "La rappresentazione testuale alternativa delle informazioni riguardanti l'oggetto visivo, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Titolo", + "PE.Views.ChartSettingsAdvanced.textCenter": "Centrato", + "PE.Views.ChartSettingsAdvanced.textFrom": "Da", + "PE.Views.ChartSettingsAdvanced.textHeight": "Altezza", + "PE.Views.ChartSettingsAdvanced.textHorizontal": "Orizzontale", + "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Proporzioni costanti", + "PE.Views.ChartSettingsAdvanced.textPlacement": "Posizionamento", + "PE.Views.ChartSettingsAdvanced.textPosition": "Posizione", + "PE.Views.ChartSettingsAdvanced.textSize": "Dimensione", "PE.Views.ChartSettingsAdvanced.textTitle": "Grafico - Impostazioni avanzate", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Angolo in alto a sinistra", + "PE.Views.ChartSettingsAdvanced.textVertical": "Verticale", + "PE.Views.ChartSettingsAdvanced.textWidth": "Larghezza", "PE.Views.DateTimeDialog.confirmDefault": "Imposta formato predefinito per {0}: \"{1}\"", "PE.Views.DateTimeDialog.textDefault": "Imposta come predefinito", "PE.Views.DateTimeDialog.textFormat": "Formati", @@ -1526,7 +1583,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Chiudi il menù", "PE.Views.FileMenu.btnCreateNewCaption": "Crea nuovo", "PE.Views.FileMenu.btnDownloadCaption": "Scarica come...", - "PE.Views.FileMenu.btnExitCaption": "Uscire", + "PE.Views.FileMenu.btnExitCaption": "Chiudere", "PE.Views.FileMenu.btnFileOpenCaption": "Aprire...", "PE.Views.FileMenu.btnHelpCaption": "Guida...", "PE.Views.FileMenu.btnHistoryCaption": "Cronologia delle versioni", @@ -1577,6 +1634,8 @@ "PE.Views.FileMenuPanels.Settings.strFast": "Rapido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Suggerimento per i caratteri", "PE.Views.FileMenuPanels.Settings.strForcesave": "‎Aggiungere versione al salvataggio dopo aver fatto clic su Salva o CTRL+S‎", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignora le parole in MAIUSCOLO", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignora le parole con i numeri", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Impostazioni macro", "PE.Views.FileMenuPanels.Settings.strPaste": "Taglia, copia e incolla", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato", @@ -1598,8 +1657,12 @@ "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opzioni di correzione automatica ...", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Modalità cache predefinita", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimetro", + "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Collaborazione", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Modifica e salvataggio", + "PE.Views.FileMenuPanels.Settings.txtFastTip": "Co-editing in tempo reale. Tutte le modifiche vengono salvate automaticamente", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Adatta alla diapositiva", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Adatta alla larghezza", + "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Geroglifici", "PE.Views.FileMenuPanels.Settings.txtInch": "Pollice", "PE.Views.FileMenuPanels.Settings.txtInput": "Input alternativo", "PE.Views.FileMenuPanels.Settings.txtLast": "Ultime", @@ -1612,9 +1675,13 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Controllo ortografia", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Disabilita tutto", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Disabilita tutte le macro senza notifica", + "PE.Views.FileMenuPanels.Settings.txtStrictTip": "Utilizza il pulsante \"Salvare\" per sincronizzare le modifiche apportate da te e da altri", + "PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Utilizzare il tasto Alt per navigare nell'interfaccia utente usando la tastiera", + "PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Utilizzare il tasto Opzione per navigare nell'interfaccia utente usando la tastiera", "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra notifica", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica", "PE.Views.FileMenuPanels.Settings.txtWin": "come Windows", + "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Spazio di lavoro", "PE.Views.HeaderFooterDialog.applyAllText": "Applica a tutti", "PE.Views.HeaderFooterDialog.applyText": "Applica", "PE.Views.HeaderFooterDialog.diffLanguage": "Non è possibile utilizzare un formato data in una lingua diversa da quella della diapositiva.
Per cambiare il master, fare clic su \"Applica a tutto\" anziché \"Applica\"", @@ -1677,8 +1744,11 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "La rappresentazione testuale alternativa delle informazioni riguardanti l'oggetto visivo, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Titolo", "PE.Views.ImageSettingsAdvanced.textAngle": "Angolo", + "PE.Views.ImageSettingsAdvanced.textCenter": "Centrato", "PE.Views.ImageSettingsAdvanced.textFlipped": "Capovolto", + "PE.Views.ImageSettingsAdvanced.textFrom": "Da", "PE.Views.ImageSettingsAdvanced.textHeight": "Altezza", + "PE.Views.ImageSettingsAdvanced.textHorizontal": "Orizzontale", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Orizzontalmente", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporzioni costanti", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Dimensione reale", @@ -1687,6 +1757,8 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "Rotazione", "PE.Views.ImageSettingsAdvanced.textSize": "Dimensione", "PE.Views.ImageSettingsAdvanced.textTitle": "Immagine - Impostazioni avanzate", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Angolo in alto a sinistra", + "PE.Views.ImageSettingsAdvanced.textVertical": "Verticale", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", "PE.Views.ImageSettingsAdvanced.textWidth": "Larghezza", "PE.Views.LeftMenu.tipAbout": "Informazioni su", @@ -1698,6 +1770,7 @@ "PE.Views.LeftMenu.tipSupport": "Feedback & Supporto", "PE.Views.LeftMenu.tipTitles": "Titoli", "PE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE", + "PE.Views.LeftMenu.txtEditor": "Presentation Editor", "PE.Views.LeftMenu.txtLimit": "‎Limita accesso‎", "PE.Views.LeftMenu.txtTrial": "Modalità di prova", "PE.Views.LeftMenu.txtTrialDev": "Prova Modalità sviluppatore", @@ -1826,12 +1899,15 @@ "PE.Views.ShapeSettingsAdvanced.textBevel": "Smussato", "PE.Views.ShapeSettingsAdvanced.textBottom": "In basso", "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipo estremità", + "PE.Views.ShapeSettingsAdvanced.textCenter": "Centrato", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Numero di colonne", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Dimensione finale", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Stile finale", "PE.Views.ShapeSettingsAdvanced.textFlat": "Uniforme", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Capovolto", + "PE.Views.ShapeSettingsAdvanced.textFrom": "Da", "PE.Views.ShapeSettingsAdvanced.textHeight": "Altezza", + "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Orizzontale", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Orizzontalmente", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Tipo giunzione", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporzioni costanti", @@ -1839,6 +1915,8 @@ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Stile linea", "PE.Views.ShapeSettingsAdvanced.textMiter": "Acuto", "PE.Views.ShapeSettingsAdvanced.textNofit": "Non adattare", + "PE.Views.ShapeSettingsAdvanced.textPlacement": "Posizionamento", + "PE.Views.ShapeSettingsAdvanced.textPosition": "Posizione", "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Ridimensiona forma per adattarla al testo", "PE.Views.ShapeSettingsAdvanced.textRight": "A destra", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotazione", @@ -1850,6 +1928,8 @@ "PE.Views.ShapeSettingsAdvanced.textTextBox": "Casella di testo", "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Impostazioni avanzate", "PE.Views.ShapeSettingsAdvanced.textTop": "In alto", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Angolo in alto a sinistra", + "PE.Views.ShapeSettingsAdvanced.textVertical": "Verticale", "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Spessori e frecce", "PE.Views.ShapeSettingsAdvanced.textWidth": "Larghezza", @@ -2003,13 +2083,24 @@ "PE.Views.TableSettingsAdvanced.textAltTip": "La rappresentazione testuale alternativa delle informazioni riguardanti l'oggetto visivo, che verrà letta alle persone con deficit visivi o cognitivi per aiutarli a comprendere meglio quali informazioni sono contenute nell'immagine, nella forma, nel grafico o nella tabella.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Titolo", "PE.Views.TableSettingsAdvanced.textBottom": "In basso", + "PE.Views.TableSettingsAdvanced.textCenter": "Centrato", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Utilizza margini predefiniti", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margini predefiniti", + "PE.Views.TableSettingsAdvanced.textFrom": "Da", + "PE.Views.TableSettingsAdvanced.textHeight": "Altezza", + "PE.Views.TableSettingsAdvanced.textHorizontal": "Orizzontale", + "PE.Views.TableSettingsAdvanced.textKeepRatio": "Proporzioni costanti", "PE.Views.TableSettingsAdvanced.textLeft": "A sinistra", "PE.Views.TableSettingsAdvanced.textMargins": "Margini cella", + "PE.Views.TableSettingsAdvanced.textPlacement": "Posizionamento", + "PE.Views.TableSettingsAdvanced.textPosition": "Posizione", "PE.Views.TableSettingsAdvanced.textRight": "A destra", + "PE.Views.TableSettingsAdvanced.textSize": "Dimensione", "PE.Views.TableSettingsAdvanced.textTitle": "Tabella - Impostazioni avanzate", "PE.Views.TableSettingsAdvanced.textTop": "In alto", + "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Angolo in alto a sinistra", + "PE.Views.TableSettingsAdvanced.textVertical": "Verticale", + "PE.Views.TableSettingsAdvanced.textWidth": "Larghezza", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margini", "PE.Views.TextArtSettings.strBackground": "Colore sfondo", "PE.Views.TextArtSettings.strColor": "Colore", @@ -2080,6 +2171,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Immagine da file", "PE.Views.Toolbar.mniImageFromStorage": "Immagine dallo spazio di archiviazione", "PE.Views.Toolbar.mniImageFromUrl": "Immagine da URL", + "PE.Views.Toolbar.mniInsertSSE": "Inserire foglio di calcolo", "PE.Views.Toolbar.mniLowerCase": "minuscolo", "PE.Views.Toolbar.mniSentenceCase": "Sentenza della frase", "PE.Views.Toolbar.mniSlideAdvanced": "Impostazioni avanzate", @@ -2172,6 +2264,7 @@ "PE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", "PE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", "PE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella", + "PE.Views.Toolbar.tipNone": "Nessuno", "PE.Views.Toolbar.tipNumbers": "Elenchi numerati", "PE.Views.Toolbar.tipPaste": "Incolla", "PE.Views.Toolbar.tipPreview": "Avvia presentazione", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index 69ed67107..de92559fb 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -91,7 +91,40 @@ "Common.define.effectData.textDarken": "Donkerder maken", "Common.define.effectData.textDecayingWave": "Afnemende golf", "Common.define.effectData.textDesaturate": "Desatureren", + "Common.define.effectData.textDiagonalDownRight": "Diagonaal rechts onderaan", + "Common.define.effectData.textDiagonalUpRight": "Diagonaal rechts bovenaan", + "Common.define.effectData.textDiamond": "Diamant", + "Common.define.effectData.textDisappear": "Verdwijnen", + "Common.define.effectData.textDissolveIn": "Oplossen in", + "Common.define.effectData.textDissolveOut": "Oplossen uit", + "Common.define.effectData.textDown": "Onder", "Common.define.effectData.textDrop": "Vallen", + "Common.define.effectData.textEmphasis": "Benadruk-effecten", + "Common.define.effectData.textEntrance": "Ingangseffecten", + "Common.define.effectData.textEqualTriangle": "Gelijke driehoek", + "Common.define.effectData.textExciting": "Spannend", + "Common.define.effectData.textExit": "Afsluiteffecten", + "Common.define.effectData.textExpand": "Uitvouwen", + "Common.define.effectData.textFade": "Vervagen", + "Common.define.effectData.textFillColor": "Opvulkleur", + "Common.define.effectData.textFlip": "Draaien", + "Common.define.effectData.textFloat": "Zweven", + "Common.define.effectData.textFloatDown": "Naar beneden zweven", + "Common.define.effectData.textFloatIn": "Naar binnen zweven", + "Common.define.effectData.textFloatOut": "Naar buiten zweven", + "Common.define.effectData.textFloatUp": "Naar boven zweven", + "Common.define.effectData.textFlyIn": "Invliegen", + "Common.define.effectData.textFlyOut": "Uitvliegen", + "Common.define.effectData.textFontColor": "Tekstkleur", + "Common.define.effectData.textFootball": "Voetbal", + "Common.define.effectData.textFromBottom": "Van onderkant", + "Common.define.effectData.textFromBottomLeft": "Van linksonder", + "Common.define.effectData.textFromBottomRight": "Van rechtsonder", + "Common.define.effectData.textFromLeft": "Van links", + "Common.define.effectData.textFromRight": "Van rechts", + "Common.define.effectData.textFromTop": "Van boven", + "Common.define.effectData.textFromTopLeft": "Van linksboven", + "Common.define.effectData.textFromTopRight": "Van rechtsboven", "Common.define.effectData.textHeart": "Hart", "Common.define.effectData.textHeartbeat": "Hartslag", "Common.define.effectData.textHexagon": "Zeshoek", @@ -123,6 +156,7 @@ "Common.UI.ExtendedColorDialog.textRGBErr": "De ingevoerde waarde is onjuist.
Voer een numerieke waarde tussen 0 en 255 in.", "Common.UI.HSBColorPicker.textNoColor": "Geen kleur", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Wachtwoord verbergen", + "Common.UI.SearchBar.textFind": "Zoeken", "Common.UI.SearchBar.tipCloseSearch": "Zoekopdracht sluiten", "Common.UI.SearchDialog.textHighlight": "Resultaten markeren", "Common.UI.SearchDialog.textMatchCase": "Hoofdlettergevoelig", @@ -194,6 +228,7 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur Z tot A", "Common.Views.Comments.mniDateAsc": "Oudste", "Common.Views.Comments.mniDateDesc": "Nieuwste", + "Common.Views.Comments.mniFilterGroups": "Filter per groep", "Common.Views.Comments.mniPositionAsc": "Van bovenkant", "Common.Views.Comments.mniPositionDesc": "Van onderkant", "Common.Views.Comments.textAdd": "Toevoegen", @@ -247,6 +282,7 @@ "Common.Views.Header.tipSave": "Opslaan", "Common.Views.Header.tipUndo": "Ongedaan maken", "Common.Views.Header.tipUndock": "Ontkoppel in een apart venster", + "Common.Views.Header.tipUsers": "Toon gebruikers", "Common.Views.Header.tipViewSettings": "Weergave-instellingen", "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", @@ -299,6 +335,7 @@ "Common.Views.PluginDlg.textLoading": "Laden", "Common.Views.Plugins.groupCaption": "Plug-ins", "Common.Views.Plugins.strPlugins": "Plug-ins", + "Common.Views.Plugins.textClosePanel": "Plugin sluiten", "Common.Views.Plugins.textLoading": "Laden", "Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStop": "Stoppen", @@ -384,6 +421,8 @@ "Common.Views.SaveAsDlg.textTitle": "Map voor opslaan", "Common.Views.SearchPanel.textCaseSensitive": "Hoofdlettergevoelig", "Common.Views.SearchPanel.textCloseSearch": "Zoekopdracht sluiten", + "Common.Views.SearchPanel.textFind": "Zoeken", + "Common.Views.SearchPanel.textFindAndReplace": "Zoeken en vervangen", "Common.Views.SelectFileDlg.textLoading": "Laden", "Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren", "Common.Views.SignDialog.textBold": "Vet", @@ -1165,11 +1204,13 @@ "PE.Views.Animation.str3": "3s (Langzaam)", "PE.Views.Animation.str5": "5s (Erg langzaam)", "PE.Views.Animation.strDelay": "Vertragen", + "PE.Views.Animation.strDuration": "Duur", "PE.Views.Animation.textAutoPreview": "AutoVoorbeeld", "PE.Views.Animation.textNoRepeat": "(geen)", "PE.Views.Animation.textStartAfterPrevious": "Na vorige", "PE.Views.Animation.txtAddEffect": "Animatie toevoegen", "PE.Views.Animation.txtAnimationPane": "Animatievenster", + "PE.Views.Animation.txtPreview": "Voorbeeld", "PE.Views.ChartSettings.textAdvanced": "Geavanceerde instellingen tonen", "PE.Views.ChartSettings.textChartType": "Grafiektype wijzigen", "PE.Views.ChartSettings.textEditData": "Gegevens bewerken", @@ -1183,6 +1224,7 @@ "PE.Views.ChartSettingsAdvanced.textAltTip": "De alternatieve, op tekst gebaseerde weergave van de visuele objectinformatie. Deze wordt voorgelezen voor mensen met visuele of cognitieve handicaps om hen te helpen begrijpen welke informatie aanwezig is in de afbeelding, AutoVorm, grafiek of tabel.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ChartSettingsAdvanced.textCenter": "Centreren", + "PE.Views.ChartSettingsAdvanced.textFrom": "Van", "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Constante verhoudingen", "PE.Views.ChartSettingsAdvanced.textTitle": "Grafiek - Geavanceerde instellingen", "PE.Views.DateTimeDialog.confirmDefault": "Stel de standaardindeling in voor {0}: \"{1}\"", @@ -1251,6 +1293,7 @@ "PE.Views.DocumentHolder.textCut": "Knippen", "PE.Views.DocumentHolder.textDistributeCols": "Kolommen verdelen", "PE.Views.DocumentHolder.textDistributeRows": "Rijen verdelen", + "PE.Views.DocumentHolder.textEditPoints": "Punten bewerken", "PE.Views.DocumentHolder.textFlipH": "Horizontaal omdraaien", "PE.Views.DocumentHolder.textFlipV": "Verticaal omdraaien", "PE.Views.DocumentHolder.textFromFile": "Van bestand", @@ -1459,6 +1502,7 @@ "PE.Views.FileMenuPanels.Settings.txtCacheMode": "standaard cache modus", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Samenwerken", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Bewerken en opslaan", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Aanpassen aan dia", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Aan breedte aanpassen", "PE.Views.FileMenuPanels.Settings.txtInch": "Inch", @@ -1539,6 +1583,7 @@ "PE.Views.ImageSettingsAdvanced.textAngle": "Hoek", "PE.Views.ImageSettingsAdvanced.textCenter": "Centreren", "PE.Views.ImageSettingsAdvanced.textFlipped": "Gedraaid", + "PE.Views.ImageSettingsAdvanced.textFrom": "Van", "PE.Views.ImageSettingsAdvanced.textHeight": "Hoogte", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontaal", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constante verhoudingen", @@ -1692,6 +1737,7 @@ "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Eindstijl", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plat", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Gedraaid", + "PE.Views.ShapeSettingsAdvanced.textFrom": "Van", "PE.Views.ShapeSettingsAdvanced.textHeight": "Hoogte", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontaal", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type join", @@ -1867,6 +1913,7 @@ "PE.Views.TableSettingsAdvanced.textCenter": "Centreren", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Standaardmarges gebruiken", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Standaardmarges", + "PE.Views.TableSettingsAdvanced.textFrom": "Van", "PE.Views.TableSettingsAdvanced.textKeepRatio": "Constante verhoudingen", "PE.Views.TableSettingsAdvanced.textLeft": "Links", "PE.Views.TableSettingsAdvanced.textMargins": "Celmarges", @@ -1989,6 +2036,7 @@ "PE.Views.Toolbar.textTabInsert": "Invoegen", "PE.Views.Toolbar.textTabProtect": "Beveiliging", "PE.Views.Toolbar.textTabTransitions": "Overgangen", + "PE.Views.Toolbar.textTabView": "Weergave", "PE.Views.Toolbar.textTitleError": "Fout", "PE.Views.Toolbar.textUnderline": "Onderstrepen", "PE.Views.Toolbar.tipAddSlide": "Dia toevoegen", @@ -2005,7 +2053,7 @@ "PE.Views.Toolbar.tipDecFont": "Tekengrootte verminderen", "PE.Views.Toolbar.tipDecPrLeft": "Inspringing verkleinen", "PE.Views.Toolbar.tipEditHeader": "Voettekst bewerken", - "PE.Views.Toolbar.tipFontColor": "Tekenkleur", + "PE.Views.Toolbar.tipFontColor": "Tekstkleur", "PE.Views.Toolbar.tipFontName": "Lettertype", "PE.Views.Toolbar.tipFontSize": "Tekengrootte", "PE.Views.Toolbar.tipHAligh": "Horizontale uitlijning", @@ -2028,6 +2076,9 @@ "PE.Views.Toolbar.tipMarkersArrow": "Pijlopsommingstekens", "PE.Views.Toolbar.tipMarkersCheckmark": "Vinkopsommingstekens", "PE.Views.Toolbar.tipMarkersDash": "Streepopsommingstekens", + "PE.Views.Toolbar.tipMarkersFRhombus": "Opgevulde ruitopsommingstekens", + "PE.Views.Toolbar.tipMarkersFRound": "Opgevulde ronde opsommingstekens", + "PE.Views.Toolbar.tipMarkersFSquare": "Opgevulde vierkante opsommingstekens", "PE.Views.Toolbar.tipNumbers": "Nummering", "PE.Views.Toolbar.tipPaste": "Plakken", "PE.Views.Toolbar.tipPreview": "Diavoorstelling starten", @@ -2108,5 +2159,7 @@ "PE.Views.Transitions.txtParameters": "Parameters", "PE.Views.Transitions.txtPreview": "Voorbeeld", "PE.Views.Transitions.txtSec": "s", - "PE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven" + "PE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven", + "PE.Views.ViewTab.textFitToSlide": "Aanpassen aan dia", + "PE.Views.ViewTab.textFitToWidth": "Aan breedte aanpassen" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt-PT.json b/apps/presentationeditor/main/locale/pt-PT.json index 775ed5030..bf8600b73 100644 --- a/apps/presentationeditor/main/locale/pt-PT.json +++ b/apps/presentationeditor/main/locale/pt-PT.json @@ -119,13 +119,13 @@ "Common.define.effectData.textFontColor": "Cor do tipo de letra", "Common.define.effectData.textFootball": "Futebol", "Common.define.effectData.textFromBottom": "Do fundo", - "Common.define.effectData.textFromBottomLeft": "Do Canto Inferior Esquerdo", - "Common.define.effectData.textFromBottomRight": "Do Cantor Inferior Direito", + "Common.define.effectData.textFromBottomLeft": "Do canto inferior esquerdo", + "Common.define.effectData.textFromBottomRight": "Do canto inferior direito", "Common.define.effectData.textFromLeft": "Da Esquerda", "Common.define.effectData.textFromRight": "Da Direita", "Common.define.effectData.textFromTop": "De cima", - "Common.define.effectData.textFromTopLeft": "Do Canto Superior Esquerdo", - "Common.define.effectData.textFromTopRight": "Do Canto Superior Direito", + "Common.define.effectData.textFromTopLeft": "Do canto superior esquerdo", + "Common.define.effectData.textFromTopRight": "Do canto superior direito", "Common.define.effectData.textFunnel": "Funil", "Common.define.effectData.textGrowShrink": "Aumentar/Diminuir", "Common.define.effectData.textGrowTurn": "Aumentar e Virar", @@ -140,7 +140,7 @@ "Common.define.effectData.textIn": "Em", "Common.define.effectData.textInFromScreenCenter": "Ampliar a Partir do Centro do Ecrã", "Common.define.effectData.textInSlightly": "Ampliar Ligeiramente", - "Common.define.effectData.textInToScreenBottom": "Ampliar para o Fundo do Ecrã", + "Common.define.effectData.textInToScreenBottom": "Para dentro a iniciar no fundo do ecrã", "Common.define.effectData.textInvertedSquare": "Quadrado Invertido", "Common.define.effectData.textInvertedTriangle": "Triângulo Invertido", "Common.define.effectData.textLeft": "Esquerda", @@ -158,7 +158,7 @@ "Common.define.effectData.textObjectColor": "Cor do Objeto", "Common.define.effectData.textOctagon": "Octógono", "Common.define.effectData.textOut": "Fora", - "Common.define.effectData.textOutFromScreenBottom": "Reduzir a Partir do Fundo do Ecrã", + "Common.define.effectData.textOutFromScreenBottom": "Para fora a iniciar no fundo do ecrã", "Common.define.effectData.textOutSlightly": "Reduzir Ligeiramente", "Common.define.effectData.textOutToScreenCenter": "De Fora Para a Parte Central do Ecrã", "Common.define.effectData.textParallelogram": "Paralelograma", @@ -213,14 +213,14 @@ "Common.define.effectData.textSwoosh": "Laço", "Common.define.effectData.textTeardrop": "Lágrima", "Common.define.effectData.textTeeter": "Balançar", - "Common.define.effectData.textToBottom": "Para Baixo", - "Common.define.effectData.textToBottomLeft": "Para Baixo-Esquerda", - "Common.define.effectData.textToBottomRight": "Para Baixo-Direita", + "Common.define.effectData.textToBottom": "Para baixo", + "Common.define.effectData.textToBottomLeft": "Para esquerda e baixo", + "Common.define.effectData.textToBottomRight": "Para direita e baixo", "Common.define.effectData.textToLeft": "Para a esquerda", "Common.define.effectData.textToRight": "Para a Direita", - "Common.define.effectData.textToTop": "Para Cima", - "Common.define.effectData.textToTopLeft": "Para Cima-Esquerda", - "Common.define.effectData.textToTopRight": "Para Cima-Direita", + "Common.define.effectData.textToTop": "Para cima", + "Common.define.effectData.textToTopLeft": "Para cima e esquerda", + "Common.define.effectData.textToTopRight": "Para cima e direita", "Common.define.effectData.textTransparency": "Transparência", "Common.define.effectData.textTrapezoid": "Trapézio", "Common.define.effectData.textTurnDown": "Virar para Baixo", @@ -241,6 +241,7 @@ "Common.define.effectData.textWipe": "Revelar", "Common.define.effectData.textZigzag": "Zigzag", "Common.define.effectData.textZoom": "Zoom", + "Common.Translation.textMoreButton": "Mais", "Common.Translation.warnFileLocked": "O ficheiro está a ser editado por outra aplicação. Pode continuar a trabalhar mas terá que guardar uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -257,6 +258,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Sem cor", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-passe", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar palavra-passe", + "Common.UI.SearchBar.textFind": "Localizar", + "Common.UI.SearchBar.tipCloseSearch": "Fechar pesquisa", + "Common.UI.SearchBar.tipNextResult": "Resultado seguinte", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir opções avançadas", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.SearchDialog.textHighlight": "Destacar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", @@ -269,11 +275,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo", "Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente", "Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro utilizador.
Clique para guardar as suas alterações e recarregar o documento.", + "Common.UI.ThemeColorPalette.textRecentColors": "Cores recentes", "Common.UI.ThemeColorPalette.textStandartColors": "Cores padrão", "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", "Common.UI.Themes.txtThemeDark": "Escuro", "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Themes.txtThemeSystem": "O mesmo que o sistema", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Fechar", "Common.UI.Window.noButtonText": "Não", @@ -374,6 +382,7 @@ "Common.Views.Header.textSaveChanged": "Modificado", "Common.Views.Header.textSaveEnd": "Todas as alterações foram guardadas", "Common.Views.Header.textSaveExpander": "Todas as alterações foram guardadas", + "Common.Views.Header.textShare": "Partilhar", "Common.Views.Header.textZoom": "Ampliação", "Common.Views.Header.tipAccessRights": "Gerenciar direitos de acesso ao documento", "Common.Views.Header.tipDownload": "Descarregar ficheiro", @@ -381,12 +390,14 @@ "Common.Views.Header.tipPrint": "Imprimir ficheiro", "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Guardar", + "Common.Views.Header.tipSearch": "Pesquisar", "Common.Views.Header.tipUndo": "Desfazer", "Common.Views.Header.tipUndock": "Desacoplar em janela separada", + "Common.Views.Header.tipUsers": "Ver utilizadores", "Common.Views.Header.tipViewSettings": "Definições de visualização", "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", - "Common.Views.Header.txtRename": "Renomear", + "Common.Views.Header.txtRename": "Mudar nome", "Common.Views.History.textCloseHistory": "Fechar histórico", "Common.Views.History.textHide": "Recolher", "Common.Views.History.textHideAll": "Ocultar alterações detalhadas", @@ -435,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "Carregamento", "Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Fechar plugin", "Common.Views.Plugins.textLoading": "Carregamento", "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Parar", @@ -519,6 +531,21 @@ "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "A carregar", "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", + "Common.Views.SearchPanel.textCaseSensitive": "Diferenciar maiúsculas de minúsculas", + "Common.Views.SearchPanel.textCloseSearch": "Fechar pesquisa", + "Common.Views.SearchPanel.textFind": "Localizar", + "Common.Views.SearchPanel.textFindAndReplace": "Localizar e substituir", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Correspondência ao usar expressões regulares", + "Common.Views.SearchPanel.textNoMatches": "Sem correspondência", + "Common.Views.SearchPanel.textNoSearchResults": "Sem resultados de pesquisa", + "Common.Views.SearchPanel.textReplace": "Substituir", + "Common.Views.SearchPanel.textReplaceAll": "Substituir tudo", + "Common.Views.SearchPanel.textReplaceWith": "Substituir com", + "Common.Views.SearchPanel.textSearchResults": "Resultados da pesquisa: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Existem demasiados resultados para poderem ser mostrados aqui", + "Common.Views.SearchPanel.textWholeWords": "Palavras inteiras apenas", + "Common.Views.SearchPanel.tipNextResult": "Resultado seguinte", + "Common.Views.SearchPanel.tipPreviousResult": "Resultado anterior", "Common.Views.SelectFileDlg.textLoading": "A carregar", "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", "Common.Views.SignDialog.textBold": "Negrito", @@ -601,12 +628,12 @@ "PE.Controllers.Main.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", "PE.Controllers.Main.errorDataRange": "Intervalo de dados inválido.", "PE.Controllers.Main.errorDefaultMessage": "Código de erro: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.", - "PE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "PE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar a cópia de segurança do ficheiro numa unidade.", + "PE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar a cópia de segurança do ficheiro numa unidade.", "PE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.", "PE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", "PE.Controllers.Main.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", - "PE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.", + "PE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro para uma unidade ou tente novamente mais tarde.", "PE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", "PE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "PE.Controllers.Main.errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", @@ -674,8 +701,10 @@ "PE.Controllers.Main.textPaidFeature": "Funcionalidade paga", "PE.Controllers.Main.textReconnect": "A ligação foi reposta", "PE.Controllers.Main.textRemember": "Memorizar a minha escolha", + "PE.Controllers.Main.textRememberMacros": "Memorizar escolha para todas as macros", "PE.Controllers.Main.textRenameError": "O nome de utilizador não pode estar em branco.", "PE.Controllers.Main.textRenameLabel": "Insira um nome a ser usado para colaboração", + "PE.Controllers.Main.textRequestMacros": "Uma macro faz um pedido de URL. Quer permitir o pedido à %1?", "PE.Controllers.Main.textShape": "Forma", "PE.Controllers.Main.textStrict": "Modo estrito", "PE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.
Clique no botão 'Modo estrito' para ativar este modo de edição e editar o ficheiro sem ser incomodado por outros utilizadores enviando apenas as suas alterações assim que terminar e guardar. Pode alternar entre modos de co-edição através das definições avançadas.", @@ -939,10 +968,10 @@ "PE.Controllers.Main.unknownErrorText": "Erro desconhecido.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Seu navegador não é suportado.", "PE.Controllers.Main.uploadImageExtMessage": "Formato desconhecido.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", "PE.Controllers.Main.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", - "PE.Controllers.Main.uploadImageTextText": "A enviar imagem...", - "PE.Controllers.Main.uploadImageTitleText": "A enviar imagem", + "PE.Controllers.Main.uploadImageTextText": "A carregar imagem...", + "PE.Controllers.Main.uploadImageTitleText": "A carregar imagem", "PE.Controllers.Main.waitText": "Aguarde...", "PE.Controllers.Main.warnBrowserIE9": "A aplicação não funciona corretamente com IE9. Deve utilizar IE10 ou superior", "PE.Controllers.Main.warnBrowserZoom": "A definição 'zoom' do seu navegador não é totalmente suportada. Prima Ctrl+0 para repor o valor padrão.", @@ -954,6 +983,8 @@ "PE.Controllers.Main.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", "PE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", "PE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.", + "PE.Controllers.Search.notcriticalErrorTitle": "Aviso", + "PE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.", "PE.Controllers.Statusbar.textDisconnect": "Sem Ligação
A tentar ligar. Por favor, verifique as definições de ligação.", "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", @@ -1303,7 +1334,7 @@ "PE.Views.Animation.strRewind": "Recuar", "PE.Views.Animation.strStart": "Iniciar", "PE.Views.Animation.strTrigger": "Acionador", - "PE.Views.Animation.textAutoPreview": "Pré-visualização Automática", + "PE.Views.Animation.textAutoPreview": "Pré-visualização automática", "PE.Views.Animation.textMoreEffects": "Mostrar Mais Efeitos", "PE.Views.Animation.textMoveEarlier": "Mover mais cedo", "PE.Views.Animation.textMoveLater": "Mover mais tarde", @@ -1336,7 +1367,18 @@ "PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrição", "PE.Views.ChartSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Título", + "PE.Views.ChartSettingsAdvanced.textCenter": "Centro", + "PE.Views.ChartSettingsAdvanced.textFrom": "De", + "PE.Views.ChartSettingsAdvanced.textHeight": "Altura", + "PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontal", + "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Proporções constantes", + "PE.Views.ChartSettingsAdvanced.textPlacement": "Posicionamento", + "PE.Views.ChartSettingsAdvanced.textPosition": "Posição", + "PE.Views.ChartSettingsAdvanced.textSize": "Tamanho", "PE.Views.ChartSettingsAdvanced.textTitle": "Gráfico - Definições avançadas", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Canto superior esquerdo", + "PE.Views.ChartSettingsAdvanced.textVertical": "Vertical", + "PE.Views.ChartSettingsAdvanced.textWidth": "Largura", "PE.Views.DateTimeDialog.confirmDefault": "Definir formato predefinido para {0}: \"{1}\"", "PE.Views.DateTimeDialog.textDefault": "Definir como predefinido", "PE.Views.DateTimeDialog.textFormat": "Formatos", @@ -1416,31 +1458,31 @@ "PE.Views.DocumentHolder.textRotate": "Rodar", "PE.Views.DocumentHolder.textRotate270": "Rodar 90º à esquerda", "PE.Views.DocumentHolder.textRotate90": "Rodar 90º à direita", - "PE.Views.DocumentHolder.textShapeAlignBottom": "Alinhar à parte inferior", + "PE.Views.DocumentHolder.textShapeAlignBottom": "Alinhar em baixo", "PE.Views.DocumentHolder.textShapeAlignCenter": "Alinhar ao centro", "PE.Views.DocumentHolder.textShapeAlignLeft": "Alinhar à esquerda", "PE.Views.DocumentHolder.textShapeAlignMiddle": "Alinhar ao meio", "PE.Views.DocumentHolder.textShapeAlignRight": "Alinhar à direita", - "PE.Views.DocumentHolder.textShapeAlignTop": "Alinhar à parte superior", + "PE.Views.DocumentHolder.textShapeAlignTop": "Alinhar em cima", "PE.Views.DocumentHolder.textSlideSettings": "Definições de diapositivo", "PE.Views.DocumentHolder.textUndo": "Desfazer", "PE.Views.DocumentHolder.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", "PE.Views.DocumentHolder.toDictionaryText": "Incluir no Dicionário", - "PE.Views.DocumentHolder.txtAddBottom": "Adicionar borda inferior", + "PE.Views.DocumentHolder.txtAddBottom": "Adicionar contorno inferior", "PE.Views.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração", "PE.Views.DocumentHolder.txtAddHor": "Adicionar linha horizontal", "PE.Views.DocumentHolder.txtAddLB": "Adicionar linha inferior esquerda", "PE.Views.DocumentHolder.txtAddLeft": "Adicionar borda esquerda", "PE.Views.DocumentHolder.txtAddLT": "Adicionar linha superior esquerda", "PE.Views.DocumentHolder.txtAddRight": "Adicionar borda direita", - "PE.Views.DocumentHolder.txtAddTop": "Adicionar borda superior", + "PE.Views.DocumentHolder.txtAddTop": "Adicionar contorno superior", "PE.Views.DocumentHolder.txtAddVer": "Adicionar linha vertical", "PE.Views.DocumentHolder.txtAlign": "Alinhar", "PE.Views.DocumentHolder.txtAlignToChar": "Alinhar ao caractere", "PE.Views.DocumentHolder.txtArrange": "Dispor", "PE.Views.DocumentHolder.txtBackground": "Plano de fundo", "PE.Views.DocumentHolder.txtBorderProps": "Propriedades de borda", - "PE.Views.DocumentHolder.txtBottom": "Inferior", + "PE.Views.DocumentHolder.txtBottom": "Baixo", "PE.Views.DocumentHolder.txtChangeLayout": "Alterar disposição", "PE.Views.DocumentHolder.txtChangeTheme": "Alterar tema", "PE.Views.DocumentHolder.txtColumnAlign": "Alinhamento de colunas", @@ -1462,7 +1504,7 @@ "PE.Views.DocumentHolder.txtGroup": "Grupo", "PE.Views.DocumentHolder.txtGroupCharOver": "Caractere sobre texto", "PE.Views.DocumentHolder.txtGroupCharUnder": "Caractere sob texto", - "PE.Views.DocumentHolder.txtHideBottom": "Ocultar borda inferior", + "PE.Views.DocumentHolder.txtHideBottom": "Ocultar contorno inferior", "PE.Views.DocumentHolder.txtHideBottomLimit": "Ocultar limite inferior", "PE.Views.DocumentHolder.txtHideCloseBracket": "Ocultar colchete de fechamento", "PE.Views.DocumentHolder.txtHideDegree": "Ocultar grau", @@ -1473,7 +1515,7 @@ "PE.Views.DocumentHolder.txtHideOpenBracket": "Ocultar colchete de abertura", "PE.Views.DocumentHolder.txtHidePlaceholder": "Ocultar espaço reservado", "PE.Views.DocumentHolder.txtHideRight": "Ocultar borda direita", - "PE.Views.DocumentHolder.txtHideTop": "Ocultar borda superior", + "PE.Views.DocumentHolder.txtHideTop": "Ocultar contorno superior", "PE.Views.DocumentHolder.txtHideTopLimit": "Ocultar limite superior", "PE.Views.DocumentHolder.txtHideVer": "Ocultar linha vertical", "PE.Views.DocumentHolder.txtIncreaseArg": "Aumentar tamanho do argumento", @@ -1514,11 +1556,11 @@ "PE.Views.DocumentHolder.txtShowDegree": "Exibir grau", "PE.Views.DocumentHolder.txtShowOpenBracket": "Exibir colchetes de abertura", "PE.Views.DocumentHolder.txtShowPlaceholder": "Exibir espaço reservado", - "PE.Views.DocumentHolder.txtShowTopLimit": "Exibir limite superior", + "PE.Views.DocumentHolder.txtShowTopLimit": "Mostrar limite superior", "PE.Views.DocumentHolder.txtSlide": "Diapositivo", "PE.Views.DocumentHolder.txtSlideHide": "Ocultar diapositivo", "PE.Views.DocumentHolder.txtStretchBrackets": "Esticar colchetes", - "PE.Views.DocumentHolder.txtTop": "Parte superior", + "PE.Views.DocumentHolder.txtTop": "Cima", "PE.Views.DocumentHolder.txtUnderbar": "Barra abaixo de texto", "PE.Views.DocumentHolder.txtUngroup": "Desagrupar", "PE.Views.DocumentHolder.txtWarnUrl": "Clicar nesta ligação pode ser prejudicial ao seu dispositivo e dados.
Deseja continuar?", @@ -1549,7 +1591,7 @@ "PE.Views.FileMenu.btnPrintCaption": "Imprimir", "PE.Views.FileMenu.btnProtectCaption": "Proteger", "PE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", - "PE.Views.FileMenu.btnRenameCaption": "Renomear...", + "PE.Views.FileMenu.btnRenameCaption": "Mudar nome...", "PE.Views.FileMenu.btnReturnCaption": "Voltar para a apresentação", "PE.Views.FileMenu.btnRightsCaption": "Direitos de Acesso...", "PE.Views.FileMenu.btnSaveAsCaption": "Save as", @@ -1574,7 +1616,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", - "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Enviado", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", @@ -1592,6 +1634,8 @@ "PE.Views.FileMenuPanels.Settings.strFast": "Rápido", "PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de tipo de letra", "PE.Views.FileMenuPanels.Settings.strForcesave": "Adicionar versão ao armazenamento após clicar em Guardar ou Ctrl+S", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras em MAÍSCULAS", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorar palavras com números", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros", "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", @@ -1613,8 +1657,12 @@ "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opções de correção automática...", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de cache padrão", "PE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", + "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Colaboração", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editar e Guardar", + "PE.Views.FileMenuPanels.Settings.txtFastTip": "Co-edição em tempo real. Todas as alterações são guardadas automaticamente", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajustar ao diapositivo", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar à Largura", + "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglifos", "PE.Views.FileMenuPanels.Settings.txtInch": "Polegada", "PE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", "PE.Views.FileMenuPanels.Settings.txtLast": "Ver último", @@ -1627,9 +1675,13 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificação ortográfica", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Desativar tudo", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desativar todas as macros sem uma notificação", + "PE.Views.FileMenuPanels.Settings.txtStrictTip": "Utilize o botão \"Guardar\" para sincronizar as alterações efetuadas", + "PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Utilize a tecla 'Alt' para navegar na interface através do teclado", + "PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Utilize a tecla 'Opção' para navegar na interface através do teclado", "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "PE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de trabalho", "PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todos", "PE.Views.HeaderFooterDialog.applyText": "Aplicar", "PE.Views.HeaderFooterDialog.diffLanguage": "Não pode utilizar um formato de data que seja diferente do formato utilizado no modelo global.
Para alterar o modelo global, clique \"Aplicar a todos\" em vez de \"Aplicar\".", @@ -1692,8 +1744,11 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Título", "PE.Views.ImageSettingsAdvanced.textAngle": "Ângulo", + "PE.Views.ImageSettingsAdvanced.textCenter": "Centro", "PE.Views.ImageSettingsAdvanced.textFlipped": "Invertido", + "PE.Views.ImageSettingsAdvanced.textFrom": "De", "PE.Views.ImageSettingsAdvanced.textHeight": "Altura", + "PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporções constantes", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamanho real", @@ -1702,6 +1757,8 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "Rotação", "PE.Views.ImageSettingsAdvanced.textSize": "Tamanho", "PE.Views.ImageSettingsAdvanced.textTitle": "Imagem - Definições avançadas", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Canto superior esquerdo", + "PE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", "PE.Views.ImageSettingsAdvanced.textWidth": "Largura", "PE.Views.LeftMenu.tipAbout": "Sobre", @@ -1713,6 +1770,7 @@ "PE.Views.LeftMenu.tipSupport": "Feedback e Suporte", "PE.Views.LeftMenu.tipTitles": "Títulos", "PE.Views.LeftMenu.txtDeveloper": "MODO DE DESENVOLVEDOR", + "PE.Views.LeftMenu.txtEditor": "Editor de apresentações", "PE.Views.LeftMenu.txtLimit": "Limitar o acesso", "PE.Views.LeftMenu.txtTrial": "MODO DE TESTE", "PE.Views.LeftMenu.txtTrialDev": "Versão de Avaliação do Modo de Programador", @@ -1839,14 +1897,17 @@ "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamanho inicial", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", "PE.Views.ShapeSettingsAdvanced.textBevel": "Bisel", - "PE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", + "PE.Views.ShapeSettingsAdvanced.textBottom": "Baixo", "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipo de letra", + "PE.Views.ShapeSettingsAdvanced.textCenter": "Centro", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Número de colunas", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Tamanho final", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Estilo final", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plano", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Invertido", + "PE.Views.ShapeSettingsAdvanced.textFrom": "De", "PE.Views.ShapeSettingsAdvanced.textHeight": "Altura", + "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontal", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalmente", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Tipo de junção", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporções constantes", @@ -1854,6 +1915,8 @@ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Estilo de linha", "PE.Views.ShapeSettingsAdvanced.textMiter": "Malhete", "PE.Views.ShapeSettingsAdvanced.textNofit": "Não ajustar automaticamente.", + "PE.Views.ShapeSettingsAdvanced.textPlacement": "Posicionamento", + "PE.Views.ShapeSettingsAdvanced.textPosition": "Posição", "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Redimensionar forma para se ajustar ao texto", "PE.Views.ShapeSettingsAdvanced.textRight": "Direita", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotação", @@ -1864,7 +1927,9 @@ "PE.Views.ShapeSettingsAdvanced.textSquare": "Quadrado", "PE.Views.ShapeSettingsAdvanced.textTextBox": "Caixa de texto", "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Definições avançadas", - "PE.Views.ShapeSettingsAdvanced.textTop": "Parte superior", + "PE.Views.ShapeSettingsAdvanced.textTop": "Cima", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Canto superior esquerdo", + "PE.Views.ShapeSettingsAdvanced.textVertical": "Vertical", "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Pesos e Setas", "PE.Views.ShapeSettingsAdvanced.textWidth": "Largura", @@ -1927,8 +1992,8 @@ "PE.Views.SlideSettings.txtWood": "Madeira", "PE.Views.SlideshowSettings.textLoop": "Loop contínuo até \"Esc\" ser pressionado", "PE.Views.SlideshowSettings.textTitle": "Mostrar definições", - "PE.Views.SlideSizeSettings.strLandscape": "Paisagem", - "PE.Views.SlideSizeSettings.strPortrait": "Retrato", + "PE.Views.SlideSizeSettings.strLandscape": "Horizontal", + "PE.Views.SlideSizeSettings.strPortrait": "Vertical", "PE.Views.SlideSizeSettings.textHeight": "Altura", "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientação do diapositivo", "PE.Views.SlideSizeSettings.textSlideSize": "Tamanho do diapositivo", @@ -1994,16 +2059,16 @@ "PE.Views.TableSettings.textTemplate": "Selecionar de um modelo", "PE.Views.TableSettings.textTotal": "Total", "PE.Views.TableSettings.textWidth": "Largura", - "PE.Views.TableSettings.tipAll": "Definir borda externa e todas as linhas internas", - "PE.Views.TableSettings.tipBottom": "Definir apenas borda inferior externa", + "PE.Views.TableSettings.tipAll": "Definir contorno externo e todas as linhas internas", + "PE.Views.TableSettings.tipBottom": "Definir apenas contorno inferior externo", "PE.Views.TableSettings.tipInner": "Definir apenas linhas internas", "PE.Views.TableSettings.tipInnerHor": "Definir apenas linhas internas horizontais", "PE.Views.TableSettings.tipInnerVert": "Definir apenas linhas internas verticais", - "PE.Views.TableSettings.tipLeft": "Definir apenas borda esquerda externa", + "PE.Views.TableSettings.tipLeft": "Definir apenas contorno esquerdo externo", "PE.Views.TableSettings.tipNone": "Definir sem bordas", - "PE.Views.TableSettings.tipOuter": "Definir apenas borda externa", - "PE.Views.TableSettings.tipRight": "Definir apenas borda direita externa", - "PE.Views.TableSettings.tipTop": "Definir apenas borda superior externa", + "PE.Views.TableSettings.tipOuter": "Definir apenas contorno externo", + "PE.Views.TableSettings.tipRight": "Definir apenas contorno direito externo", + "PE.Views.TableSettings.tipTop": "Definir apenas contorno superior externo", "PE.Views.TableSettings.txtNoBorders": "Sem bordas", "PE.Views.TableSettings.txtTable_Accent": "Sotaque", "PE.Views.TableSettings.txtTable_DarkStyle": "Estilo escuro", @@ -2017,14 +2082,25 @@ "PE.Views.TableSettingsAdvanced.textAltDescription": "Descrição", "PE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Título", - "PE.Views.TableSettingsAdvanced.textBottom": "Inferior", + "PE.Views.TableSettingsAdvanced.textBottom": "Baixo", + "PE.Views.TableSettingsAdvanced.textCenter": "Centro", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Usar margens padrão", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margens padrão", + "PE.Views.TableSettingsAdvanced.textFrom": "De", + "PE.Views.TableSettingsAdvanced.textHeight": "Altura", + "PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", + "PE.Views.TableSettingsAdvanced.textKeepRatio": "Proporções constantes", "PE.Views.TableSettingsAdvanced.textLeft": "Esquerda", "PE.Views.TableSettingsAdvanced.textMargins": "Margens da célula", + "PE.Views.TableSettingsAdvanced.textPlacement": "Posicionamento", + "PE.Views.TableSettingsAdvanced.textPosition": "Posição", "PE.Views.TableSettingsAdvanced.textRight": "Direita", + "PE.Views.TableSettingsAdvanced.textSize": "Tamanho", "PE.Views.TableSettingsAdvanced.textTitle": "Tabela - Definições avançadas", - "PE.Views.TableSettingsAdvanced.textTop": "Parte superior", + "PE.Views.TableSettingsAdvanced.textTop": "Cima", + "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Canto superior esquerdo", + "PE.Views.TableSettingsAdvanced.textVertical": "Vertical", + "PE.Views.TableSettingsAdvanced.textWidth": "Largura", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margens", "PE.Views.TextArtSettings.strBackground": "Cor de fundo", "PE.Views.TextArtSettings.strColor": "Cor", @@ -2123,12 +2199,12 @@ "PE.Views.Toolbar.textItalic": "Itálico", "PE.Views.Toolbar.textListSettings": "Definições da lista", "PE.Views.Toolbar.textRecentlyUsed": "Utilizado recentemente", - "PE.Views.Toolbar.textShapeAlignBottom": "Alinhar à parte inferior", + "PE.Views.Toolbar.textShapeAlignBottom": "Alinhar em baixo", "PE.Views.Toolbar.textShapeAlignCenter": "Alinhar ao centro", "PE.Views.Toolbar.textShapeAlignLeft": "Alinhar à esquerda", "PE.Views.Toolbar.textShapeAlignMiddle": "Alinhar ao meio", "PE.Views.Toolbar.textShapeAlignRight": "Alinhar à direita", - "PE.Views.Toolbar.textShapeAlignTop": "Alinhar à parte superior", + "PE.Views.Toolbar.textShapeAlignTop": "Alinhar em cima", "PE.Views.Toolbar.textShowBegin": "Mostrar do início", "PE.Views.Toolbar.textShowCurrent": "Mostrar a partir do diapositivo atual", "PE.Views.Toolbar.textShowPresenterView": "Mostrar vista de apresentador", @@ -2237,9 +2313,9 @@ "PE.Views.Transitions.strDuration": "Duração", "PE.Views.Transitions.strStartOnClick": "Iniciar ao clicar", "PE.Views.Transitions.textBlack": "Através preto", - "PE.Views.Transitions.textBottom": "Inferior", - "PE.Views.Transitions.textBottomLeft": "Inferior esquerdo", - "PE.Views.Transitions.textBottomRight": "Inferior direito", + "PE.Views.Transitions.textBottom": "Baixo", + "PE.Views.Transitions.textBottomLeft": "Esquerda inferior", + "PE.Views.Transitions.textBottomRight": "Direita inferior", "PE.Views.Transitions.textClock": "Relógio", "PE.Views.Transitions.textClockwise": "Sentido horário", "PE.Views.Transitions.textCounterclockwise": "Sentido anti-horário", @@ -2253,9 +2329,9 @@ "PE.Views.Transitions.textRight": "Direita", "PE.Views.Transitions.textSmoothly": "Suavemente", "PE.Views.Transitions.textSplit": "Dividir", - "PE.Views.Transitions.textTop": "Parte superior", - "PE.Views.Transitions.textTopLeft": "Parte superior esquerda", - "PE.Views.Transitions.textTopRight": "Parte superior direita", + "PE.Views.Transitions.textTop": "Cima", + "PE.Views.Transitions.textTopLeft": "Superior esquerda", + "PE.Views.Transitions.textTopRight": "Superior direita", "PE.Views.Transitions.textUnCover": "Descobrir", "PE.Views.Transitions.textVerticalIn": "Vertical para dentro", "PE.Views.Transitions.textVerticalOut": "Vertical para fora", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 4f1dd30f3..fd0335122 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -5,6 +5,10 @@ "Common.Controllers.ExternalDiagramEditor.textClose": "Închidere", "Common.Controllers.ExternalDiagramEditor.warningText": "Obiectul este dezactivat deoarece este editat de către un alt utilizator.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Avertisment", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonim", + "Common.Controllers.ExternalOleEditor.textClose": "Închide", + "Common.Controllers.ExternalOleEditor.warningText": "Obiectul este dezactivat deoarece este editat de către un alt utilizator.", + "Common.Controllers.ExternalOleEditor.warningTitle": "Avertisment", "Common.define.chartData.textArea": "Zona", "Common.define.chartData.textAreaStacked": "Arie stivuită", "Common.define.chartData.textAreaStackedPer": "Arie stivuită 100%", @@ -369,6 +373,9 @@ "Common.Views.ExternalDiagramEditor.textClose": "Închidere", "Common.Views.ExternalDiagramEditor.textSave": "Salvare și ieșire", "Common.Views.ExternalDiagramEditor.textTitle": "Editor diagramă", + "Common.Views.ExternalOleEditor.textClose": "Închide", + "Common.Views.ExternalOleEditor.textSave": "Salvare și ieșire", + "Common.Views.ExternalOleEditor.textTitle": "Editor de foi de calcul", "Common.Views.Header.labelCoUsersDescr": "Fișierul este editat de către:", "Common.Views.Header.textAddFavorite": "Marcare ca preferat", "Common.Views.Header.textAdvSettings": "Setări avansate", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index ff4ecf820..060f6c7bf 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -5,6 +5,10 @@ "Common.Controllers.ExternalDiagramEditor.textClose": "Закрыть", "Common.Controllers.ExternalDiagramEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Предупреждение", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Аноним", + "Common.Controllers.ExternalOleEditor.textClose": "Закрыть", + "Common.Controllers.ExternalOleEditor.warningText": "Объект недоступен, так как редактируется другим пользователем.", + "Common.Controllers.ExternalOleEditor.warningTitle": "Внимание", "Common.define.chartData.textArea": "С областями", "Common.define.chartData.textAreaStacked": "Диаграмма с областями с накоплением", "Common.define.chartData.textAreaStackedPer": "Нормированная с областями и накоплением", @@ -369,6 +373,9 @@ "Common.Views.ExternalDiagramEditor.textClose": "Закрыть", "Common.Views.ExternalDiagramEditor.textSave": "Сохранить и выйти", "Common.Views.ExternalDiagramEditor.textTitle": "Редактор диаграмм", + "Common.Views.ExternalOleEditor.textClose": "Закрыть", + "Common.Views.ExternalOleEditor.textSave": "Сохранить и выйти", + "Common.Views.ExternalOleEditor.textTitle": "Редактор таблиц", "Common.Views.Header.labelCoUsersDescr": "Пользователи, редактирующие документ:", "Common.Views.Header.textAddFavorite": "Добавить в избранное", "Common.Views.Header.textAdvSettings": "Дополнительные параметры", diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 0dff83719..702c11e7c 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Aşağı Yay", "Common.define.effectData.textArcLeft": "Sol Yay", "Common.define.effectData.textArcRight": "Sağ Yay", + "Common.define.effectData.textArcs": "yaylar", "Common.define.effectData.textArcUp": "Yukarı Yay", "Common.define.effectData.textBasic": "Temel", "Common.define.effectData.textBasicSwivel": "Temel Döner", @@ -130,8 +131,29 @@ "Common.define.effectData.textGrowTurn": "Büyüt ve Dön", "Common.define.effectData.textGrowWithColor": "Renkle Büyümek", "Common.define.effectData.textHeart": "Kalp", + "Common.define.effectData.textHeartbeat": "kalp atışı ", + "Common.define.effectData.textHexagon": "Altıgen ", + "Common.define.effectData.textHorizontal": "Yatay", + "Common.define.effectData.textHorizontalFigure": "Yatay Şekil 8 ", + "Common.define.effectData.textHorizontalIn": "Yatay Giriş ", + "Common.define.effectData.textHorizontalOut": "Yatay Dışarı ", + "Common.define.effectData.textIn": "içinde ", + "Common.define.effectData.textInFromScreenCenter": "Ekran Merkezinden ", + "Common.define.effectData.textInSlightly": "Hafifçe", + "Common.define.effectData.textInToScreenBottom": "Ekranın Altına ", + "Common.define.effectData.textInvertedSquare": "Ters Kare ", + "Common.define.effectData.textInvertedTriangle": "Ters üçgen ", + "Common.define.effectData.textLeft": "Sol", "Common.define.effectData.textLeftDown": "Sol Alt", "Common.define.effectData.textLeftUp": "Sol Üst", + "Common.define.effectData.textLighten": "hafifletmek ", + "Common.define.effectData.textLineColor": "Çizgi rengi ", + "Common.define.effectData.textLines": "Çizgiler ", + "Common.define.effectData.textLinesCurves": "Çizgiler Eğriler ", + "Common.define.effectData.textLoopDeLoop": "Döngüde Yürü ", + "Common.define.effectData.textLoops": "döngüler", + "Common.define.effectData.textModerate": "Orta ", + "Common.define.effectData.textPath": "Hareket yolları ", "Common.define.effectData.textPointStar4": "4 Köşeli Yıldız", "Common.define.effectData.textPointStar5": "5 Köşeli Yıldız", "Common.define.effectData.textPointStar6": "6 Köşeli Yıldız", @@ -150,6 +172,7 @@ "Common.define.effectData.textVertical": "Dikey", "Common.define.effectData.textZigzag": "Zikzak", "Common.define.effectData.textZoom": "Yakınlaştırma", + "Common.Translation.textMoreButton": "Daha fazla ", "Common.Translation.warnFileLocked": "Dosya başka bir uygulamada düzenleniyor. Düzenlemeye devam edebilir ve kopya olarak kaydedebilirsiniz.", "Common.Translation.warnFileLockedBtnEdit": "Kopya oluştur", "Common.Translation.warnFileLockedBtnView": "Görüntülemek için aç", @@ -166,6 +189,9 @@ "Common.UI.HSBColorPicker.textNoColor": "Renk yok", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Parolayı gizle", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Parolayı göster", + "Common.UI.SearchBar.textFind": "Bul ", + "Common.UI.SearchBar.tipCloseSearch": "Aramayı kapat", + "Common.UI.SearchBar.tipNextResult": "Sonraki sonuç", "Common.UI.SearchDialog.textHighlight": "Vurgu sonuçları", "Common.UI.SearchDialog.textMatchCase": "Büyük küçük harfe duyarlı", "Common.UI.SearchDialog.textReplaceDef": "Yerine geçecek metini giriniz", @@ -209,6 +235,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Otomatik madde listesi", "Common.Views.AutoCorrectDialog.textBy": "Tarafından", "Common.Views.AutoCorrectDialog.textDelete": "Sil", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "\nÇift boşluklu nokta ekle", "Common.Views.AutoCorrectDialog.textFLCells": "Tablo hücrelerinin ilk harfini büyük harf yap", "Common.Views.AutoCorrectDialog.textFLSentence": "Cümlelerin ilk harfini büyük yaz", "Common.Views.AutoCorrectDialog.textHyperlink": "Köprülü internet ve ağ yolları", @@ -341,6 +368,7 @@ "Common.Views.PluginDlg.textLoading": "Yükleniyor", "Common.Views.Plugins.groupCaption": "Eklentiler", "Common.Views.Plugins.strPlugins": "Eklentiler", + "Common.Views.Plugins.textClosePanel": "Eklentiyi kapat", "Common.Views.Plugins.textLoading": "Yükleniyor", "Common.Views.Plugins.textStart": "Başlat", "Common.Views.Plugins.textStop": "Durdur", @@ -424,6 +452,14 @@ "Common.Views.ReviewPopover.txtEditTip": "Düzenle", "Common.Views.SaveAsDlg.textLoading": "Yükleniyor", "Common.Views.SaveAsDlg.textTitle": "Kaydetmek için klasör", + "Common.Views.SearchPanel.textCaseSensitive": "Büyük küçük harfe duyarlı ", + "Common.Views.SearchPanel.textCloseSearch": "Aramayı kapat ", + "Common.Views.SearchPanel.textFind": "Bul", + "Common.Views.SearchPanel.textFindAndReplace": "Bul ve Değiştir", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Normal ifadeler kullanarak eşleştir ", + "Common.Views.SearchPanel.textNoMatches": "Eşleşme yok", + "Common.Views.SearchPanel.textNoSearchResults": "Arama sonucu bulunamadı", + "Common.Views.SearchPanel.tipNextResult": "Sonraki sonuç ", "Common.Views.SelectFileDlg.textLoading": "Yükleniyor", "Common.Views.SelectFileDlg.textTitle": "Veri Kaynağını Seçin", "Common.Views.SignDialog.textBold": "Kalın", @@ -581,6 +617,7 @@ "PE.Controllers.Main.textRemember": "Seçimimi tüm dosyalar için hatırla", "PE.Controllers.Main.textRenameError": "Kullanıcı adı boş bırakılmamalıdır.", "PE.Controllers.Main.textRenameLabel": "İşbirliği için kullanılacak bir ad girin", + "PE.Controllers.Main.textRequestMacros": "\nBir makro, URL'ye istekte bulunur. %1 isteğine izin vermek istiyor musunuz? ", "PE.Controllers.Main.textShape": "Şekil", "PE.Controllers.Main.textStrict": "Strict mode", "PE.Controllers.Main.textTryUndoRedo": "Geri al/Yinele fonksiyonları hızlı ortak çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı ortak düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayabilirsiniz. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", @@ -859,6 +896,7 @@ "PE.Controllers.Main.warnNoLicense": "Düzenleyiciler %1 eşzamanlı bağlantı sınırına ulaştı. Bu belge yalnızca görüntüleme için açılacaktır.
Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "PE.Controllers.Main.warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "PE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", + "PE.Controllers.Search.warnReplaceString": "\n{0}, Şununla Değiştir kutusu için geçerli bir özel karakter değil. ", "PE.Controllers.Statusbar.textDisconnect": "Bağlantı kesildi
Bağlanmayı deneyin. Lütfen bağlantı ayarlarını kontrol edin.", "PE.Controllers.Statusbar.zoomText": "Büyütme {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Kaydedeceğiniz yazı tipi kullandığınız cihazda mevcut değil.
Yazı tipi, şimdilik cihazınızda bulunan yazı tiplerinden biri ile gösterilecektir, tercih ettiğiniz yazı tipi cihaza yüklendiğinde kullanılacaktır.
Devam etmek istiyor musunuz?", @@ -1196,13 +1234,23 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Slayta sığdır", "PE.Controllers.Viewport.textFitWidth": "Genişliğe Sığdır", + "PE.Views.Animation.str0_5": "0,5 sn (Çok Hızlı) ", + "PE.Views.Animation.str1": "1 sn (Hızlı) ", + "PE.Views.Animation.str2": "2 sn (Orta) ", + "PE.Views.Animation.str20": "20 sn (Son derece Yavaş) ", + "PE.Views.Animation.str3": "3 sn (Yavaş) ", + "PE.Views.Animation.str5": "5 sn (Çok Yavaş) ", "PE.Views.Animation.strDelay": "Geciktir", "PE.Views.Animation.strDuration": "Süre", "PE.Views.Animation.strRepeat": "Tekrar", + "PE.Views.Animation.textAutoPreview": "Otomatik önizleme ", + "PE.Views.Animation.textMultiple": "Çoklu", + "PE.Views.Animation.textNone": "hiçbiri", "PE.Views.Animation.textNoRepeat": "(hiçbiri)", "PE.Views.Animation.textStartAfterPrevious": "Öncekinden Sonra", "PE.Views.Animation.txtAddEffect": "Animasyon ekle", "PE.Views.Animation.txtAnimationPane": "Animasyon Bölmesi", + "PE.Views.AnimationDialog.textTitle": "Daha Fazla Efekt ", "PE.Views.ChartSettings.textAdvanced": "Gelişmiş Ayarları Göster", "PE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir", "PE.Views.ChartSettings.textEditData": "Veri düzenle", @@ -1215,6 +1263,11 @@ "PE.Views.ChartSettingsAdvanced.textAltDescription": "Açıklama", "PE.Views.ChartSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, otomatik şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Başlık", + "PE.Views.ChartSettingsAdvanced.textCenter": "Orta ", + "PE.Views.ChartSettingsAdvanced.textFrom": "İtibaren", + "PE.Views.ChartSettingsAdvanced.textHeight": "Yükseklik ", + "PE.Views.ChartSettingsAdvanced.textHorizontal": "Yatay", + "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Sabit Orantılar", "PE.Views.ChartSettingsAdvanced.textTitle": "Grafik - Gelişmiş Ayarlar", "PE.Views.DateTimeDialog.confirmDefault": "{0} için varsayılan formatı \"{1}\" olarak ata", "PE.Views.DateTimeDialog.textDefault": "Varsayılan olarak ata", @@ -1469,6 +1522,8 @@ "PE.Views.FileMenuPanels.Settings.strFast": "Hızlı", "PE.Views.FileMenuPanels.Settings.strFontRender": "Yazı Tipi İpucu", "PE.Views.FileMenuPanels.Settings.strForcesave": "Kaydet veya Ctrl+S'ye tıkladıktan sonra sürümü depolamaya ekleyin", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "BÜYÜK HARF içindeki kelimeleri yoksay ", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Sayılarla kelimeleri yoksay ", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makro Ayarları", "PE.Views.FileMenuPanels.Settings.strPaste": "Kes, kopyala ve yapıştır", "PE.Views.FileMenuPanels.Settings.strPasteButton": "İçerik yapıştırıldığında Yapıştırma Seçenekleri düğmesini göster", @@ -1490,8 +1545,11 @@ "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Otomatik Düzeltme seçenekleri", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Varsayılan önbellek modu", "PE.Views.FileMenuPanels.Settings.txtCm": "Santimetre", + "PE.Views.FileMenuPanels.Settings.txtCollaboration": "İşbirliği ", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "\nDüzenleme ve kaydetme", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Slayta sığdır", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Genişliğe Sığdır", + "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "hiyeroglifler", "PE.Views.FileMenuPanels.Settings.txtInch": "İnç", "PE.Views.FileMenuPanels.Settings.txtInput": "Girdiyi Değiştir", "PE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", @@ -1569,8 +1627,11 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, otomatik şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Başlık", "PE.Views.ImageSettingsAdvanced.textAngle": "Açı", + "PE.Views.ImageSettingsAdvanced.textCenter": "Orta", "PE.Views.ImageSettingsAdvanced.textFlipped": "Çevrilmiş", + "PE.Views.ImageSettingsAdvanced.textFrom": "İtibaren", "PE.Views.ImageSettingsAdvanced.textHeight": "Yükseklik", + "PE.Views.ImageSettingsAdvanced.textHorizontal": "Yatay ", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Yatay", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Sabit Orantılar", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Gerçek Boyut", @@ -1718,12 +1779,15 @@ "PE.Views.ShapeSettingsAdvanced.textBevel": "Eğimli", "PE.Views.ShapeSettingsAdvanced.textBottom": "Alt", "PE.Views.ShapeSettingsAdvanced.textCapType": "Başlık Tipi", + "PE.Views.ShapeSettingsAdvanced.textCenter": "Orta", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Sütun Sayısı", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Bitiş Boyutu", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Bitiş Stili", "PE.Views.ShapeSettingsAdvanced.textFlat": "Düz", "PE.Views.ShapeSettingsAdvanced.textFlipped": "Çevrilmiş", + "PE.Views.ShapeSettingsAdvanced.textFrom": "İtibaren", "PE.Views.ShapeSettingsAdvanced.textHeight": "Yükseklik", + "PE.Views.ShapeSettingsAdvanced.textHorizontal": "Yatay ", "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Yatay", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Katılım Tipi", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Sabit Orantılar", @@ -1895,8 +1959,13 @@ "PE.Views.TableSettingsAdvanced.textAltTip": "Görsel nesne bilgisinin, görsel, otomatik şekil, çizelge veya tabloda hangi bilgilerin olduğunu daha iyi anlamalarına yardımcı olmak için görme veya bilişsel bozukluğu olan kişilere okunacak alternatif metin tabanlı temsili.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Başlık", "PE.Views.TableSettingsAdvanced.textBottom": "Alt", + "PE.Views.TableSettingsAdvanced.textCenter": "Orta", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Varsayılan kenar boşluklarını kullan", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Varsayılan Kenar Boşlukları", + "PE.Views.TableSettingsAdvanced.textFrom": "İtibaren", + "PE.Views.TableSettingsAdvanced.textHeight": "Yükseklik", + "PE.Views.TableSettingsAdvanced.textHorizontal": "Yatay ", + "PE.Views.TableSettingsAdvanced.textKeepRatio": "Sabit Orantılar ", "PE.Views.TableSettingsAdvanced.textLeft": "Sol", "PE.Views.TableSettingsAdvanced.textMargins": "Hücre Kenar Boşluğu", "PE.Views.TableSettingsAdvanced.textRight": "Sağ", @@ -1972,6 +2041,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Dosyadan resim", "PE.Views.Toolbar.mniImageFromStorage": "Depolamadan Resim", "PE.Views.Toolbar.mniImageFromUrl": "URL'den resim", + "PE.Views.Toolbar.mniInsertSSE": "E-tablo Ekle", "PE.Views.Toolbar.mniLowerCase": "küçük harf", "PE.Views.Toolbar.mniSentenceCase": "Cümle durumu.", "PE.Views.Toolbar.mniSlideAdvanced": "Gelişmiş Ayarlar", @@ -2063,6 +2133,7 @@ "PE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", "PE.Views.Toolbar.tipMarkersHRound": "İçi boş daire işaretler", "PE.Views.Toolbar.tipMarkersStar": "Yıldız işaretleri", + "PE.Views.Toolbar.tipNone": "hiçbiri", "PE.Views.Toolbar.tipNumbers": "Numaralandırma", "PE.Views.Toolbar.tipPaste": "Yapıştır", "PE.Views.Toolbar.tipPreview": "Önizlemeye Başla", @@ -2146,5 +2217,7 @@ "PE.Views.ViewTab.textAlwaysShowToolbar": "Her zaman araç çubuğunu göster", "PE.Views.ViewTab.textFitToSlide": "Slayda Sığdır", "PE.Views.ViewTab.textFitToWidth": "Genişliğe Sığdır", + "PE.Views.ViewTab.textInterfaceTheme": "Arayüz teması ", + "PE.Views.ViewTab.textNotes": "notlar", "PE.Views.ViewTab.textZoom": "Yakınlaştırma" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index cc80642cd..9803f5e3e 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -446,6 +446,7 @@ "Common.Views.PluginDlg.textLoading": "载入中", "Common.Views.Plugins.groupCaption": "插件", "Common.Views.Plugins.strPlugins": "插件", + "Common.Views.Plugins.textClosePanel": "关闭插件", "Common.Views.Plugins.textLoading": "载入中", "Common.Views.Plugins.textStart": "开始", "Common.Views.Plugins.textStop": "停止", diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index 4e0d82322..63db3c87f 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -35,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", "SSE.ApplicationView.txtFullScreen": "Pantalla completa", "SSE.ApplicationView.txtPrint": "Imprimeix", + "SSE.ApplicationView.txtSearch": "Cerca", "SSE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/cs.json b/apps/spreadsheeteditor/embed/locale/cs.json index d79fe83e9..8c0aa04d1 100644 --- a/apps/spreadsheeteditor/embed/locale/cs.json +++ b/apps/spreadsheeteditor/embed/locale/cs.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Výška", "common.view.modals.txtShare": "Odkaz pro sdílení", "common.view.modals.txtWidth": "Šířka", + "common.view.SearchBar.textFind": "Najít", "SSE.ApplicationController.convertationErrorText": "Převod se nezdařil.", "SSE.ApplicationController.convertationTimeoutText": "Překročen časový limit pro provedení převodu.", "SSE.ApplicationController.criticalErrorTitle": "Chyba", @@ -34,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Otevřít umístění souboru", "SSE.ApplicationView.txtFullScreen": "Na celou obrazovku", "SSE.ApplicationView.txtPrint": "Tisk", + "SSE.ApplicationView.txtSearch": "Hledat", "SSE.ApplicationView.txtShare": "Sdílet" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/es.json b/apps/spreadsheeteditor/embed/locale/es.json index 775c9c64e..cbb5a46ae 100644 --- a/apps/spreadsheeteditor/embed/locale/es.json +++ b/apps/spreadsheeteditor/embed/locale/es.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Altura", "common.view.modals.txtShare": "Compartir enlace", "common.view.modals.txtWidth": "Ancho", + "common.view.SearchBar.textFind": "Buscar", "SSE.ApplicationController.convertationErrorText": "Se ha producido un error en la conversión.", "SSE.ApplicationController.convertationTimeoutText": "Se ha superado el tiempo de conversión.", "SSE.ApplicationController.criticalErrorTitle": "Error", @@ -34,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Abrir ubicación del archivo", "SSE.ApplicationView.txtFullScreen": "Pantalla completa", "SSE.ApplicationView.txtPrint": "Imprimir", + "SSE.ApplicationView.txtSearch": "Búsqueda", "SSE.ApplicationView.txtShare": "Compartir" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/fr.json b/apps/spreadsheeteditor/embed/locale/fr.json index d003a344a..721176c1d 100644 --- a/apps/spreadsheeteditor/embed/locale/fr.json +++ b/apps/spreadsheeteditor/embed/locale/fr.json @@ -35,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Ouvrir l'emplacement du fichier", "SSE.ApplicationView.txtFullScreen": "Plein écran", "SSE.ApplicationView.txtPrint": "Imprimer", + "SSE.ApplicationView.txtSearch": "Recherche", "SSE.ApplicationView.txtShare": "Partager" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/it.json b/apps/spreadsheeteditor/embed/locale/it.json index 93763b0e3..2155e9a86 100644 --- a/apps/spreadsheeteditor/embed/locale/it.json +++ b/apps/spreadsheeteditor/embed/locale/it.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Altezza", "common.view.modals.txtShare": "Condividi collegamento", "common.view.modals.txtWidth": "Larghezza", + "common.view.SearchBar.textFind": "Trova", "SSE.ApplicationController.convertationErrorText": "Conversione fallita.", "SSE.ApplicationController.convertationTimeoutText": "È stato superato il tempo limite della conversione.", "SSE.ApplicationController.criticalErrorTitle": "Errore", @@ -34,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Apri percorso file", "SSE.ApplicationView.txtFullScreen": "Schermo intero", "SSE.ApplicationView.txtPrint": "Stampa", + "SSE.ApplicationView.txtSearch": "Cerca", "SSE.ApplicationView.txtShare": "Condividi" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/pt-PT.json b/apps/spreadsheeteditor/embed/locale/pt-PT.json index f09e5b42f..e66aa85cb 100644 --- a/apps/spreadsheeteditor/embed/locale/pt-PT.json +++ b/apps/spreadsheeteditor/embed/locale/pt-PT.json @@ -13,10 +13,10 @@ "SSE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.
Contacte o administrador do servidor de documentos.", "SSE.ApplicationController.errorDefaultMessage": "Código de erro: %1", "SSE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.", - "SSE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", - "SSE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "SSE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite permitido pelo servidor.
Contacte o administrador do servidor de documentos para mais informações.", + "SSE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente mais tarde.", "SSE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", - "SSE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "SSE.ApplicationController.errorTokenExpire": "O 'token' de segurança do documento expirou.
Entre em contacto com o administrador do servidor de documentos.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e depois recarregue esta página.", "SSE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", @@ -33,7 +33,8 @@ "SSE.ApplicationView.txtDownload": "Descarregar", "SSE.ApplicationView.txtEmbed": "Incorporar", "SSE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", - "SSE.ApplicationView.txtFullScreen": "Ecrã inteiro", + "SSE.ApplicationView.txtFullScreen": "Ecrã completo", "SSE.ApplicationView.txtPrint": "Imprimir", + "SSE.ApplicationView.txtSearch": "Pesquisar", "SSE.ApplicationView.txtShare": "Partilhar" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/tr.json b/apps/spreadsheeteditor/embed/locale/tr.json index 72ff6c14c..41f132c99 100644 --- a/apps/spreadsheeteditor/embed/locale/tr.json +++ b/apps/spreadsheeteditor/embed/locale/tr.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Yükseklik", "common.view.modals.txtShare": "Bağlantıyı Paylaş", "common.view.modals.txtWidth": "Genişlik", + "common.view.SearchBar.textFind": "Bul", "SSE.ApplicationController.convertationErrorText": "Değişim başarısız oldu.", "SSE.ApplicationController.convertationTimeoutText": "Değişim süresi aşıldı.", "SSE.ApplicationController.criticalErrorTitle": "Hata", @@ -34,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Dosya konumunu aç", "SSE.ApplicationView.txtFullScreen": "Tam Ekran", "SSE.ApplicationView.txtPrint": "Yazdır", + "SSE.ApplicationView.txtSearch": "Arama", "SSE.ApplicationView.txtShare": "Paylaş" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index efa16c7e6..2e3b837de 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -301,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "S'està carregant", "Common.Views.Plugins.groupCaption": "Complements", "Common.Views.Plugins.strPlugins": "Complements", + "Common.Views.Plugins.textClosePanel": "Tanca el connector", "Common.Views.Plugins.textLoading": "S'està carregant", "Common.Views.Plugins.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 4df430224..770e0c6ee 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -116,6 +116,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Bez barvy", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobrazit heslo", + "Common.UI.SearchBar.textFind": "Najít", + "Common.UI.SearchBar.tipCloseSearch": "Zavřít hledání", + "Common.UI.SearchBar.tipNextResult": "Následující", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Otevřít pokročilé nastavení", + "Common.UI.SearchBar.tipPreviousResult": "Předchozí", "Common.UI.SearchDialog.textHighlight": "Zvýraznit výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovat malá a velká písmena", "Common.UI.SearchDialog.textReplaceDef": "Zadejte text, kterým nahradit", @@ -128,11 +133,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradit vše", "Common.UI.SynchronizeTip.textDontShow": "Tuto zprávu už nezobrazovat", "Common.UI.SynchronizeTip.textSynchronize": "Dokument byl mezitím změněn jiným uživatelem.
Kliknutím uložte změny provedené vámi a načtěte ty od ostatních.", + "Common.UI.ThemeColorPalette.textRecentColors": "Aktuální barvy", "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", "Common.UI.ThemeColorPalette.textThemeColors": "Barvy motivu vzhledu", "Common.UI.Themes.txtThemeClassicLight": "Standartní světlost", "Common.UI.Themes.txtThemeDark": "Tmavé", "Common.UI.Themes.txtThemeLight": "Světlé", + "Common.UI.Themes.txtThemeSystem": "Stejné jako systémové", "Common.UI.Window.cancelButtonText": "Storno", "Common.UI.Window.closeButtonText": "Zavřít", "Common.UI.Window.noButtonText": "Ne", @@ -225,6 +232,7 @@ "Common.Views.Header.textSaveChanged": "Změněno", "Common.Views.Header.textSaveEnd": "Všechny změny uloženy", "Common.Views.Header.textSaveExpander": "Všechny změny uloženy", + "Common.Views.Header.textShare": "Sdílet", "Common.Views.Header.textZoom": "Přiblížení", "Common.Views.Header.tipAccessRights": "Spravovat přístupová práva k dokumentům", "Common.Views.Header.tipDownload": "Stáhnout soubor", @@ -232,8 +240,10 @@ "Common.Views.Header.tipPrint": "Vytisknout soubor", "Common.Views.Header.tipRedo": "Znovu", "Common.Views.Header.tipSave": "Uložit", + "Common.Views.Header.tipSearch": "Hledat", "Common.Views.Header.tipUndo": "Zpět", "Common.Views.Header.tipUndock": "Oddělit do zvlášť okna", + "Common.Views.Header.tipUsers": "Zobrazit uživatele", "Common.Views.Header.tipViewSettings": "Zobrazit nastavení", "Common.Views.Header.tipViewUsers": "Zobrazte uživatele a spravujte přístupová práva k dokumentům", "Common.Views.Header.txtAccessRights": "Změnit přístupová práva", @@ -291,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "Načítá se", "Common.Views.Plugins.groupCaption": "Zásuvné moduly", "Common.Views.Plugins.strPlugins": "Zásuvné moduly", + "Common.Views.Plugins.textClosePanel": "Zavřít zásuvné moduly", "Common.Views.Plugins.textLoading": "Načítá se", "Common.Views.Plugins.textStart": "Začátek", "Common.Views.Plugins.textStop": "Stop", @@ -375,6 +386,38 @@ "Common.Views.ReviewPopover.txtEditTip": "Upravit", "Common.Views.SaveAsDlg.textLoading": "Načítá se", "Common.Views.SaveAsDlg.textTitle": "Složka do které uložit", + "Common.Views.SearchPanel.textByColumns": "Po sloupcích", + "Common.Views.SearchPanel.textByRows": "Po řádcích", + "Common.Views.SearchPanel.textCaseSensitive": "Rozlišovat malá a velká písmena", + "Common.Views.SearchPanel.textCell": "Buňka", + "Common.Views.SearchPanel.textCloseSearch": "Zavřít hledání", + "Common.Views.SearchPanel.textFind": "Najít", + "Common.Views.SearchPanel.textFindAndReplace": "Najít a nahradit", + "Common.Views.SearchPanel.textFormula": "Vzorec", + "Common.Views.SearchPanel.textFormulas": "Vzorce", + "Common.Views.SearchPanel.textItemEntireCell": "Celý obsah buňky", + "Common.Views.SearchPanel.textLookIn": "Hledat v", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Argument používá regulární výraz", + "Common.Views.SearchPanel.textName": "Jméno", + "Common.Views.SearchPanel.textNoMatches": "Shoda nebyla nalezena", + "Common.Views.SearchPanel.textNoSearchResults": "Žádné výsledky vyhledávání", + "Common.Views.SearchPanel.textReplace": "Nahradit", + "Common.Views.SearchPanel.textReplaceAll": "Nahradit vše", + "Common.Views.SearchPanel.textReplaceWith": "Nahradit pomocí", + "Common.Views.SearchPanel.textSearch": "Hledat", + "Common.Views.SearchPanel.textSearchOptions": "Možnosti hledání", + "Common.Views.SearchPanel.textSearchResults": "Výsledek hledání: {0}/{1}", + "Common.Views.SearchPanel.textSelectDataRange": "Vybrat rozsah dat", + "Common.Views.SearchPanel.textSheet": "List", + "Common.Views.SearchPanel.textSpecificRange": "Vlastní rozsah", + "Common.Views.SearchPanel.textTooManyResults": "Příliš mnoho výsledků pro zobrazení", + "Common.Views.SearchPanel.textValue": "Hodnota", + "Common.Views.SearchPanel.textValues": "Hodnoty", + "Common.Views.SearchPanel.textWholeWords": "Pouze celá slova", + "Common.Views.SearchPanel.textWithin": "V rámci", + "Common.Views.SearchPanel.textWorkbook": "Sešit", + "Common.Views.SearchPanel.tipNextResult": "Následující", + "Common.Views.SearchPanel.tipPreviousResult": "Předchozí", "Common.Views.SelectFileDlg.textLoading": "Načítá se", "Common.Views.SelectFileDlg.textTitle": "Vybrat zdroj dat", "Common.Views.SignDialog.textBold": "Tučné", @@ -668,8 +711,8 @@ "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Pokoušíte se smazat sloupec, který obsahuje uzamčenou buňku. Uzamčené buňky nemohou být smazány dokud list je zabezpečen.
Pro odstranění uzamčené buňky, vypněte zabezpečení listu. Může být vyžadováno zadání hesla.", "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Pokoušíte se smazat řádek, který obsahuje uzamčené buňky. Uzamčené buňky nemohou být smazány dokud je list zabezpečen.
Pro odstranění uzamčené buňky, vypněte zabezpečení listu. Může být vyžadováno zadání hesla.", - "SSE.Controllers.Main.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Stáhnout jako…“ a uložte si do souboru jako záložní kopii na svůj počítač.", - "SSE.Controllers.Main.errorEditingSaveas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Uložit jako…“ a uložte si do souboru jako záložní kopii na svůj počítač.", + "SSE.Controllers.Main.errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Stáhnout jako...“ a uložte si do souboru jako záložní kopii na svůj počítač.", + "SSE.Controllers.Main.errorEditingSaveas": "Při práci s dokumentem došlo k chybě.
Použijte volbu „Uložit jako...“ a uložte si do souboru jako záložní kopii na svůj počítač.", "SSE.Controllers.Main.errorEditView": "Během úpravy některého se zobrazení sešitů, není možné upravovat existující zobrazení sešitů a vytvářet nové.", "SSE.Controllers.Main.errorEmailClient": "Nenalezen žádný e-mailový klient.", "SSE.Controllers.Main.errorFilePassProtect": "Soubor je zabezpečen heslem, bez kterého ho nelze otevřít.", @@ -784,8 +827,10 @@ "SSE.Controllers.Main.textPleaseWait": "Operace může trvat déle, než se předpokládalo. Prosím čekejte…", "SSE.Controllers.Main.textReconnect": "Spojení je obnovené", "SSE.Controllers.Main.textRemember": "Zapamatovat si mou volbu pro všechny soubory", + "SSE.Controllers.Main.textRememberMacros": "Zapamatovat moji volbu pro všechna makra", "SSE.Controllers.Main.textRenameError": "Jméno uživatele nesmí být prázdné. ", "SSE.Controllers.Main.textRenameLabel": "Zadejte jméno, které bude použito pro spolupráci", + "SSE.Controllers.Main.textRequestMacros": "Makro vytváří požadavek na URL. Chcete povolit požadavek k přístupu na %1?", "SSE.Controllers.Main.textShape": "Obrazec", "SSE.Controllers.Main.textStrict": "Statický režim", "SSE.Controllers.Main.textTryUndoRedo": "Funkce zpět/znovu nejsou v režimu rychlé spolupráce na úpravách k dispozici.
Kliknutím na tlačítko „Striktní režim“ přejdete do striktního režimu spolupráce na úpravách, ve kterém soubor upravujte bez vyrušování ostatními uživateli a vámi provedené změny odesíláte pouze po jejich uložení. Mezi oběma režimy spolupráce na úpravách je možné přepínat v pokročilých nastaveních editoru.", @@ -1071,6 +1116,10 @@ "SSE.Controllers.Print.textWarning": "Varování", "SSE.Controllers.Print.txtCustom": "Uživatelsky určené", "SSE.Controllers.Print.warnCheckMargings": "Okraje nejsou správné", + "SSE.Controllers.Search.textInvalidRange": "CHYBA! Neplatný rozsah buněk", + "SSE.Controllers.Search.textNoTextFound": "Data, která jste hledali, nebyla nalezena. Upravte parametry vyhledávání.", + "SSE.Controllers.Search.textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", + "SSE.Controllers.Search.textReplaceSuccess": "Hledání bylo provedeno. Provedeno {0} nahrazení", "SSE.Controllers.Statusbar.errorLastSheet": "Sešit musí mít alespoň jeden viditelný list", "SSE.Controllers.Statusbar.errorRemoveSheet": "List se nedaří smazat.", "SSE.Controllers.Statusbar.strSheet": "List", @@ -1577,6 +1626,7 @@ "SSE.Views.ChartDataRangeDialog.txtValues": "Hodnoty", "SSE.Views.ChartDataRangeDialog.txtXValues": "Hodnoty na vodorovné ose", "SSE.Views.ChartDataRangeDialog.txtYValues": "Hodnoty na svislé ose", + "SSE.Views.ChartSettings.errorMaxRows": "Maximální počet datových řad na graf je 255.", "SSE.Views.ChartSettings.strLineWeight": "Tloušťka čáry", "SSE.Views.ChartSettings.strSparkColor": "Barva", "SSE.Views.ChartSettings.strTemplate": "Šablona", @@ -1598,6 +1648,7 @@ "SSE.Views.ChartSettings.textShow": "Zobrazit", "SSE.Views.ChartSettings.textSize": "Velikost", "SSE.Views.ChartSettings.textStyle": "Styl", + "SSE.Views.ChartSettings.textSwitch": "Pohodit Řádky/Sloupce", "SSE.Views.ChartSettings.textType": "Typ", "SSE.Views.ChartSettings.textWidth": "Šířka", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "CHYBA! Nejvyšší možný počet bodů za sebou v jednom grafu je 4096.", @@ -1615,6 +1666,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "Umístění osy", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Nastavení osy", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Nadpis", + "SSE.Views.ChartSettingsDlg.textBase": "funkce Base", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Mezi značkami zaškrtnutí", "SSE.Views.ChartSettingsDlg.textBillions": "Miliardy", "SSE.Views.ChartSettingsDlg.textBottom": "Dole", @@ -1663,6 +1715,7 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "Nahoře", "SSE.Views.ChartSettingsDlg.textLines": "Čáry", "SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umístění", + "SSE.Views.ChartSettingsDlg.textLogScale": "Logaritmické měřítko", "SSE.Views.ChartSettingsDlg.textLow": "Nízko", "SSE.Views.ChartSettingsDlg.textMajor": "Hlavní", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Hlavní a vedlejší", @@ -1854,7 +1907,9 @@ "SSE.Views.DocumentHolder.bottomCellText": "Zarovnat dolů", "SSE.Views.DocumentHolder.bulletsText": "Odrážky a číslování", "SSE.Views.DocumentHolder.centerCellText": "Zarovnat na střed", + "SSE.Views.DocumentHolder.chartDataText": "Vybrat data grafu", "SSE.Views.DocumentHolder.chartText": "Pokročilá nastavení grafu", + "SSE.Views.DocumentHolder.chartTypeText": "Změnit typ grafu", "SSE.Views.DocumentHolder.deleteColumnText": "Sloupec", "SSE.Views.DocumentHolder.deleteRowText": "Řádek", "SSE.Views.DocumentHolder.deleteTableText": "Tabulka", @@ -2066,16 +2121,22 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Použít", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Režim spolupráce na úpravách", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Oddělovač desetinných míst", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Jazyk slovníku", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Automatický", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Vyhlazování hran znaků", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Přidejte verzi do úložiště kliknutím na Uložit nebo Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Jazyk vzorce", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Příklad: SUMA; MIN; MAX; POČET", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignorovat slova psaná pouze VELKÝMI PÍSMENY", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignorovat slova obsahující čísla", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Nastavení maker", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Vyjmout, kopírovat, vložit", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Při vkládání obsahu zobrazit tlačítko možností vložení", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Styl reference R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Místní nastavení", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Příklad:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Zobrazit komentáře v listu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Zobrazit vyřešené komentáře", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Statický", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Vzhled uživatelského rozhraní", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Oddělovač tisíců", @@ -2092,17 +2153,21 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Uložit dočasnou verzi", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Každou minutu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Styl odkazu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Autokorekce možnosti...", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "běloruština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "bulharština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Katalánský", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Výchozí režim mezipaměti", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimetry", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Spolupráce", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "čeština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "dánština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "němčina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Úprava a uložení", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "řečtina", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "angličtina", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "španělština", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Režim spolupráce v reálném čase. Veškeré změny jsou ukládány automaticky", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "finština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "francouzština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "maďarština", @@ -2118,9 +2183,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "norština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "nizozemština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "polština", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Kontrola pravopisu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Body", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "portugalština (Brazílie)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "portugalština (Portugalsko)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Místní", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "rumunština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "ruština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Zapnout vše", @@ -2129,13 +2196,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "slovinština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Vypnout vše", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Vypnout všechna makra bez oznámení", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Pro synchronizaci provedených změn klikněte na tlačítko \"Uložit\"", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "švédština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "turečtina", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "ukrajinština", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Použít klávesu Alt pro navigaci uživatelským rozhraním za použití klávesnice", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Použít klávesu Option pro navigaci uživatelským rozhraním za použití klávesnice", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "vietnamština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Zobrazit oznámení", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Vypnout všechna makra s oznámením", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "jako Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Pracovní prostředí", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "čínština", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varování", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Heslem", @@ -2455,6 +2526,7 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Kontrola pravopisu", "SSE.Views.LeftMenu.tipSupport": "Zpětná vazba a technická podpora", "SSE.Views.LeftMenu.txtDeveloper": "REŽIM PRO VÝVOJÁŘE", + "SSE.Views.LeftMenu.txtEditor": "Tabulkový editor", "SSE.Views.LeftMenu.txtLimit": "Omezit přístup", "SSE.Views.LeftMenu.txtTrial": "ZKUŠEBNÍ REŽIM", "SSE.Views.LeftMenu.txtTrialDev": "Zkušební vývojářský režim", @@ -3110,6 +3182,7 @@ "SSE.Views.Spellcheck.textIgnore": "Ignorovat", "SSE.Views.Spellcheck.textIgnoreAll": "Ignorovat vše", "SSE.Views.Spellcheck.txtAddToDictionary": "Přidat do slovníku", + "SSE.Views.Spellcheck.txtClosePanel": "Zavřít hláskování", "SSE.Views.Spellcheck.txtComplete": "Kontrola pravopisu dokončena", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Jazyk slovníku", "SSE.Views.Spellcheck.txtNextTip": "Jít na další slovo", @@ -3310,10 +3383,13 @@ "SSE.Views.Toolbar.textDelUp": "Posunout buňky nahoru", "SSE.Views.Toolbar.textDiagDownBorder": "Ohraničení úhlopříčně dolů", "SSE.Views.Toolbar.textDiagUpBorder": "Ohraničení úhlopříčně nahoru", + "SSE.Views.Toolbar.textDone": "Hotovo", + "SSE.Views.Toolbar.textEditVA": "Upravit viditelnou oblast", "SSE.Views.Toolbar.textEntireCol": "Celý sloupec", "SSE.Views.Toolbar.textEntireRow": "Celý řádek", "SSE.Views.Toolbar.textFewPages": "stránky", "SSE.Views.Toolbar.textHeight": "Výška", + "SSE.Views.Toolbar.textHideVA": "Skrýt viditelnou oblast", "SSE.Views.Toolbar.textHorizontal": "Vodorovný text", "SSE.Views.Toolbar.textInsDown": "Posunout buňky dolů", "SSE.Views.Toolbar.textInsideBorders": "Vložit ohraničení", @@ -3438,8 +3514,10 @@ "SSE.Views.Toolbar.tipSendBackward": "Přesunout o vrstvu níž", "SSE.Views.Toolbar.tipSendForward": "Přenést o vrstvu výš", "SSE.Views.Toolbar.tipSynchronize": "Dokument byl mezitím pozměněn jiným uživatelem. Klikněte pro uložení vašich změn a načtení úprav.", + "SSE.Views.Toolbar.tipTextFormatting": "Více nástrojů pro formátování textu", "SSE.Views.Toolbar.tipTextOrientation": "Orientace", "SSE.Views.Toolbar.tipUndo": "Krok zpět", + "SSE.Views.Toolbar.tipVisibleArea": "Viditelná oblast", "SSE.Views.Toolbar.tipWrap": "Zalamovat text", "SSE.Views.Toolbar.txtAccounting": "Účetnictví", "SSE.Views.Toolbar.txtAdditional": "Další", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 330f73e23..b982a65f1 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -534,6 +534,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Column", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Column alignment", "SSE.Controllers.DocumentHolder.txtContains": "Contains", + "SSE.Controllers.DocumentHolder.txtCopySuccess": "Link copied to the clipboard", "SSE.Controllers.DocumentHolder.txtDataTableHint": "Returns the data cells of the table or specified table columns", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Decrease argument size", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Delete argument", @@ -645,7 +646,6 @@ "SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard", "SSE.Controllers.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", "SSE.Controllers.DocumentHolder.txtWidth": "Width", - "SSE.Controllers.DocumentHolder.txtCopySuccess": "Link copied to the clipboard", "SSE.Controllers.FormulaDialog.sCategoryAll": "All", "SSE.Controllers.FormulaDialog.sCategoryCube": "Cube", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", @@ -2023,6 +2023,7 @@ "SSE.Views.DocumentHolder.txtFormula": "Insert Function", "SSE.Views.DocumentHolder.txtFraction": "Fraction", "SSE.Views.DocumentHolder.txtGeneral": "General", + "SSE.Views.DocumentHolder.txtGetLink": "Get link to this range", "SSE.Views.DocumentHolder.txtGroup": "Group", "SSE.Views.DocumentHolder.txtHide": "Hide", "SSE.Views.DocumentHolder.txtInsert": "Insert", @@ -2052,7 +2053,6 @@ "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "SSE.Views.DocumentHolder.txtGetLink": "Get link to this range", "SSE.Views.FieldSettingsDialog.strLayout": "Layout", "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", "SSE.Views.FieldSettingsDialog.textReport": "Report Form", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 94221324a..9e4595c90 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -116,6 +116,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Sin Color", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar la contraseña", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar la contraseña", + "Common.UI.SearchBar.textFind": "Buscar", + "Common.UI.SearchBar.tipCloseSearch": "Cerrar búsqueda", + "Common.UI.SearchBar.tipNextResult": "Resultado siguiente", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir los ajustes avanzados", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.SearchDialog.textHighlight": "Resaltar resultados", "Common.UI.SearchDialog.textMatchCase": "Sensible a mayúsculas y minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Introduzca el texto de sustitución", @@ -128,11 +133,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Reemplazar todo", "Common.UI.SynchronizeTip.textDontShow": "No volver a mostrar este mensaje", "Common.UI.SynchronizeTip.textSynchronize": "El documento ha sido cambiado por otro usuario.
Por favor haga clic para guardar sus cambios y recargue las actualizaciones.", + "Common.UI.ThemeColorPalette.textRecentColors": "Colores recientes", "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", "Common.UI.Themes.txtThemeClassicLight": "Clásico claro", "Common.UI.Themes.txtThemeDark": "Oscuro", "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Themes.txtThemeSystem": "Igual que el sistema", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Cerrar", "Common.UI.Window.noButtonText": "No", @@ -225,6 +232,7 @@ "Common.Views.Header.textSaveChanged": "Modificado", "Common.Views.Header.textSaveEnd": "Se guardaron todos los cambios", "Common.Views.Header.textSaveExpander": "Se guardaron todos los cambios", + "Common.Views.Header.textShare": "Compartir", "Common.Views.Header.textZoom": "Ampliación", "Common.Views.Header.tipAccessRights": "Gestionar derechos de acceso al documento", "Common.Views.Header.tipDownload": "Descargar archivo", @@ -232,8 +240,10 @@ "Common.Views.Header.tipPrint": "Imprimir archivo", "Common.Views.Header.tipRedo": "Rehacer", "Common.Views.Header.tipSave": "Guardar", + "Common.Views.Header.tipSearch": "Búsqueda", "Common.Views.Header.tipUndo": "Deshacer", "Common.Views.Header.tipUndock": "Desacoplar en una ventana independiente", + "Common.Views.Header.tipUsers": "Ver usuarios", "Common.Views.Header.tipViewSettings": "Mostrar ajustes", "Common.Views.Header.tipViewUsers": "Ver usuarios y gestionar derechos de acceso a documentos", "Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso", @@ -291,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "Cargando", "Common.Views.Plugins.groupCaption": "Extensiones", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Cerrar plugin", "Common.Views.Plugins.textLoading": "Cargando", "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Detener", @@ -375,6 +386,38 @@ "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Cargando", "Common.Views.SaveAsDlg.textTitle": "Carpeta para guardar", + "Common.Views.SearchPanel.textByColumns": "Por columnas", + "Common.Views.SearchPanel.textByRows": "Por filas", + "Common.Views.SearchPanel.textCaseSensitive": "Distinguir mayúsculas de minúsculas", + "Common.Views.SearchPanel.textCell": "Celda", + "Common.Views.SearchPanel.textCloseSearch": "Cerrar búsqueda", + "Common.Views.SearchPanel.textFind": "Buscar", + "Common.Views.SearchPanel.textFindAndReplace": "Buscar y reemplazar", + "Common.Views.SearchPanel.textFormula": "Fórmula", + "Common.Views.SearchPanel.textFormulas": "Fórmulas ", + "Common.Views.SearchPanel.textItemEntireCell": "Todo el contenido de celda", + "Common.Views.SearchPanel.textLookIn": "Buscar en ", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Coincidir utilizando expresiones regulares", + "Common.Views.SearchPanel.textName": "Nombre", + "Common.Views.SearchPanel.textNoMatches": "No hay coincidencias", + "Common.Views.SearchPanel.textNoSearchResults": "No hay resultados de búsqueda", + "Common.Views.SearchPanel.textReplace": "Reemplazar", + "Common.Views.SearchPanel.textReplaceAll": "Reemplazar todo", + "Common.Views.SearchPanel.textReplaceWith": "Reemplazar por", + "Common.Views.SearchPanel.textSearch": "Búsqueda", + "Common.Views.SearchPanel.textSearchOptions": "Opciones de búsqueda", + "Common.Views.SearchPanel.textSearchResults": "Resultados de búsqueda: {0}/{1}", + "Common.Views.SearchPanel.textSelectDataRange": "Seleccionar rango de datos", + "Common.Views.SearchPanel.textSheet": "Hoja", + "Common.Views.SearchPanel.textSpecificRange": "Intervalo específico", + "Common.Views.SearchPanel.textTooManyResults": "Hay demasiados resultados para mostrar aquí", + "Common.Views.SearchPanel.textValue": "Valor", + "Common.Views.SearchPanel.textValues": "Valores", + "Common.Views.SearchPanel.textWholeWords": "Sólo palabras completas", + "Common.Views.SearchPanel.textWithin": "Dentro de", + "Common.Views.SearchPanel.textWorkbook": "Libro de trabajo", + "Common.Views.SearchPanel.tipNextResult": "Resultado siguiente", + "Common.Views.SearchPanel.tipPreviousResult": "Resultado anterior", "Common.Views.SelectFileDlg.textLoading": "Cargando", "Common.Views.SelectFileDlg.textTitle": "Seleccionar fuente de datos", "Common.Views.SignDialog.textBold": "Negrita", @@ -668,8 +711,8 @@ "SSE.Controllers.Main.errorDefaultMessage": "Código de error: %1", "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Está intentando eliminar una columna que contiene una celda bloqueada. Las celdas bloqueadas no pueden borrarse mientras la hoja de cálculo esté protegida.
Para borrar una celda bloqueada, desproteja la hoja. Es posible que se le pida que introduzca una contraseña.", "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Está intentando eliminar una fila que contiene una celda bloqueada. Las celdas bloqueadas no se pueden eliminar mientras la hoja de cálculo esté protegida.
Para eliminar una celda bloqueada, desproteja la hoja. Es posible que se le pida que introduzca una contraseña.", - "SSE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", - "SSE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro de su computadora.", + "SSE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro.", + "SSE.Controllers.Main.errorEditingSaveas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Guardar como...' para guardar la copia de seguridad de este archivo en el disco duro.", "SSE.Controllers.Main.errorEditView": "La vista de hoja existente no puede ser editada y las nuevas no se pueden crear en este momento, ya que algunas de ellas se están editando.", "SSE.Controllers.Main.errorEmailClient": "No se pudo encontrar ningun cliente de correo", "SSE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", @@ -677,7 +720,7 @@ "SSE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Por favor, póngase en contacto con el administrador del Servidor de documentos para obtener más detalles. ", "SSE.Controllers.Main.errorFileVKey": "Error externo.
Clave de seguridad incorrecto. Por favor póngase en contacto con soporte si el error se mantiene.", "SSE.Controllers.Main.errorFillRange": "Es imposible rellenar el rango de celdas seleccionado.
Todas las celdas seleccionadas deben tener el mismo tamaño.", - "SSE.Controllers.Main.errorForceSave": "Ha ocurrido un error mientras guardaba el archivo. Por favor use la opción \"Descargar\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", + "SSE.Controllers.Main.errorForceSave": "Se produjo un error al guardar el archivo. Utilice la opción \"Descargar como\" para guardar el archivo en el disco duro o inténtelo de nuevo más tarde.", "SSE.Controllers.Main.errorFormulaName": "Un error en la fórmula introducida.
Nombre de fórmula incorrecto.", "SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.", "SSE.Controllers.Main.errorFrmlMaxLength": "La longitud de su fórmula excede el límite de 8192 carácteres.
Por favor, edítela e intente de nuevo.", @@ -784,8 +827,10 @@ "SSE.Controllers.Main.textPleaseWait": "La operación puede tomar más tiempo de lo esperado. Espere por favor...", "SSE.Controllers.Main.textReconnect": "Se ha restablecido la conexión", "SSE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", + "SSE.Controllers.Main.textRememberMacros": "Recordar mi elección para todas las macros", "SSE.Controllers.Main.textRenameError": "El nombre de usuario no debe estar vacío.", "SSE.Controllers.Main.textRenameLabel": "Escriba un nombre que se utilizará para la colaboración", + "SSE.Controllers.Main.textRequestMacros": "Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?", "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modo estricto", "SSE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas para el modo co-edición rápido.
Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", @@ -1071,6 +1116,10 @@ "SSE.Controllers.Print.textWarning": "Aviso", "SSE.Controllers.Print.txtCustom": "Personalizado", "SSE.Controllers.Print.warnCheckMargings": "Márgenes son incorrectos", + "SSE.Controllers.Search.textInvalidRange": "¡ERROR! Rango de celdas inválido", + "SSE.Controllers.Search.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.", + "SSE.Controllers.Search.textReplaceSkipped": "El reemplazo se realizó. Se omitieron {0} ocurrencias.", + "SSE.Controllers.Search.textReplaceSuccess": "Se realizó la búsqueda. {0} ocurrencias se sustituyeron", "SSE.Controllers.Statusbar.errorLastSheet": "Un libro debe contener al menos una hoja visible.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Imposible borrar la hoja de cálculo.", "SSE.Controllers.Statusbar.strSheet": "Hoja", @@ -1577,6 +1626,7 @@ "SSE.Views.ChartDataRangeDialog.txtValues": "Valores", "SSE.Views.ChartDataRangeDialog.txtXValues": "Valores X", "SSE.Views.ChartDataRangeDialog.txtYValues": "Valores Y", + "SSE.Views.ChartSettings.errorMaxRows": "El número máximo de series de datos por gráfico es de 255.", "SSE.Views.ChartSettings.strLineWeight": "Grosor de línea", "SSE.Views.ChartSettings.strSparkColor": "Color", "SSE.Views.ChartSettings.strTemplate": "Plantilla", @@ -1598,6 +1648,7 @@ "SSE.Views.ChartSettings.textShow": "Mostrar", "SSE.Views.ChartSettings.textSize": "Tamaño", "SSE.Views.ChartSettings.textStyle": "Estilo", + "SSE.Views.ChartSettings.textSwitch": "Cambiar Fila/Columna", "SSE.Views.ChartSettings.textType": "Tipo", "SSE.Views.ChartSettings.textWidth": "Ancho", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "¡ERROR! El máximo", @@ -1615,6 +1666,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "Posición de eje", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Ajustes de eje", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Título", + "SSE.Views.ChartSettingsDlg.textBase": "Base", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre Marcadores", "SSE.Views.ChartSettingsDlg.textBillions": "Millardos", "SSE.Views.ChartSettingsDlg.textBottom": "Abajo ", @@ -1663,6 +1715,7 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "Superior", "SSE.Views.ChartSettingsDlg.textLines": "Líneas", "SSE.Views.ChartSettingsDlg.textLocationRange": "Rango de ubicación", + "SSE.Views.ChartSettingsDlg.textLogScale": "Escala logarítmica", "SSE.Views.ChartSettingsDlg.textLow": "Bajo", "SSE.Views.ChartSettingsDlg.textMajor": "Principal", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Principal y menor", @@ -1854,7 +1907,9 @@ "SSE.Views.DocumentHolder.bottomCellText": "Alinear en la parte inferior", "SSE.Views.DocumentHolder.bulletsText": "Viñetas y numeración", "SSE.Views.DocumentHolder.centerCellText": "Alinear al centro", + "SSE.Views.DocumentHolder.chartDataText": "Seleccionar datos del gráfico", "SSE.Views.DocumentHolder.chartText": "Ajustes avanzados de gráfico", + "SSE.Views.DocumentHolder.chartTypeText": "Cambiar tipo de gráfico", "SSE.Views.DocumentHolder.deleteColumnText": "Columna", "SSE.Views.DocumentHolder.deleteRowText": "Fila", "SSE.Views.DocumentHolder.deleteTableText": "Tabla", @@ -2066,16 +2121,22 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modo de co-edición", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Idioma del diccionario", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Agregar la versión al almacenamiento después de hacer clic en Guardar o Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Idioma de fórmulas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Ejemplo: SUMA; MIN; MAX; CONTAR", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Omitir palabras en MAYÚSCULAS", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Omitir palabras con números", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ajustes de macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar y pegar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar el botón Opciones de pegado cuando se pegue contenido", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Estilo de referencia R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Ajustes regionales", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Ejemplo:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Mostrar comentarios en la hoja", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Mostrar comentarios resueltos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Estricto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de interfaz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de miles", @@ -2092,17 +2153,21 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Guardar versiones intermedias", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Cada minuto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Estilo de referencias", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Opciones de autocorrección...", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bieloruso", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Búlgaro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalán", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Modo de caché predeterminado", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centímetro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Colaboración", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Checo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Alemán", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Editar y guardar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Griego", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Inglés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Español", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Co-edición en tiempo real. Todos los cambios se guardan automáticamente", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finlandés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Húngaro", @@ -2118,9 +2183,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Noruego", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Neerlandés", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polaco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Revisión", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugués (Brasil)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugués (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Región", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruso", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Habilitar todo", @@ -2129,13 +2196,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Esloveno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Deshabilitar todo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Deshabilitar todas las macros sin notificación", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Utilice el botón \"Guardar\" para sincronizar los cambios que usted y los demás realicen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Sueco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraniano", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Utilice la tecla Alt para navegar por la interfaz de usuario mediante el teclado", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Utilice la tecla Opción para navegar por la interfaz de usuario mediante el teclado", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamita", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostrar notificación", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Área de trabajo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chino", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Con contraseña", @@ -2455,6 +2526,7 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Сorrección ortográfica", "SSE.Views.LeftMenu.tipSupport": "Feedback y Soporte", "SSE.Views.LeftMenu.txtDeveloper": "MODO DE DESARROLLO", + "SSE.Views.LeftMenu.txtEditor": "Editor de hojas de cálculo", "SSE.Views.LeftMenu.txtLimit": "Limitar acceso", "SSE.Views.LeftMenu.txtTrial": "MODO DE PRUEBA", "SSE.Views.LeftMenu.txtTrialDev": "Modo de programador de prueba", @@ -3110,6 +3182,7 @@ "SSE.Views.Spellcheck.textIgnore": "Ignorar", "SSE.Views.Spellcheck.textIgnoreAll": "Ignorar todo", "SSE.Views.Spellcheck.txtAddToDictionary": "Agregar al diccionario", + "SSE.Views.Spellcheck.txtClosePanel": "Cerrar corrección ortográfica", "SSE.Views.Spellcheck.txtComplete": "La corrección ortográfica ha sido completada", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma del diccionario", "SSE.Views.Spellcheck.txtNextTip": "Ir a la siguiente palabra", @@ -3310,10 +3383,13 @@ "SSE.Views.Toolbar.textDelUp": "Desplazar celdas hacia arriba", "SSE.Views.Toolbar.textDiagDownBorder": "Borde diagonal descendente", "SSE.Views.Toolbar.textDiagUpBorder": "Borde diagonal ascendente", + "SSE.Views.Toolbar.textDone": "Hecho", + "SSE.Views.Toolbar.textEditVA": "Editar área visible", "SSE.Views.Toolbar.textEntireCol": "Toda la columna", "SSE.Views.Toolbar.textEntireRow": "Toda la fila", "SSE.Views.Toolbar.textFewPages": "páginas", "SSE.Views.Toolbar.textHeight": "Altura", + "SSE.Views.Toolbar.textHideVA": "Ocultar área visible", "SSE.Views.Toolbar.textHorizontal": "Texto horizontal", "SSE.Views.Toolbar.textInsDown": "Desplazar celdas hacia abajo", "SSE.Views.Toolbar.textInsideBorders": "Bordes internos", @@ -3438,8 +3514,10 @@ "SSE.Views.Toolbar.tipSendBackward": "Enviar hacia atrás", "SSE.Views.Toolbar.tipSendForward": "Traer adelante", "SSE.Views.Toolbar.tipSynchronize": "El documento ha sido cambiado por otro usuario. Por favor haga clic para guardar sus cambios y recargue las actualizaciones.", + "SSE.Views.Toolbar.tipTextFormatting": "Más herramientas de formato de texto", "SSE.Views.Toolbar.tipTextOrientation": "Orientación ", "SSE.Views.Toolbar.tipUndo": "Deshacer", + "SSE.Views.Toolbar.tipVisibleArea": "Área visible", "SSE.Views.Toolbar.tipWrap": "Ajustar texto", "SSE.Views.Toolbar.txtAccounting": "Contabilidad", "SSE.Views.Toolbar.txtAdditional": "Adicional", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index a62270de8..2ec3f8fe4 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -301,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "Chargement", "Common.Views.Plugins.groupCaption": "Modules complémentaires", "Common.Views.Plugins.strPlugins": "Plug-ins", + "Common.Views.Plugins.textClosePanel": "Fermer le plugin", "Common.Views.Plugins.textLoading": "Chargement", "Common.Views.Plugins.textStart": "Démarrer", "Common.Views.Plugins.textStop": "Arrêter", @@ -2525,6 +2526,7 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Vérification de l'orthographe", "SSE.Views.LeftMenu.tipSupport": "Commentaires & assistance", "SSE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", + "SSE.Views.LeftMenu.txtEditor": "Éditeur de feuille de calcul", "SSE.Views.LeftMenu.txtLimit": "Accès limité", "SSE.Views.LeftMenu.txtTrial": "MODE DEMO", "SSE.Views.LeftMenu.txtTrialDev": "Essai en mode Développeur", @@ -3180,6 +3182,7 @@ "SSE.Views.Spellcheck.textIgnore": "Ignorer", "SSE.Views.Spellcheck.textIgnoreAll": "Ignorer tout", "SSE.Views.Spellcheck.txtAddToDictionary": "Ajouter au dictionnaire", + "SSE.Views.Spellcheck.txtClosePanel": "Fermer le correcteur orthographique", "SSE.Views.Spellcheck.txtComplete": "La vérification de l'orthographe est terminée", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Langue du dictionnaire", "SSE.Views.Spellcheck.txtNextTip": "Passer au mot suivant", @@ -3380,10 +3383,13 @@ "SSE.Views.Toolbar.textDelUp": "Décaler les cellules vers le haut", "SSE.Views.Toolbar.textDiagDownBorder": "Bordure diagonale bas", "SSE.Views.Toolbar.textDiagUpBorder": "Bordure diagonale haut", + "SSE.Views.Toolbar.textDone": "Terminé", + "SSE.Views.Toolbar.textEditVA": "Modifier la zone visible", "SSE.Views.Toolbar.textEntireCol": "Colonne entière", "SSE.Views.Toolbar.textEntireRow": "Ligne entière", "SSE.Views.Toolbar.textFewPages": "Pages", "SSE.Views.Toolbar.textHeight": "Hauteur", + "SSE.Views.Toolbar.textHideVA": "Cacher la zone visible", "SSE.Views.Toolbar.textHorizontal": "Texte horizontal", "SSE.Views.Toolbar.textInsDown": "Décaler les cellules vers le bas", "SSE.Views.Toolbar.textInsideBorders": "Bordures intérieures", @@ -3508,8 +3514,10 @@ "SSE.Views.Toolbar.tipSendBackward": "Envoyer vers l'arrière.", "SSE.Views.Toolbar.tipSendForward": "Déplacer vers l'avant", "SSE.Views.Toolbar.tipSynchronize": "Le document a été modifié par un autre utilisateur. Cliquez pour enregistrer vos modifications et recharger des mises à jour.", + "SSE.Views.Toolbar.tipTextFormatting": "Plus d'outils de formatage de texte", "SSE.Views.Toolbar.tipTextOrientation": "Orientation", "SSE.Views.Toolbar.tipUndo": "Annuler", + "SSE.Views.Toolbar.tipVisibleArea": "Zone visible", "SSE.Views.Toolbar.tipWrap": "Renvoyer à la ligne automatiquement", "SSE.Views.Toolbar.txtAccounting": "Comptabilité", "SSE.Views.Toolbar.txtAdditional": "Supplémentaire", diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index 615cd5447..9b4d7a41f 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -1,11 +1,16 @@ { "cancelButtonText": "Չեղարկել", + "Common.Controllers.Chat.notcriticalErrorTitle": "Զգուշացում", + "Common.Controllers.Chat.textEnterMessage": "Ներածեք ուղերձն այստեղ", + "Common.Controllers.History.notcriticalErrorTitle": "Զգուշացում", "Common.define.chartData.textArea": "Տարածք", + "Common.define.chartData.textAreaStacked": "Շեղջված տարածք", "Common.define.chartData.textAreaStackedPer": " 100% շեղջված տարածք", "Common.define.chartData.textBar": "Գիծ", "Common.define.chartData.textBarNormal": "Շեղաձև սյունակ", "Common.define.chartData.textBarNormal3d": "3-չափ փնջավոր սյունակ", "Common.define.chartData.textBarNormal3dPerspective": "3-չափ սյունակ", + "Common.define.chartData.textBarStacked": "Շեղջաձև սյունակ", "Common.define.chartData.textBarStacked3d": "3-չափ շեղջաձև սյունակ", "Common.define.chartData.textBarStackedPer": "100% շեղաձև սյունակ", "Common.define.chartData.textBarStackedPer3d": " 3-չափ 100% շեղջաձև սյունակ", @@ -13,20 +18,39 @@ "Common.define.chartData.textColumn": "Սյունակ", "Common.define.chartData.textColumnSpark": "Սյունակ", "Common.define.chartData.textCombo": "Համակցված ", + "Common.define.chartData.textComboAreaBar": "Շեղջված տարածք - փնջավոր սյունակ", "Common.define.chartData.textComboBarLine": "Սյունաձև գծույթ՝ խմբավորմամբ -գիծ", "Common.define.chartData.textComboBarLineSecondary": "Սյունաձև գծույթ՝ խմբավորմամբ-գիծ փոքր առանցքի վրա:", "Common.define.chartData.textComboCustom": "Հարմարեցված համակցություն", "Common.define.chartData.textDoughnut": "Օղակաձև գծապատկեր", "Common.define.chartData.textHBarNormal": "Գոտեգծույթ", "Common.define.chartData.textHBarNormal3d": " 3-չափ փնջավոր գոտի", + "Common.define.chartData.textHBarStacked": "Շեղջաձև գոտի", "Common.define.chartData.textHBarStacked3d": "3-չափ շեղջաձև գոտի", "Common.define.chartData.textHBarStackedPer": " 100% շեղջաձև գոտի", "Common.define.chartData.textHBarStackedPer3d": "3-չափ 100% շեղջաձև գոտի", + "Common.define.chartData.textLine": "Գիծ", "Common.define.chartData.textLine3d": "3-չափ գիծ", + "Common.define.chartData.textLineMarker": "Տող՝ նշիչներով", + "Common.define.chartData.textLineSpark": "Գիծ", + "Common.define.chartData.textLineStacked": "Շեղջված գիծ", + "Common.define.chartData.textLineStackedMarker": "Շեղջված գիծ՝ նշիչներով", "Common.define.chartData.textLineStackedPer": "100% շեղջված գիծ", "Common.define.chartData.textLineStackedPerMarker": "100% շեղջված գիծ՝ նշիչներով", + "Common.define.chartData.textPie": "Բլիթ", "Common.define.chartData.textPie3d": "3-չափ բլիթ", + "Common.define.chartData.textPoint": "XY (Ցրում)", + "Common.define.chartData.textScatter": "Ցրված", + "Common.define.chartData.textScatterLine": "Ցրել ուղիղ գծերով և նշիչներով", + "Common.define.chartData.textScatterLineMarker": "Ցրել ուղիղ գծերով և նշիչներով", + "Common.define.chartData.textScatterSmooth": "Ցրել սահուն գծերով", + "Common.define.chartData.textScatterSmoothMarker": "Ցրել սահուն գծերով և նշիչներով", + "Common.define.chartData.textSparks": "կայծգծեր", + "Common.define.chartData.textStock": "Տվյալների տատանում", + "Common.define.chartData.textSurface": "Մակերեսային", + "Common.define.chartData.textWinLossSpark": "Հաղթել/Պարտություն", "Common.define.conditionalData.exampleText": "ԱաԲբԳգՕօՖֆ", + "Common.define.conditionalData.noFormatText": "Ձևաչափ չկա", "Common.define.conditionalData.text1Above": "1 std dev above", "Common.define.conditionalData.text1Below": "1 սով. շեղ. վար", "Common.define.conditionalData.text2Above": "2 սով. շեղ. վեր", @@ -51,95 +75,236 @@ "Common.define.conditionalData.textEqual": "Հավասար է", "Common.define.conditionalData.textError": "Սխալ", "Common.define.conditionalData.textErrors": "Պարունակում է սխալներ", + "Common.define.conditionalData.textFormula": "Բանաձև ", + "Common.define.conditionalData.textGreater": "Ավելի մեծ քան", + "Common.define.conditionalData.textGreaterEq": "Ավելի մեծ կամ հավասար", + "Common.define.conditionalData.textIconSets": "Պատկերակների կազմեր", + "Common.define.conditionalData.textLast7days": "Վերջին 7 օրվա ընթացքում", + "Common.define.conditionalData.textLastMonth": "Անցած ամիս", + "Common.define.conditionalData.textLastWeek": "Անցած շաբաթ", + "Common.define.conditionalData.textLess": "Ավելի քիչ քան ", + "Common.define.conditionalData.textLessEq": "Պակաս կամ հավասար", + "Common.define.conditionalData.textNextMonth": "Հաջորդ ամիս", + "Common.define.conditionalData.textNextWeek": "Հաջորդ շաբաթ", + "Common.define.conditionalData.textNotBetween": "ոչ թե միջև", "Common.define.conditionalData.textNotBlanks": "Բլանկներ չի պարունակում", "Common.define.conditionalData.textNotContains": "Չի պարունակում", + "Common.define.conditionalData.textNotEqual": "Հավասար չէ՝", "Common.define.conditionalData.textNotErrors": "Չի պարունակում սխալներ", + "Common.define.conditionalData.textText": "Տեքստ", + "Common.define.conditionalData.textThisMonth": "Այս ամիս", + "Common.define.conditionalData.textThisWeek": "Այս շաբաթ", + "Common.define.conditionalData.textToday": "Այսօր", + "Common.define.conditionalData.textTomorrow": "Վաղը", "Common.define.conditionalData.textTop": "Վերև", + "Common.define.conditionalData.textUnique": "Յուրահատուկ", + "Common.define.conditionalData.textValue": "Արժեքն է", + "Common.define.conditionalData.textYesterday": "Երեկ", + "Common.Translation.warnFileLocked": "Ֆայլը խմբագրվում է մեկ այլ հավելվածում:Դուք կարող եք շարունակել խմբագրումը և պահպանել այն որպես պատճեն:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", + "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", "Common.UI.ButtonColored.textAutoColor": "Ինքնաշխատ", "Common.UI.ButtonColored.textNewColor": "Հավելել նոր հարմարեցված գույն", + "Common.UI.ComboBorderSize.txtNoBorders": "Առանց եզրագծերի", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Առանց եզրագծերի", + "Common.UI.ComboDataView.emptyComboText": "Առանց ոճերի", "Common.UI.ExtendedColorDialog.addButtonText": "Հավելել", "Common.UI.ExtendedColorDialog.textCurrent": "Ընթացիկ", + "Common.UI.ExtendedColorDialog.textHexErr": " Մուտքագրված արժեքը սխալ է: Խնդրում ենք մուտքագրել 000000-ից FFFFFF թվային արժեք:", + "Common.UI.ExtendedColorDialog.textNew": "Նոր", + "Common.UI.ExtendedColorDialog.textRGBErr": "Մուտքագրված արժեքը սխալ է:Խնդրում ենք մուտքագրել 0-ից 255 թվային արժեք:", + "Common.UI.HSBColorPicker.textNoColor": "Առանց գույն", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Թաքցնել գաղտնաբառը", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Ցուցադրել գաղտնաբառը", + "Common.UI.SearchBar.textFind": "Գտնել", "Common.UI.SearchBar.tipCloseSearch": "Փակել որոնումը", + "Common.UI.SearchBar.tipNextResult": "Հաջորդ արդյունքը", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Բացել ընդլայնված կարգավորումները", + "Common.UI.SearchBar.tipPreviousResult": "Նախորդ արդյունքը", + "Common.UI.SearchDialog.textHighlight": "Գունանշել արդյունքները", "Common.UI.SearchDialog.textMatchCase": "Հաշվի առնել տառաշարը", "Common.UI.SearchDialog.textReplaceDef": "Մուտքագրեք փոխարինման տեքստը", "Common.UI.SearchDialog.textSearchStart": "Այստեղ մուտքագրեք Ձեր տեքստը", + "Common.UI.SearchDialog.textTitle": "Գտնել և փոխարինել", + "Common.UI.SearchDialog.textTitle2": "Գտնել", + "Common.UI.SearchDialog.textWholeWords": "Միայն ամբողջական բառերը", + "Common.UI.SearchDialog.txtBtnHideReplace": "Թաքցնել Փոխարինելը", + "Common.UI.SearchDialog.txtBtnReplace": "Փոխարինել", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Փոխարինել բոլորը", "Common.UI.SynchronizeTip.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.UI.SynchronizeTip.textSynchronize": "Փաստաթուղթն այլ օգտատիրոջ կողմից փոփոխվել է։
Սեղմեք, որ պահպանեք Ձեր փոփոխումները և բեռնեք թարմացումները։", + "Common.UI.ThemeColorPalette.textRecentColors": "Վերջին գույները", + "Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ", "Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ", "Common.UI.Themes.txtThemeClassicLight": "Դասական լույս", "Common.UI.Themes.txtThemeDark": "Մութ", + "Common.UI.Themes.txtThemeLight": "Լույս", + "Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը", "Common.UI.Window.cancelButtonText": "Չեղարկել", "Common.UI.Window.closeButtonText": "Փակել", + "Common.UI.Window.noButtonText": "Ոչ", + "Common.UI.Window.okButtonText": "Լավ", "Common.UI.Window.textConfirmation": "Հաստատում", "Common.UI.Window.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.UI.Window.textError": "Սխալ", + "Common.UI.Window.textInformation": "Տեղեկատվություն ", + "Common.UI.Window.textWarning": "Զգուշացում", + "Common.UI.Window.yesButtonText": "Այո", "Common.Utils.Metric.txtCm": "սմ", + "Common.Utils.Metric.txtPt": "կտ", "Common.Views.About.txtAddress": "հասցե՝", + "Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ", + "Common.Views.About.txtLicensor": "Լիցենզատու ", "Common.Views.About.txtMail": "էլ․ փոստ՝", "Common.Views.About.txtPoweredBy": "Օժանդակող՝", + "Common.Views.About.txtTel": "հեռ.", + "Common.Views.About.txtVersion": "Տարբերակ", "Common.Views.AutoCorrectDialog.textAdd": "Հավելել", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Դիմեք, երբ աշխատում եք", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Ինքնաշտկում", "Common.Views.AutoCorrectDialog.textAutoFormat": "Ինքնաձեւաչափում մուտքագրելիս", "Common.Views.AutoCorrectDialog.textBy": "Ըստ", "Common.Views.AutoCorrectDialog.textDelete": "Ջնջել", - "Common.Views.AutoCorrectDialog.textFLSentence": "Մեծատառով գրել նախադասությունների առաջին տառը", + "Common.Views.AutoCorrectDialog.textHyperlink": "Ինտերնետ և ցանցային ուղիներ՝ հիպերհղումներով", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Մաթ ինքնաշտկում ", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Աղյուսակում ներառեք նոր տողեր և սյունակներ", + "Common.Views.AutoCorrectDialog.textRecognized": "Ճանաչված գործառույթներ", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Հետեւյալ արտահայտությունները ճանաչված մաթեմատիկական արտահյտություններ են: Նրանք ինքնաբար չեն շեղվելու:", + "Common.Views.AutoCorrectDialog.textReplace": "Փոխարինել", + "Common.Views.AutoCorrectDialog.textReplaceText": "Փոխարինել՝ մուտքագրելիս", + "Common.Views.AutoCorrectDialog.textReplaceType": "Փոխարինել տեքստը՝ մուտքագրելիս", + "Common.Views.AutoCorrectDialog.textReset": "Վերակայել", + "Common.Views.AutoCorrectDialog.textResetAll": "Վերակայել սկզբնադիր արժեքին", + "Common.Views.AutoCorrectDialog.textRestore": "Վերականգնել", "Common.Views.AutoCorrectDialog.textTitle": "Ինքնաշտկում", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Ճանաչված գործառույթները պետք է պարունակեն միայն A-ից Z տառերը, մեծատառեր կամ փոքրատառեր:", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Ձեր ավելացրած ցանկացած արտահայտություն կհեռացվի և հեռացվածները կվերականգնվեն: Ցանկանու՞մ եք շարունակել։", + "Common.Views.AutoCorrectDialog.warnReplace": "%1-ի ինքնաշտկման գրառումն արդեն գոյություն ունի:Ցանկանու՞մ եք այն փոխարինել:", "Common.Views.AutoCorrectDialog.warnReset": "Ձեր ավելացրած ցանկացած ավտոմատ ուղղում կհեռացվի և փոխվածները կվերականգնվեն իրենց սկզբնական արժեքներին: Ցանկանու՞մ եք շարունակել։", + "Common.Views.AutoCorrectDialog.warnRestore": "%1-ի ինքնաշտկման գրառումը կվերակայվի իր սկզբնական արժեքին:Ցանկանու՞մ եք շարունակել։", + "Common.Views.Chat.textSend": "ՈՒղարկել", "Common.Views.Comments.mniAuthorAsc": "Հեղինակ Ա-ից Զ", "Common.Views.Comments.mniAuthorDesc": "Հեղինակ Զ-ից Ա", + "Common.Views.Comments.mniDateAsc": "Ամենահին", + "Common.Views.Comments.mniDateDesc": "Նորագույն", + "Common.Views.Comments.mniFilterGroups": "Զտել ըստ խմբի", + "Common.Views.Comments.mniPositionAsc": "Վերևից", + "Common.Views.Comments.mniPositionDesc": "Ներքևից ", "Common.Views.Comments.textAdd": "Հավելել", "Common.Views.Comments.textAddComment": "Կցել մեկնաբանություն", "Common.Views.Comments.textAddCommentToDoc": "Փաստաթղթում կցել մեկնաբանություն", "Common.Views.Comments.textAddReply": "Պատասխանել", "Common.Views.Comments.textAll": "Բոլորը", + "Common.Views.Comments.textAnonym": "Հյուր", "Common.Views.Comments.textCancel": "Չեղարկել", "Common.Views.Comments.textClose": "Փակել", "Common.Views.Comments.textClosePanel": "Փակել մեկնաբանությունները:", "Common.Views.Comments.textComments": "Մեկնաբանություններ", + "Common.Views.Comments.textEdit": "Լավ", "Common.Views.Comments.textEnterCommentHint": "Այստեղ մուտքագրեք Ձեր մեկնաբանությունը", "Common.Views.Comments.textHintAddComment": "Կցել մեկնաբանություն", + "Common.Views.Comments.textOpenAgain": "Նորից բացել", + "Common.Views.Comments.textReply": "Պատասխանել", + "Common.Views.Comments.textResolve": "Լուծել", + "Common.Views.Comments.textResolved": "Լուծված", + "Common.Views.Comments.textSort": "Տեսակավորել մեկնաբանությունները", + "Common.Views.Comments.textViewResolved": "Դուք մեկնաբանությունը վերաբացելու թույլտվություն չունեք", + "Common.Views.Comments.txtEmpty": "Թերթում մեկնաբանություններ չկան։", "Common.Views.CopyWarningDialog.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.Views.CopyWarningDialog.textMsg": "Պատճենել, կտրել և փակցնել կարող եք գործիքագոտու կոճակների և համատեքստի ցանկի հրամանների միջոցով խմբագրիչի միայն այս ներդիրում։

Դրանից դուրս հավելվածներից պատճենելու կամ փակցնելու համար օգտագործեք հետևյալ ստեղնային համադրությունները.", "Common.Views.CopyWarningDialog.textTitle": "Պատճենելու, կտրելու և փակցնելու գործողություններ", + "Common.Views.CopyWarningDialog.textToCopy": "պատճենման համար", + "Common.Views.CopyWarningDialog.textToCut": "Կտրելու համար", + "Common.Views.CopyWarningDialog.textToPaste": "փակցնելու համար", + "Common.Views.DocumentAccessDialog.textLoading": "Բեռնում...", + "Common.Views.DocumentAccessDialog.textTitle": "Համօգտագործման կարգավորումներ", + "Common.Views.EditNameDialog.textLabel": "Պիտակ։", + "Common.Views.EditNameDialog.textLabelError": "Պիտակը չպետք է դատարկ լինի", "Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝", + "Common.Views.Header.textAddFavorite": "Նշել որպես հավանած տարբերակ", "Common.Views.Header.textAdvSettings": "Հավելյալ կարգավորումներ", "Common.Views.Header.textBack": "Բացել նիշքի պանակը", + "Common.Views.Header.textCompactView": "Թաքցնել գործիքագոտին", + "Common.Views.Header.textHideLines": "Թաքցնել քանոնները", "Common.Views.Header.textHideStatusBar": "Միավորել թերթիկը և կարգավիճակի գծերը", + "Common.Views.Header.textRemoveFavorite": "Ջնջել ընտրված ցուցակից", + "Common.Views.Header.textSaveBegin": "Պահում", + "Common.Views.Header.textSaveChanged": "Փոփոխված", "Common.Views.Header.textSaveEnd": "Բոլոր փոփոխումները պահպանված են", "Common.Views.Header.textSaveExpander": "Բոլոր փոփոխումները պահպանված են", + "Common.Views.Header.textShare": "Տարածել", + "Common.Views.Header.textZoom": "Խոշորացնել", "Common.Views.Header.tipAccessRights": "Կառավարել փաստաթղթի մատչման իրավունքները", "Common.Views.Header.tipDownload": "Ներբեռնել նիշքը", "Common.Views.Header.tipGoEdit": "Խմբագրել ընթացիկ նիշքը", "Common.Views.Header.tipPrint": "Տպել նիշքը", + "Common.Views.Header.tipRedo": "Վերարկել", "Common.Views.Header.tipSave": "Պահպանել", + "Common.Views.Header.tipSearch": "Որոնել", + "Common.Views.Header.tipUndo": "Հետարկել", + "Common.Views.Header.tipUndock": " Ապահարակցել առանձին պատուհանի մեջ", + "Common.Views.Header.tipUsers": "Դիտել օգտվողներին", + "Common.Views.Header.tipViewSettings": "Դիտել կարգավորումները", "Common.Views.Header.tipViewUsers": "Դիտել օգտատերերին և կառավարել փաստաթղթի մատչման իրավունքները", "Common.Views.Header.txtAccessRights": "Փոխել մատչման իրավունքները", + "Common.Views.Header.txtRename": "Վերանվանել", "Common.Views.History.textCloseHistory": "Փակել պատմությունը", "Common.Views.History.textHide": "Կոծկել", + "Common.Views.History.textHideAll": "Թաքցնել մանրամասն փոփոխությունները", + "Common.Views.History.textRestore": "Վերականգնել", "Common.Views.History.textShow": "Ընդարձակել", + "Common.Views.History.textShowAll": "Ցուցադրել մանրամասն փոփոխությունները ", + "Common.Views.History.textVer": "Վեր", + "Common.Views.ImageFromUrlDialog.textUrl": "Փակցնել նկարի URL՝", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Այս դաշտը պետք է լինի URL \"http://www.example.com\" ձևաչափով", "Common.Views.ListSettingsDialog.textBulleted": "Պարբերանշված", + "Common.Views.ListSettingsDialog.textNumbering": "Համարակալված", "Common.Views.ListSettingsDialog.tipChange": "Փոխել պարբերակը", "Common.Views.ListSettingsDialog.txtBullet": "Պարբերակ", "Common.Views.ListSettingsDialog.txtColor": "Գույն", + "Common.Views.ListSettingsDialog.txtNewBullet": "Նոր պարբերակ", + "Common.Views.ListSettingsDialog.txtNone": "Ոչ մեկը", "Common.Views.ListSettingsDialog.txtOfText": "գրվածքի %", + "Common.Views.ListSettingsDialog.txtSize": "Չափ", "Common.Views.ListSettingsDialog.txtStart": "Մեկնարկել", + "Common.Views.ListSettingsDialog.txtSymbol": "Նշան", + "Common.Views.ListSettingsDialog.txtTitle": "Ցանկի կարգավորումներ", + "Common.Views.ListSettingsDialog.txtType": "Տեսակ", "Common.Views.OpenDialog.closeButtonText": "Փակել նիշքը", + "Common.Views.OpenDialog.textInvalidRange": "Վանդակների անթույլատրելի ընդգրկույթ", + "Common.Views.OpenDialog.textSelectData": "Ընտրեք տվյալներ", "Common.Views.OpenDialog.txtAdvanced": "Հավելյալ", "Common.Views.OpenDialog.txtColon": "երկկետ", "Common.Views.OpenDialog.txtComma": "Ստորակետ", "Common.Views.OpenDialog.txtDelimiter": "Բաժանիչ", "Common.Views.OpenDialog.txtDestData": "Ընտրեք, թե որտեղ պետք է տեղադրվեն տվյալները", + "Common.Views.OpenDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "Common.Views.OpenDialog.txtEncoding": "Կոդավորում", + "Common.Views.OpenDialog.txtIncorrectPwd": "Գաղտնաբառը սխալ է:", "Common.Views.OpenDialog.txtOpenFile": "Մուտքագրել գաղտնաբառ՝ ֆայլը բացելու համար", + "Common.Views.OpenDialog.txtOther": "Այլ", + "Common.Views.OpenDialog.txtPassword": "Գաղտնաբառ", + "Common.Views.OpenDialog.txtPreview": "Նախադիտել", "Common.Views.OpenDialog.txtProtected": "Երբ գաղտնաբառը գրեք ու նիշքը բացեք, ընթացիկ գաղտնաբառը կվերակայվի։", + "Common.Views.OpenDialog.txtSemicolon": "Կետ-ստորակետ", "Common.Views.OpenDialog.txtSpace": "Բացատ", + "Common.Views.OpenDialog.txtTab": "Սյունատ", "Common.Views.OpenDialog.txtTitle": "Ընտրել %1 ընտրանքներ", "Common.Views.OpenDialog.txtTitleProtected": "Պաշտպանված նիշք", "Common.Views.PasswordDialog.txtDescription": "Դնել գաղտնաբառ՝ փաստաթուղթը պաշտպանելու համար։", "Common.Views.PasswordDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ", + "Common.Views.PasswordDialog.txtPassword": "Գաղտնաբառ", + "Common.Views.PasswordDialog.txtRepeat": "Կրկնել գաղտնաբառը", + "Common.Views.PasswordDialog.txtTitle": "Սահմանել գաղտնաբառ", + "Common.Views.PasswordDialog.txtWarning": "Զգուշացում․ գաղտնաբառը կորցնելու կամ մոռանալու դեպքում այն ​​չի կարող վերականգնվել։Խնդրում ենք պահել այն ապահով տեղում:", + "Common.Views.PluginDlg.textLoading": "Բեռնվում է", + "Common.Views.Plugins.groupCaption": "Պլագիններ", + "Common.Views.Plugins.strPlugins": "Պլագիններ", + "Common.Views.Plugins.textClosePanel": "Փակել օժանդակ ծրագիրը", + "Common.Views.Plugins.textLoading": "Բեռնվում է", + "Common.Views.Plugins.textStart": "Մեկնարկ", + "Common.Views.Plugins.textStop": "Կանգ", "Common.Views.Protection.hintAddPwd": "Գաղտնագրել գաղտնաբառով", "Common.Views.Protection.hintPwd": "Փոխել կամ ջնջել գաղտնաբառը", "Common.Views.Protection.hintSignature": "Դնել թվանշային ստորագրություն կամ ստորագրության տող", @@ -148,14 +313,28 @@ "Common.Views.Protection.txtDeletePwd": "Ջնջել գաղտնաբառը", "Common.Views.Protection.txtEncrypt": "Գաղտնագրել", "Common.Views.Protection.txtInvisibleSignature": "Դնել թվանշային ստորագրություն", + "Common.Views.Protection.txtSignature": "Ստորագրություն", "Common.Views.Protection.txtSignatureLine": "Դնել ստորագրության տող", "Common.Views.RenameDialog.textName": "Նիշքի անուն", "Common.Views.RenameDialog.txtInvalidName": "Նիշքի անունը չի կարող ունենալ հետևյալ գրանշանները՝ ", + "Common.Views.ReviewChanges.hintNext": "Հաջորդ փոփոխությանը", + "Common.Views.ReviewChanges.hintPrev": "Նախորդ փոփոխությանը", "Common.Views.ReviewChanges.strFast": "Արագ", "Common.Views.ReviewChanges.strFastDesc": "Համատեղ խմբագրում իրական ժամանակում։ Բոլոր փոփոխումներն ինքնաշխատ պահպանվում են։", + "Common.Views.ReviewChanges.strStrict": "Խիստ", "Common.Views.ReviewChanges.strStrictDesc": "«Պահպանել» կոճակով համաժամեցրեք Ձեր և այլոց փոփոխումները։", "Common.Views.ReviewChanges.tipAcceptCurrent": "Ընդունել ընթացիկ փոփոխումը", + "Common.Views.ReviewChanges.tipCoAuthMode": "Սահմանել համատեղ խմբագրման ռեժիմը", + "Common.Views.ReviewChanges.tipCommentRem": "Ջնջել մեկնաբանությունները", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Հեռացրել ընթացիկ մեկնաբանությունները", + "Common.Views.ReviewChanges.tipCommentResolve": "Լուծել մեկնաբանությունները", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Լուծել ընթացիկ մեկնաբանությունները", + "Common.Views.ReviewChanges.tipHistory": "Ցուցադրել տարբերակի պատմությունը", + "Common.Views.ReviewChanges.tipRejectCurrent": "Մերժել ընթացիկ փոփոխությունը", + "Common.Views.ReviewChanges.tipReview": "Հետագծել փոփոխությունները", + "Common.Views.ReviewChanges.tipReviewView": "Ընտրել ռեժիմը, որում ցանկանում եք, որ փոփոխությունները ցուցադրվեն", "Common.Views.ReviewChanges.tipSetDocLang": "Ընտրել փաստաթղթի լեզուն", + "Common.Views.ReviewChanges.tipSetSpelling": "Ուղղագրության ստուգում", "Common.Views.ReviewChanges.tipSharing": "Կառավարել փաստաթղթի մատչման իրավունքները", "Common.Views.ReviewChanges.txtAccept": "Ընդունել", "Common.Views.ReviewChanges.txtAcceptAll": "Ընդունել բոլոր փոփոխումները", @@ -164,56 +343,175 @@ "Common.Views.ReviewChanges.txtChat": "Զրույց", "Common.Views.ReviewChanges.txtClose": "Փակել", "Common.Views.ReviewChanges.txtCoAuthMode": "Համախմբագրման աշխատակարգ", + "Common.Views.ReviewChanges.txtCommentRemAll": "Ջնջել բոլոր մեկնաբանությունները", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Հեռացրել ընթացիկ մեկնաբանությունները", + "Common.Views.ReviewChanges.txtCommentRemMy": "Հեռացնել իմ մեկնաբանությունը", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Հեռացնել իմ ընթացիկ մեկնաբանությունները", + "Common.Views.ReviewChanges.txtCommentRemove": "Ջնջել", + "Common.Views.ReviewChanges.txtCommentResolve": "Լուծել", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Լուծել բոլոր մեկնաբանությունները", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Լուծել ընթացիկ մեկնաբանությունները", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Լուծել իմ մեկնաբանությունները", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Լուծել իմ ընթացիկ մեկնաբանությունները", + "Common.Views.ReviewChanges.txtDocLang": "Լեզու", "Common.Views.ReviewChanges.txtFinal": "Բոլոր փոփոխումներն ընդունված են (նախադիտում)", + "Common.Views.ReviewChanges.txtFinalCap": "Վերջնական", + "Common.Views.ReviewChanges.txtHistory": "Տարբերակի պատմություն", "Common.Views.ReviewChanges.txtMarkup": "Բոլոր փոփոխումները (խմբագրում)", + "Common.Views.ReviewChanges.txtMarkupCap": "նշարկում", + "Common.Views.ReviewChanges.txtNext": "Հաջորդ", "Common.Views.ReviewChanges.txtOriginal": "Բոլոր փոփոխումները մերժված են (նախադիտում)", + "Common.Views.ReviewChanges.txtOriginalCap": "Բնօրինակ", + "Common.Views.ReviewChanges.txtPrev": "Նախորդ", + "Common.Views.ReviewChanges.txtReject": "Մերժել", + "Common.Views.ReviewChanges.txtRejectAll": "Մերժել բոլոր փոփոխումները", + "Common.Views.ReviewChanges.txtRejectChanges": "Մերժել փոփոխումները", + "Common.Views.ReviewChanges.txtRejectCurrent": "Մերժել ընթացիկ փոփոխությունը", + "Common.Views.ReviewChanges.txtSharing": "Համօգտագործում", + "Common.Views.ReviewChanges.txtSpelling": "Ուղղագրության ստուգում", + "Common.Views.ReviewChanges.txtTurnon": "Հետագծել փոփոխությունները", "Common.Views.ReviewChanges.txtView": "Ցուցադրման ձև", "Common.Views.ReviewPopover.textAdd": "Հավելել", "Common.Views.ReviewPopover.textAddReply": "Պատասխանել", "Common.Views.ReviewPopover.textCancel": "Չեղարկել", "Common.Views.ReviewPopover.textClose": "Փակել", + "Common.Views.ReviewPopover.textEdit": "Լավ", "Common.Views.ReviewPopover.textMention": "+հիշատակումը փաստաթուղթը հասանելի կդարձնի և էլ. նամակ կուղարկի", "Common.Views.ReviewPopover.textMentionNotify": "+նշումը օգտատիրոջը կտեղեկացնի էլ.փոստի միջոցով", + "Common.Views.ReviewPopover.textOpenAgain": "Նորից բացել", + "Common.Views.ReviewPopover.textReply": "Պատասխանել", + "Common.Views.ReviewPopover.textResolve": "Լուծել", + "Common.Views.ReviewPopover.textViewResolved": "Դուք մեկնաբանությունը վերաբացելու թույլտվություն չունեք", "Common.Views.ReviewPopover.txtDeleteTip": "Ջնջել", "Common.Views.ReviewPopover.txtEditTip": "Խմբագրել", + "Common.Views.SaveAsDlg.textLoading": "Բեռնվում է", "Common.Views.SaveAsDlg.textTitle": "Պահպանման պանակ", "Common.Views.SearchPanel.textByColumns": "Սյունակներով", "Common.Views.SearchPanel.textByRows": "Տողերով", "Common.Views.SearchPanel.textCaseSensitive": "Հաշվի առնել տառաշարը", "Common.Views.SearchPanel.textCell": "Վանդակ", "Common.Views.SearchPanel.textCloseSearch": "Փակել որոնումը", + "Common.Views.SearchPanel.textFind": "Գտնել", + "Common.Views.SearchPanel.textFindAndReplace": "Գտնել և փոխարինել", + "Common.Views.SearchPanel.textFormula": "Բանաձև ", + "Common.Views.SearchPanel.textFormulas": "Բանաձևեր", "Common.Views.SearchPanel.textItemEntireCell": "Բջիջների ամբողջ պարունակությունը", + "Common.Views.SearchPanel.textLookIn": "Որոնման տարածք", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Համեմատել՝ օգտագործելով կանոնավոր արտահայտություններ", + "Common.Views.SearchPanel.textName": "Անուն", + "Common.Views.SearchPanel.textNoMatches": "Համընկնում չկա", + "Common.Views.SearchPanel.textNoSearchResults": "Որոնման արդյունքներ չկան", + "Common.Views.SearchPanel.textReplace": "Փոխարինել", + "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", + "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", + "Common.Views.SearchPanel.textSearch": "Որոնել", + "Common.Views.SearchPanel.textSearchOptions": "Որոնման ընտրանքներ", + "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", + "Common.Views.SearchPanel.textSelectDataRange": "Ընտրեք Տվյալների տիրույթ", + "Common.Views.SearchPanel.textSheet": "Թերթ", + "Common.Views.SearchPanel.textSpecificRange": "Հատուկ միջակայք", + "Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան", + "Common.Views.SearchPanel.textValue": "Արժեք", + "Common.Views.SearchPanel.textValues": "Արժեքներ", + "Common.Views.SearchPanel.textWholeWords": "Միայն ամբողջական բառերը", + "Common.Views.SearchPanel.textWithin": "Շրջանակներում", + "Common.Views.SearchPanel.textWorkbook": "Աշխատագիրք", + "Common.Views.SearchPanel.tipNextResult": "Հաջորդ արդյունքը", + "Common.Views.SearchPanel.tipPreviousResult": "Նախորդ արդյունքը", + "Common.Views.SelectFileDlg.textLoading": "Բեռնվում է", + "Common.Views.SelectFileDlg.textTitle": "Ընտրել տվյալների աղբյուր", "Common.Views.SignDialog.textBold": "Թավատառ", "Common.Views.SignDialog.textCertificate": "Վկայական", "Common.Views.SignDialog.textChange": "Փոխել", + "Common.Views.SignDialog.textInputName": "Մուտքագրել ստորագրողի անունը", "Common.Views.SignDialog.textItalic": "Շեղատառ", + "Common.Views.SignDialog.textNameError": "Ստորագրողի անունը չպետք է դատարկ լինի:", "Common.Views.SignDialog.textPurpose": "Փաստաթղթի ստորագրման նպատակը", + "Common.Views.SignDialog.textSelect": "Ընտրել", + "Common.Views.SignDialog.textSelectImage": "Ընտրել պատկեր", + "Common.Views.SignDialog.textSignature": "Ստորագրության տեսքը՝", "Common.Views.SignDialog.textTitle": "Ստորագրել փաստաթուղթը", + "Common.Views.SignDialog.textUseImage": "կամ սեղմել «Ընտրել պատկերը»՝ նկարը որպես ստորագրություն օգտագործելու համար", + "Common.Views.SignDialog.textValid": "Վավեր է %1-ից մինչև %2", + "Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն", + "Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ", "Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին հավելել մեկնաբանություն ստորագրության պատուհանում", + "Common.Views.SignSettingsDialog.textInfo": "Ստորագրողի տեղեկություն", "Common.Views.SignSettingsDialog.textInfoEmail": "Էլ․ հասցե", + "Common.Views.SignSettingsDialog.textInfoName": "Անուն", + "Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը", + "Common.Views.SignSettingsDialog.textInstructions": "Հրահանգներ ստորագրողի համար", + "Common.Views.SignSettingsDialog.textShowDate": "Ցուցադրել ստորագրության ամսաթիվը ստորագրության տողում", + "Common.Views.SignSettingsDialog.textTitle": "Ստորագրության տեղակայում", + "Common.Views.SignSettingsDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "Common.Views.SymbolTableDialog.textCharacter": "Գրանշան", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX արժեքը", "Common.Views.SymbolTableDialog.textCopyright": "Հեղինակային իրավունքի նշան", "Common.Views.SymbolTableDialog.textDCQuote": "Փակող կրկնակի չակերտ", + "Common.Views.SymbolTableDialog.textDOQuote": "Բացել կրկնակի փակագծերը", + "Common.Views.SymbolTableDialog.textEllipsis": "Հորիզոնական էլիպսներ", "Common.Views.SymbolTableDialog.textEmDash": "M-աչափ գիծ", "Common.Views.SymbolTableDialog.textEmSpace": "M-աչափ բացատ", "Common.Views.SymbolTableDialog.textEnDash": "Միջին գծիկ", "Common.Views.SymbolTableDialog.textEnSpace": "Միջին բացատ", + "Common.Views.SymbolTableDialog.textFont": "Տառատեսակ ", + "Common.Views.SymbolTableDialog.textNBHyphen": "Չընդատվող գծիկ", + "Common.Views.SymbolTableDialog.textNBSpace": "Առանց ընդմիջման տարածություն", + "Common.Views.SymbolTableDialog.textPilcrow": "Պարբերության նշան", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 M-աչափ բացատ", + "Common.Views.SymbolTableDialog.textRange": "Ընդգրկույթ", + "Common.Views.SymbolTableDialog.textRecent": "Վերջերս օգտագործված նշաններ", + "Common.Views.SymbolTableDialog.textRegistered": "Գրանցված նշան", "Common.Views.SymbolTableDialog.textSCQuote": "Փակող միագիծ չակերտ", + "Common.Views.SymbolTableDialog.textSection": "Բաժնի նշան", + "Common.Views.SymbolTableDialog.textShortcut": "Դյուրանցման ստեղն", + "Common.Views.SymbolTableDialog.textSHyphen": "Փափուկ տողադարձիչ", + "Common.Views.SymbolTableDialog.textSOQuote": "Բացել մեկ փակագիծ", + "Common.Views.SymbolTableDialog.textSpecial": "Հատուկ գրանշաններ", + "Common.Views.SymbolTableDialog.textSymbols": "Նշաններ", + "Common.Views.SymbolTableDialog.textTitle": "Նշան", + "Common.Views.SymbolTableDialog.textTradeMark": "Ապրանքանիշի նշան", "Common.Views.UserNameDialog.textDontShow": "Այլևս չհարցնել", + "Common.Views.UserNameDialog.textLabel": "Պիտակ։", + "Common.Views.UserNameDialog.textLabelError": "Պիտակը չպետք է դատարկ լինի", "SSE.Controllers.DataTab.textColumns": "Սյունակներ", + "SSE.Controllers.DataTab.textEmptyUrl": "Դուք պետք է նշեք URL-ը", + "SSE.Controllers.DataTab.textRows": "Տողեր", + "SSE.Controllers.DataTab.textWizard": "Տեքստ սյունակներ", "SSE.Controllers.DataTab.txtDataValidation": "Տվյալների վավերացում", "SSE.Controllers.DataTab.txtExpand": "Ընդարձակել", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Ընտրության կողքին գտնվող տվյալները չեն հեռացվի: Ցանկանու՞մ եք ընդլայնել ընտրությունը՝ ներառելով հարակից տվյալները, թե՞ շարունակել միայն ներկայումս ընտրված բջիջներով:", + "SSE.Controllers.DataTab.txtExtendDataValidation": "Ընտրությունը պարունակում է որոշ բջիջներ՝ առանց տվյալների վավերացման կարգավորումների:
Ցանկանու՞մ եք ընդլայնել տվյալների վավերացումը այս բջիջների վրա:", + "SSE.Controllers.DataTab.txtImportWizard": "Տեքստի ներմուծման հրաշագործ", + "SSE.Controllers.DataTab.txtRemDuplicates": "Հեռացրեք կրկնօրինակները", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "Ընտրությունը պարունակում է մեկից ավելի վավերացման տեսակներ:
Ջնջե՞լ ընթացիկ կարգավորումները և շարունակե՞լ:", + "SSE.Controllers.DataTab.txtRemSelected": "Հեռացնել ընտրվածում", + "SSE.Controllers.DataTab.txtUrlTitle": "Տեղադրել URL-ի տվյալների", "SSE.Controllers.DocumentHolder.alignmentText": "Հավասարեցում", "SSE.Controllers.DocumentHolder.centerText": "Կենտրոն", "SSE.Controllers.DocumentHolder.deleteColumnText": "Ջնջել սյունակ", "SSE.Controllers.DocumentHolder.deleteRowText": "Ջնջել տողը", "SSE.Controllers.DocumentHolder.deleteText": "Ջնջել", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "Հղման հղումը գոյություն չունի:Խնդրում ենք ուղղել հղումը կամ ջնջել այն։", + "SSE.Controllers.DocumentHolder.guestText": "Հյուր", "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Սյունակ ձախից", "SSE.Controllers.DocumentHolder.insertColumnRightText": "Սյունակ աջից", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Տող վերևում", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Տող ներքևում", + "SSE.Controllers.DocumentHolder.insertText": "Զետեղել", + "SSE.Controllers.DocumentHolder.leftText": "Ձախ", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Զգուշացում", + "SSE.Controllers.DocumentHolder.rightText": "Աջ", "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Ինքնաշտկման ընտրանքներ", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Սյունակի լայնությունը {0} խորհրդանիշ ({1} պիքսել)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Տողի բարձրությունը {0} միավոր ({1} պիքսել)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Սեղմեք հղման վրա՝ այն բացելու համար կամ սեղմեք և պահեք մկնիկի կոճակը՝ բջիջն ընտրելու համար:", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Տեղադրել ձախ", + "SSE.Controllers.DocumentHolder.textInsertTop": "Տեղադրել վերևը", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Կպցնել հատուկ", + "SSE.Controllers.DocumentHolder.textStopExpand": "Դադարեցրեք աղյուսակների ավտոմատ ընդլայնումը", + "SSE.Controllers.DocumentHolder.textSym": "սիմ", + "SSE.Controllers.DocumentHolder.tipIsLocked": "Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", "SSE.Controllers.DocumentHolder.txtAboveAve": "Միջինից բարձր", "SSE.Controllers.DocumentHolder.txtAddBottom": "Դնել ստորին եզրագիծ", "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Դնել կոտորակի գիծ", @@ -226,6 +524,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Դնել ուղղահայաց գիծ", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Հավասարեցում ըստ նիշի", "SSE.Controllers.DocumentHolder.txtAll": "(Բոլորը)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Վերադարձնում է աղյուսակի ողջ բովանդակությունը, կամ հատկորոշված աղյուսակի սյունակները` ներառյալ սյունակների էջագլուխները, տվյալները և միագումարի տողերը:", "SSE.Controllers.DocumentHolder.txtAnd": "և", "SSE.Controllers.DocumentHolder.txtBegins": "Սկսվում է ", "SSE.Controllers.DocumentHolder.txtBelowAve": "Միջինից ցածր", @@ -235,6 +534,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Սյունակ", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Սյունակի հավասարեցում", "SSE.Controllers.DocumentHolder.txtContains": "Պարունակում է", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Վերադարձնում էաղյուսակի կամ աղյուսակի հատկորոշված սյունակների տվյալների բջիջները", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Նվազեցնել արգումենտի չափը", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Ջնջել արգումենտը", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Ջնջել ձեռնադիր ընդհատումը", @@ -248,92 +548,257 @@ "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Հավասար է բջիջների գույնին", "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Հավասար է տառատեսակի գույնին", "SSE.Controllers.DocumentHolder.txtExpand": "Ընդարձակել և տեսակավորել", + "SSE.Controllers.DocumentHolder.txtExpandSort": "Ընտրության կողքին գտնվող տվյալները չեն տեսակավորվի:Ցանկանու՞մ եք ընդլայնել ընտրությունը՝ ներառելով հարակից տվյալները, թե՞ շարունակել տեսակավորել միայն ներկայումս ընտրված վանդակները:", "SSE.Controllers.DocumentHolder.txtFilterBottom": "Ներքև", "SSE.Controllers.DocumentHolder.txtFilterTop": "Վերև", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Փոխել հորիզոնական կոտորակի", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Փոխել շեղ կոտորակի", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Փոխել շեղջված կոտորակի ", + "SSE.Controllers.DocumentHolder.txtGreater": "Ավելի մեծ քան", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Ավելի մեծ կամ հավասար", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Նիշը տեքստի վերևում", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Նիշքը տեքստի տակ", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Վերադարձնում է սյունակների էջագլուխները` աղյուսակի կամ աղյուսակի հատկորոշված սյունակների համար", + "SSE.Controllers.DocumentHolder.txtHeight": "Բարձրություն", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Թաքցնել ստորին Եզրագիծը", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Թաքցնել ստորին սահմանափակումը", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Թաքցնել փակող փակագիծը", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Թաքցնել աստիճանը", + "SSE.Controllers.DocumentHolder.txtHideHor": "Թաքցնել հորիզոնական գիծը", + "SSE.Controllers.DocumentHolder.txtHideLB": "Թաքցնել ձախ ներքևի տողը", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Թաքցնել ձախ եզրագիծը", + "SSE.Controllers.DocumentHolder.txtHideLT": "Թաքցնել ձախ վերին տողը", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Թաքցնել բացման փակագիծը", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Թաքցնել տեղապահը", + "SSE.Controllers.DocumentHolder.txtHideRight": "Թաքցնել աջ եզրագիծը", + "SSE.Controllers.DocumentHolder.txtHideTop": "Թաքցնել վերին եզրագիծը", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Թաքցնել վերին սահմանը", + "SSE.Controllers.DocumentHolder.txtHideVer": "Թաքցնել ուղղահայաց գիծը", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Տեքստի ներմուծման հրաշագործ", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Մեծացնել արգումենտի չափը", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Զետեղել արգումենտ հետո՝", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Զետեղել արգումենտ առաջ՝", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Զետեղել ձեռքի ընդհատ", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Հավասարումը դնել հետո՝", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Հավասարումը դնել առաջ՝", + "SSE.Controllers.DocumentHolder.txtItems": "Նյութեր", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Պահպանել միայն տեքստը", + "SSE.Controllers.DocumentHolder.txtLess": "Ավելի քիչ քան ", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Պակաս կամ հավասար", "SSE.Controllers.DocumentHolder.txtLimitChange": "Փոխել սահմանների տեղադրությունը", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Տեքստի սահմանափակում", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Սահմանափակում տեքստի տակ", "SSE.Controllers.DocumentHolder.txtLockSort": "Տվյալները գտնվել են ձեր ընտրության կողքին, բայց դուք չունեք բավարար թույլտվություններ այդ բջիջները փոխելու համար:
Ցանկանու՞մ եք շարունակել ընթացիկ ընտրությունը:", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Փոփոխել փակագծերի չափը՝ ըստ արգումենտի բարձրության", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Մատրիցային հավասարեցում", + "SSE.Controllers.DocumentHolder.txtNoChoices": "Վանդակը լցնելու համար ընտրություն չկա:
Փոխարինման համար կարող են ընտրվել միայն սյունակից տեքստային արժեքները:", "SSE.Controllers.DocumentHolder.txtNotBegins": "Չի սկսվում հետևյալով", "SSE.Controllers.DocumentHolder.txtNotContains": "Չի պարունակում", "SSE.Controllers.DocumentHolder.txtNotEnds": "չի ավարտվում հետևյալով", "SSE.Controllers.DocumentHolder.txtNotEquals": "Հավասար չէ", + "SSE.Controllers.DocumentHolder.txtOr": "կամ", "SSE.Controllers.DocumentHolder.txtOverbar": "Տեքստի վրա գիծ", + "SSE.Controllers.DocumentHolder.txtPaste": "Փակցնել", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Բանաձև առանց սահմանների", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Բանաձև + սյունակի լայնություն", "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Նպատակակետի ձևավորում", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Կպցնել միայն ֆորմատավորում", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Բանաձև + թվի ձևաչափ", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Կպցնել միայն բանաձև", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Բանաձև + բոլոր ձևաչափումները", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Կպցնել հղումը", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Կապված նկար", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Միավորել պայմանական ձևաչափումը", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Նկար", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Աղբյուրի ձևաչափում", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Փոխադրել", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Արժեք + բոլոր ձևաչափումները", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Արժեք + թվի ձևաչափ", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Տեղադրեք միայն արժեքը", + "SSE.Controllers.DocumentHolder.txtPercent": "Տոկոսային", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Կրկնել աղյուսակի ավտոմատ ընդլայնումը", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Հեռացնել կոտորակի գիծը", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Հեռացնել սահմանը", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Ջնջել շեշտադրման նշանը", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Ջնջել վահանակը", "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Ցանկանու՞մ եք հեռացնել այս ստորագրությունը:
Այն հնարավոր չէ չեղարկել:", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Հեռացնել գրերը", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Հեռացնել վարգիրը", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Հեռացնել վերևի գիծը", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Շարքի բարձրությունը", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Սկրիպտներ տեքստից հետո", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Սկրիպտներ տեքստից առաջ", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Ցուցադրել ստորին սահմանը", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Ցուցադրել փակվող փակագիծը", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Ցուցադրել աստիճանը", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Ցուցադրել բացող ուղղանկյուն փակագիծը", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Ցուցադրել տեղապահը", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Ցուցադրել առավելագույն սահմանաչափը", + "SSE.Controllers.DocumentHolder.txtSorting": "Տեսակավորում", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Ընտրված տեսակավորում", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Ձգվող փակագծեր", "SSE.Controllers.DocumentHolder.txtThisRowHint": "Ընտրեք նշված սյունակի միայն այս տողը", "SSE.Controllers.DocumentHolder.txtTop": "Վերև", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Վերադարձնում է աղյուսակի կամ աղյուսակի հատկորոշված սյունակների միագումարի տողերը", "SSE.Controllers.DocumentHolder.txtUnderbar": "Տեքստի տակ գիծ", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Չեղարկել աղյուսակի ավտոմատ ընդլայնումը", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Օգտագործեք տեքստի ներմուծման մոգ", "SSE.Controllers.DocumentHolder.txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:
Վստա՞հ եք, որ ցանկանում եք շարունակել:", + "SSE.Controllers.DocumentHolder.txtWidth": "Լայնք", "SSE.Controllers.FormulaDialog.sCategoryAll": "Բոլորը", "SSE.Controllers.FormulaDialog.sCategoryCube": "Խորանարդ", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Տվյալների բազա", "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Ամսաթիվ և ժամ", "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Ճարտարագիտական", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Ֆինանսական", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Տեղեկատվություն ", "SSE.Controllers.FormulaDialog.sCategoryLast10": "Վերջին 10 օգտագործվածներ", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Տրամաբանական", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Որոնում և հղումներ", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Մաթեմ. և եռանկյունաչափություն", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Վիճակագրական", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Տեքստ և տվյալներ", "SSE.Controllers.LeftMenu.newDocumentTitle": "Անանուն աղյուսակաթերթ", "SSE.Controllers.LeftMenu.textByColumns": "Սյունակներով", "SSE.Controllers.LeftMenu.textByRows": "Տողերով", + "SSE.Controllers.LeftMenu.textFormulas": "Բանաձևեր", "SSE.Controllers.LeftMenu.textItemEntireCell": "Բջիջների ամբողջ պարունակությունը", + "SSE.Controllers.LeftMenu.textLoadHistory": "Տարբերակների պատմության բեռնում...", + "SSE.Controllers.LeftMenu.textLookin": "Որոնման տարածք", + "SSE.Controllers.LeftMenu.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "Որոնողական աշխատանքները կատարվել են։ Փոխարինված դեպքերը՝ {0}", + "SSE.Controllers.LeftMenu.textSearch": "Որոնել", + "SSE.Controllers.LeftMenu.textSheet": "Թերթ", + "SSE.Controllers.LeftMenu.textValues": "Արժեքներ", + "SSE.Controllers.LeftMenu.textWarning": "Զգուշացում", + "SSE.Controllers.LeftMenu.textWithin": "Շրջանակներում", + "SSE.Controllers.LeftMenu.textWorkbook": "Աշխատագիրք", + "SSE.Controllers.LeftMenu.txtUntitled": "Անանուն", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Եթե շարունակեք պահպանումն այս ձևաչափով, բոլոր հատկությունները՝ տեքստից բացի, կկորչեն։
Վստա՞հ եք, որ ցանկանում եք շարունակել:", + "SSE.Controllers.Main.confirmMoveCellRange": "Նպատակային բջիջների տիրույթը կարող է պարունակել տվյալներ: Շարունակե՞լ գործողությունը:", + "SSE.Controllers.Main.confirmPutMergeRange": "Աղբյուրի տվյալները պարունակում էին միավորված բջիջներ:
Դրանք ապամիաձուլվել էին նախքան աղյուսակում տեղադրվելը:", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Վերնագրի տողի բանաձևերը կհեռացվեն և կվերածվեն ստատիկ տեքստի:
Ցանկանու՞մ եք շարունակել։", "SSE.Controllers.Main.convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։", "SSE.Controllers.Main.criticalErrorExtText": "Սեղմեք «լավ» ու վերադարձեք փաստաթղթերի ցանկին", "SSE.Controllers.Main.criticalErrorTitle": "Սխալ", "SSE.Controllers.Main.downloadErrorText": "Ներբեռնումը ձախողվեց։", "SSE.Controllers.Main.downloadTextText": "Աղյուսակաթերթի ներբեռնում...", "SSE.Controllers.Main.downloadTitleText": "Աղյուսակաթերթի ներբեռնում", + "SSE.Controllers.Main.errNoDuplicates": "Կրկնվող արժեքներ չեն գտնվել:", "SSE.Controllers.Main.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։
Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։", "SSE.Controllers.Main.errorArgsRange": "Բանաձևում սխալ կա՝
արգումենտի սխալ ընդգրկույթ։", + "SSE.Controllers.Main.errorAutoFilterChange": "Գործողությունը չի թույլատրվում, քանի որ փորձ է արվում թերթում տեղաշարժել աղյուսակի վանդակներ։", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Ընտրված վանդակների համար հնարավոր չեղավ կատարել գործողությունը, քանի որ չեք կարող տեղափոխել աղյուսակի մի մասը։
Ընտրեք տվյալների ուրիշ ընդգրկույթ՝ ամբողջ աղյուսակը տեղափոխելու համար, և նորից փորձեք։", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Ընտրված վանդակների համար հնարավոր չեղավ կատարել գործողությունը։
Ընտրրեք տվյալների միատեսակ ընդգրկույթ, որը եղածից տարբեր է, և նորից փորձեք։", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Գործողությունը չի կարող կատարվել, քանի որ տարածքն ունի զտված վանդակներ։
Ապաթաքցրեք զտիչով թաքցված տարրերը և նորից փորձեք։", + "SSE.Controllers.Main.errorBadImageUrl": "Նկարի URL-ը սխալ է", "SSE.Controllers.Main.errorCannotUngroup": "Հնարավոր չէ ապախմբավորել: Ուրվագիծ սկսելու համար ընտրեք մանրամասների տողերը կամ սյունակները և խմբավորեք դրանք:", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Դուք չեք կարող օգտագործել այս հրամանը պաշտպանված թերթիկի վրա:Այս հրամանն օգտագործելու համար պաշտպանազերծեք թերթիկը:
Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:", + "SSE.Controllers.Main.errorChangeArray": "Չեք կարող փոխել զանգվածի մի մասը։", + "SSE.Controllers.Main.errorChangeFilteredRange": "Սա կփոխի ձեր աշխատաթերթի զտված ընդգրկույթը:
Այս առաջադրանքն ավարտելու համար խնդրում ենք հեռացնել Ավտոզտիչները:", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Բջիջը կամ գծապատկերը, որը փորձում եք փոխել, գտնվում է պաշտպանված թերթիկի վրա:
Փոփոխություն անելու համար հանեք թերթի պաշտպանությունը: Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Սպասարկիչի հետ կապն ընդհատվել է։ Փաստաթուղթն այս պահին չի կարող խմբագրվել։", "SSE.Controllers.Main.errorConnectToServer": "Փաստաթուղթը չպահպանվեց։ Ստուգեք միացման կարգավորումները կամ կապ հաստատեք ձեր վարիչի հետ։
Երբ սեղմեք «Լավ» կոճակը, ձեզ կառաջարկվի փաստաթուղթը ներբեռնել։", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Այս հրահանգը չի կարող կիրառվել բազմակի ընտրման դեպքում։
Ընտրեք միայն մեկ ընդգրկույթ և նորից փորձեք։", "SSE.Controllers.Main.errorCountArg": "Բանաձևում սխալ կա՝
արգումենտների սխալ քանակ։", "SSE.Controllers.Main.errorCountArgExceed": "Բանաձևում սխալ կա։
Արգումենտների քանակը գերազանցվել է։", + "SSE.Controllers.Main.errorCreateDefName": "Անվանված առկա ընդգրկույթներն այս պահին չեն կարող խմբագրվել և նորերը չեն կարող ստեղծվել,
քանի որ դրանց մի մասը խմբագրվում է։", "SSE.Controllers.Main.errorDatabaseConnection": "Արտաքին սխալ։
Տվյալաշտեմարանին միանալու սխալ։ Եթե այն շարունակվի, դիմեք աջակցության ծառայությանը։", "SSE.Controllers.Main.errorDataEncrypted": "Ընդունվել են գաղտնագրված փոփոխությունները. դրանք չեն կարող վերծանվել։", + "SSE.Controllers.Main.errorDataRange": "Տվյալների սխալ ընդգրկույթ։", + "SSE.Controllers.Main.errorDataValidate": "Ձեր մուտքագրած արժեքը վավեր չէ:Օգտագործողը ունի սահմանափակ արժեքներ, որոնք կարող են մուտքագրվել այս վանդակում:", "SSE.Controllers.Main.errorDefaultMessage": "Սխալի կոդ՝ %1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Դուք փորձում եք ջնջել մի սյունակ, որը պարունակում է կողպված բջիջ: Կողպված բջիջները չեն կարող ջնջվել, քանի դեռ աշխատանքային թերթը պաշտպանված է:
Կողպված բջիջը ջնջելու համար չպաշտպանեք թերթը: Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Դուք փորձում եք ջնջել մի տող, որը պարունակում է կողպված բջիջ: Կողպված բջիջները չեն կարող ջնջվել, քանի դեռ աշխատանքային թերթը պաշտպանված է:
Կողպված բջիջը ջնջելու համար չպաշտպանեք թերթը: Ձեզանից կարող է պահանջվել մուտքագրել գաղտնաբառ:", "SSE.Controllers.Main.errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում տեղի ունեցավ սխալ։
«Ներբեռնել որպես...» հրամանով պահպանեք նիշքի պահուստային պատճենը Ձեր համակարգչի կոշտ սկավառակում։", "SSE.Controllers.Main.errorEditingSaveas": "Փաստաթղթի հետ աշխատանքի ընթացքում տեղի ունեցավ սխալ։
«Պահպանել որպես...» հրամանով պահպանեք նիշքի պահուստային պատճենը Ձեր համակարգչի կոշտ սկավառակում։", + "SSE.Controllers.Main.errorEditView": "Գոյություն ունեցող թերթերի տեսքը հնարավոր չէ խմբագրել, իսկ նորերը չեն կարող ստեղծվել այս պահին, քանի որ դրանցից մի քանիսը խմբագրվում են:", + "SSE.Controllers.Main.errorEmailClient": "Էլփոստի հաճախորդ չի գտնվել:", "SSE.Controllers.Main.errorFilePassProtect": "Նիշքն ունի գաղտնաբառ և չի կարող բացվել։", "SSE.Controllers.Main.errorFileRequest": "Արտաքին սխալ։
Նիշքի հարցման սխալ։ Եթե այն կրկնվի, դիմեք աջակցության ծառայությանը։", + "SSE.Controllers.Main.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:
Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "SSE.Controllers.Main.errorFileVKey": "Արտաքին սխալ։
Անվտանգության սխալ բանալի։ Եթե սխալը շարունակվի, դիմեք աջակցության ծառայությանը։", "SSE.Controllers.Main.errorFillRange": "Չհաջողվեց լրացնել վանդակների ընտրվածքը։
Բոլոր միավորված վանդակները պետք է նույնաչափ լինեն։", "SSE.Controllers.Main.errorForceSave": "Փաստաթղթի պահպանման ժամանակ տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքը Ձեր համակարգչի կոշտ սկավառակում կամ ավելի ուշ նորից փորձեք։", "SSE.Controllers.Main.errorFormulaName": "Բանաձևում սխալ կա՝
բանաձևի սխալ անուն։", + "SSE.Controllers.Main.errorFormulaParsing": "Ներքին սխալ՝ բանաձևը վերլուծելիս։", + "SSE.Controllers.Main.errorFrmlMaxLength": "Բանաձևի չափը գերազանցում է թույլատրելի 8192 նիշը։
Խմբագրեք այն և նորից փորձեք։", + "SSE.Controllers.Main.errorFrmlMaxReference": "Չեք կարող մտցնել այս բանաձևը, քանի որ այն ունի շատ արժեքներ,
վանդակների հղումներ և/կամ անուններ։", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Բանաձևի տեքստային արժեքները 255-ից ավելի շատ նիշ չպիտի ունենան։
Կիրառեք ՇՂԹԱՅԱԿՑԵԼ ֆունկցիան կամ շղթայակցման օպերատորը (&)։", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Ֆունկցիան հղում է գոյություն չունեցող աղյուսակաթերթի։
Ստուգեք տվյալներն ու նորից փորձեք։", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "Գործողությունը չի կարող ավարտվել ընտրված բջիջների տիրույթի համար:
Ընտրեք ընդգրկույթ, որպեսզի աղյուսակի առաջին տողը լինի նույն տողում
և արդյունքում աղյուսակը համընկնի ընթացիկի հետ:", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Գործողությունը չի կարող ավարտվել ընտրված բջիջների տիրույթի համար:
Ընտրեք ընդգրկույթ, որը չի ներառում այլ աղյուսակներ:", "SSE.Controllers.Main.errorInvalidRef": "Մուտքագրեք ընտրվածքի համար ճիշտ անուն կամ անցման համար թույլատրելի հղում։", + "SSE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ", + "SSE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Առանցքային աղյուսակ ստեղծելու համար օգտագործեք տվյալներ, որոնք կազմակերպված են որպես ցանկ՝ պիտակավորված սյունակներով:", + "SSE.Controllers.Main.errorLoadingFont": "Տառատեսակները բեռնված չեն:
Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Տեղադրության կամ տվյալների տիրույթի հղումը վավեր չէ:", + "SSE.Controllers.Main.errorLockedAll": "Գործողությունը չկատարվեց, քանի որ մեկ այլ օգտատեր կողպել է աղյուսակաթերթը։", + "SSE.Controllers.Main.errorLockedCellPivot": "Դուք չեք կարող փոխել տվյալները առանցքային աղյուսակի ներսում:", + "SSE.Controllers.Main.errorLockedWorksheetRename": "Թերթն այս պահին չի կարող վերանվանվել, քանի որ վերանվանվում է մի ուրիշ օգտատիրոջ կողմից։", + "SSE.Controllers.Main.errorMaxPoints": "Գծապատկերի շարքի կետերի առավելագույն քանակը 4096 է։", "SSE.Controllers.Main.errorMoveRange": "Միավորված վանդակի մի մասը հնարավոր չէ փոխել", + "SSE.Controllers.Main.errorMoveSlicerError": "Աղյուսակ կտրատող սարքերը չեն կարող պատճենվել աշխատանքային գրքույկից մյուսը:
Փորձեք նորից՝ ընտրելով ամբողջ աղյուսակը և կտրատողները:", + "SSE.Controllers.Main.errorMultiCellFormula": "Զանգվածի բազմավանդակ բանաձևերը թույլատրված չեն աղյուսակներում։", + "SSE.Controllers.Main.errorNoDataToParse": "Ոչ մի տվյալ չի ընտրվել վերլուծելու համար:", "SSE.Controllers.Main.errorOpenWarning": "Նիշքի բանաձևերից մեկն ուներ
նիշերի անթույլատրելի մեծ քանակ, ուստի ջնջվեց։", + "SSE.Controllers.Main.errorOperandExpected": "Մուտքագրված ֆունկցիայի շարահյուսությունը սխալ է։ Ստուգեք՝ բաց չե՞ք թողել փակագծերից մեկը՝ ( կամ )։", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "Ձեր տրամադրած գաղտնաբառը ճիշտ չէ:
Ստուգեք, որ CAPS LOCK ստեղնը անջատված է և օգտագործեք ճիշտ գլխատառացումը:", + "SSE.Controllers.Main.errorPasteMaxRange": "Պատճենման ու փակցման տարածքները չեն համընկնում։
Պատճենված վանդակները փակցնելու համար ընտրեք նույնաչափ տարածք կամ կտտացրեք տողի առաջին վանդակի վրա։", + "SSE.Controllers.Main.errorPasteMultiSelect": "Այս գործողությունը չի կարող կատարվել բազմակի տիրույթի ընտրության դեպքում:
Ընտրեք մեկ տիրույթ և նորից փորձեք:", + "SSE.Controllers.Main.errorPasteSlicerError": "Սեղանի կտրիչները չեն կարող պատճենվել մի աշխատանքային գրքույկից մյուսը:", "SSE.Controllers.Main.errorPivotGroup": "Հնարավոր չէ խմբավորել այդ ընտրությունը:", "SSE.Controllers.Main.errorPivotOverlap": "Ամփոփիչ աղյուսակի հաշվետվությունը չի կարող համընկնել աղյուսակի վրա:", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Ամփոփիչ աղյուսակի հաշվետվությունը պահվել է առանց հիմքում ընկած տվյալների:
Օգտագործեք «Թարմացնել» կոճակը՝ հաշվետվությունը թարմացնելու համար:", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Ցավոք, հնարավոր չէ ծրագրի այս տարբերակում միանգամից տպել 1500-ից ավելի էջ։
Այս սահմանափակումը կվերացվի գալիք թողարկումներում։", + "SSE.Controllers.Main.errorProcessSaveResult": "Պահպանումը խափանվեց", "SSE.Controllers.Main.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։", "SSE.Controllers.Main.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։", "SSE.Controllers.Main.errorSessionIdle": "Փաստաթուղթը երկար ժամանակ չի խմբագրվել։ Նորի՛ց բեռնեք էջը։", + "SSE.Controllers.Main.errorSessionToken": "Սպասարկիչի հետ կապն ընդհատվել է։ Խնդրում ենք էջը թարմացնել։", + "SSE.Controllers.Main.errorSetPassword": "Գաղտնաբառը չհաջողվեց սահմանել:", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Տեղադրության հղումը վավեր չէ, քանի որ բջիջները բոլորը նույն սյունակում կամ տողում չեն:
Ընտրեք բջիջները, որոնք բոլորը մեկ սյունակում կամ տողում են:", + "SSE.Controllers.Main.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", "SSE.Controllers.Main.errorToken": "Փաստաթղթի անվտանգության կտրոնը ճիշտ չի ձևակերպված։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "SSE.Controllers.Main.errorTokenExpire": "Փաստաթղթի անվտանգության կտրոնի ժամկետն անցել է։
Դիմեք փաստաթղթերի սպասարկիչի ձեր վարիչին։", "SSE.Controllers.Main.errorUnexpectedGuid": "Արտաքին սխալ։
Անսպասելի GUID։ Եթե սխալը շարունակվի, դիմեք աջակցության ծառայությանը։", "SSE.Controllers.Main.errorUpdateVersion": "Նիշքի տարբերակը փոխվել է։ Էջը նորից կբեռնվի։", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "SSE.Controllers.Main.errorUserDrop": "Այս պահին նիշքն անհասանելի է։", "SSE.Controllers.Main.errorUsersExceed": "Օգտատերերի՝ սակագնային պլանով թույլատրված քանակը գերազանցվել է։", "SSE.Controllers.Main.errorViewerDisconnect": "Միացումն ընդհատվել է։ Դուք կարող եք շարունակել դիտել փաստաթուղթը,
բայց չեք կարողանա ներբեռնել կամ տպել, մինչև միացումը չվերականգնվի։", "SSE.Controllers.Main.errorWrongBracketsCount": "Բանաձևում սխալ կա՝
փակագծերի սխալ քանակ։", "SSE.Controllers.Main.errorWrongOperator": "Բանաձևում սխալ կա՝ սխալ օպերատոր։
Ուղղեք սխալը։", + "SSE.Controllers.Main.errorWrongPassword": "Ձեր տրամադրած գաղտնաբառը ճիշտ չէ:", "SSE.Controllers.Main.errRemDuplicates": "Գտնվել և ջնջվել են կրկնօրինակ արժեքներ՝ {0}, մնացել են եզակի արժեքներ՝ {1}:", "SSE.Controllers.Main.leavePageText": "Այս աղյուսակաթերթում ունեք չպահպանված փոփոխումներ։ Դրանք պահպանելու համար սեղմեք «Մնալ այս էջում», ապա՝ «Պահպանել»։ Չպահպանված փոփոխումները չեղարկելու համար սեղմեք «Լքել այս էջը»։", "SSE.Controllers.Main.leavePageTextOnClose": "Այս աղյուսակի բոլոր չպահված փոփոխությունները կկորչեն:
Սեղմեք «Չեղարկել», ապա «Պահել»՝ դրանք պահպանելու համար: Սեղմեք «OK»՝ չպահված բոլոր փոփոխությունները հեռացնելու համար:", + "SSE.Controllers.Main.loadFontsTextText": "Տվյալների բեռնում...", + "SSE.Controllers.Main.loadFontsTitleText": "Տվյալների բեռնում", + "SSE.Controllers.Main.loadFontTextText": "Տվյալների բեռնում...", + "SSE.Controllers.Main.loadFontTitleText": "Տվյալների բեռնում", + "SSE.Controllers.Main.loadImagesTextText": "Նկարների բեռնում...", + "SSE.Controllers.Main.loadImagesTitleText": "Նկարների բեռնում", + "SSE.Controllers.Main.loadImageTextText": "Նկարի բեռնում...", + "SSE.Controllers.Main.loadImageTitleText": "Նկարի բեռնում", "SSE.Controllers.Main.loadingDocumentTitleText": "Աղյուսակաթերթի բեռնում", + "SSE.Controllers.Main.notcriticalErrorTitle": "Զգուշացում", "SSE.Controllers.Main.openErrorText": "Նիշքի բացման ժամանակ տեղի ունեցավ սխալ", "SSE.Controllers.Main.openTextText": "Աղյուսակաթերթի բացում...", "SSE.Controllers.Main.openTitleText": "Աղյուսակաթերթի բացում", "SSE.Controllers.Main.pastInMergeAreaError": "Միավորված վանդակի մի մասը հնարավոր չէ փոխել", "SSE.Controllers.Main.printTextText": "Աղյուսակաթերթի տպում...", "SSE.Controllers.Main.printTitleText": "Աղյուսակաթերթի տպում", + "SSE.Controllers.Main.reloadButtonText": "Վերբեռնել էջը", "SSE.Controllers.Main.requestEditFailedMessageText": "Ինչ-որ մեկն այս պահին խմբագրում է փաստաթուղթը։ Ավելի ուշ նորի՛ց փորձեք։", "SSE.Controllers.Main.requestEditFailedTitleText": "Մատչումն արգելված է", "SSE.Controllers.Main.saveErrorText": "Նիշքի պահպանման ժամանակ տեղի ունեցավ սխալ", + "SSE.Controllers.Main.saveErrorTextDesktop": "Այս ֆայլը հնարավոր չէ պահպանել կամ ստեղծել:
Հնարավոր պատճառներն են.
1. Ֆայլը միայն կարդալու է:2. Ֆայլը խմբագրվում է այլ օգտվողների կողմից:
Սկավառակը լցված է կամ վնասված է:", "SSE.Controllers.Main.saveTextText": "Պահպանել աղյուսակաթերթը...", "SSE.Controllers.Main.saveTitleText": "Պահպանել աղյուսակաթերթը", + "SSE.Controllers.Main.scriptLoadError": "Կապը խիստ թույլ է, բաղադրիչների մի մասը չբեռնվեց։ Խնդրում ենք էջը թարմացնել։", "SSE.Controllers.Main.textAnonymous": "Անանուն", "SSE.Controllers.Main.textApplyAll": "Գործադրել բոլոր հավասարումների համար", "SSE.Controllers.Main.textBuyNow": "Այցելել կայք", @@ -342,19 +807,40 @@ "SSE.Controllers.Main.textCloseTip": "Կտտացրեք՝ հուշումը փակելու համար", "SSE.Controllers.Main.textConfirm": "Հաստատում", "SSE.Controllers.Main.textContactUs": "Կապ վաճառքի բաժնի հետ", + "SSE.Controllers.Main.textConvertEquation": "Այս հավասարումը ստեղծվել է հավասարումների խմբագրիչի հին տարբերակով, որն այլևս չի աջակցվում:Այն խմբագրելու համար հավասարումը փոխարկեք Office Math ML ձևաչափի:Փոխակերպե՞լ հիմա:", + "SSE.Controllers.Main.textCustomLoader": "Խնդրում ենք նկատի ունենալ,որ ըստ թույլատրագրի պայմանների՝ Դուք իրավունք չունեք փոխելու բեռնման էկրանը։
Հարցման համար խնդրում ենք դիմել մեր վաճառքի բաժին։", "SSE.Controllers.Main.textDisconnect": "Կապը կորել է", + "SSE.Controllers.Main.textFillOtherRows": "Լրացրեք այլ տողեր", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Բանաձևով լրացված {0} տողեր ունեն տվյալներ: Այլ դատարկ տողերի լրացումը կարող է տևել մի քանի րոպե:", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Բանաձևը լրացրեց առաջին {0} տողերը: Այլ դատարկ տողերի լրացումը կարող է տևել մի քանի րոպե:", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Լրացված բանաձևը միայն առաջին {0} տողերն ունեն տվյալներ՝ ըստ հիշողության պահպանման պատճառի: Այս թերթում կան ևս {1} տողեր: Դուք կարող եք դրանք լրացնել ձեռքով:", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Բանաձևը լրացրեց միայն առաջին {0} տողերը՝ ըստ հիշողության պահպանման պատճառի: Այս թերթի մյուս տողերը տվյալներ չունեն:", + "SSE.Controllers.Main.textGuest": "Հյուր", + "SSE.Controllers.Main.textHasMacros": "Ֆայլում կան ինքնաշխատ մակրոներ։
Գործարկե՞լ դրանք։", "SSE.Controllers.Main.textLearnMore": "Իմանալ ավելին", "SSE.Controllers.Main.textLoadingDocument": "Աղյուսակաթերթի բեռնում", "SSE.Controllers.Main.textLongName": "Մուտքագրել անուն՝ 128 նիշից պակաս:", + "SSE.Controllers.Main.textNeedSynchronize": "Կան թարմացումներ", + "SSE.Controllers.Main.textNo": "Ոչ", "SSE.Controllers.Main.textNoLicenseTitle": "Լիցենզիայի սահմանաչափը հասել է", + "SSE.Controllers.Main.textPaidFeature": "Վճարովի գործառույթ", + "SSE.Controllers.Main.textPleaseWait": "Վիրահատությունը կարող է սպասվածից ավելի շատ ժամանակ տևել: Խնդրում ենք սպասել...", "SSE.Controllers.Main.textReconnect": "Կապը վերականգնված է", + "SSE.Controllers.Main.textRemember": "Հիշել իմ ընտրածը", + "SSE.Controllers.Main.textRememberMacros": "Հիշել իմ ընտրությունը բոլոր մակրոների համար", + "SSE.Controllers.Main.textRenameError": "Օգտվողի անունը չպետք է դատարկ լինի:", "SSE.Controllers.Main.textRenameLabel": "Մուտքագրել անուն, որը կօգտագործվի համատեղ աշխատանքի համար", "SSE.Controllers.Main.textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:", + "SSE.Controllers.Main.textShape": "Պատկեր", + "SSE.Controllers.Main.textStrict": "Խիստ աշխատակարգ", "SSE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։
«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել հավելյալ կարգավորումների միջոցով։", "SSE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:", + "SSE.Controllers.Main.textYes": "Այո", + "SSE.Controllers.Main.titleLicenseExp": "Լիցենզիայի ժամկետը լրացել է", "SSE.Controllers.Main.titleServerVersion": "Խմբագրիչը արդիացվել է", "SSE.Controllers.Main.txtAccent": "Շեշտ", "SSE.Controllers.Main.txtAll": "(Բոլորը)", + "SSE.Controllers.Main.txtArt": "Ձեր տեքստը", "SSE.Controllers.Main.txtBasicShapes": "Հիմնական պատկերներ", "SSE.Controllers.Main.txtBlank": "(Դատարկ)", "SSE.Controllers.Main.txtButtons": "Կոճակներ", @@ -369,13 +855,48 @@ "SSE.Controllers.Main.txtDays": "օրեր", "SSE.Controllers.Main.txtDiagramTitle": "Գծապատկերի վերնագիր", "SSE.Controllers.Main.txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․", + "SSE.Controllers.Main.txtErrorLoadHistory": "Պատմության բեռնումը ձախողվեց", + "SSE.Controllers.Main.txtFiguredArrows": "Ձևավոր սլաքներ", "SSE.Controllers.Main.txtFile": "Նիշք", + "SSE.Controllers.Main.txtGrandTotal": "Ընդհանուր գումար", + "SSE.Controllers.Main.txtGroup": "Խումբ", + "SSE.Controllers.Main.txtHours": "Ժամեր", + "SSE.Controllers.Main.txtLines": "Գծեր", + "SSE.Controllers.Main.txtMath": "Մաթեմատիկական", + "SSE.Controllers.Main.txtMinutes": "Րոպե", + "SSE.Controllers.Main.txtMonths": "ամիսներ", + "SSE.Controllers.Main.txtMultiSelect": "Բազմընտրում (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 կամ %2", + "SSE.Controllers.Main.txtPage": "Էջ", + "SSE.Controllers.Main.txtPageOf": "Էջ %1 %2-ից", + "SSE.Controllers.Main.txtPages": "Էջեր", + "SSE.Controllers.Main.txtPreparedBy": "Պատրաստված է", + "SSE.Controllers.Main.txtPrintArea": "Տպման_տարածք", + "SSE.Controllers.Main.txtQuarter": "Քրդ", + "SSE.Controllers.Main.txtQuarters": "Քառորդներ", + "SSE.Controllers.Main.txtRectangles": "Ուղղանկյուններ", + "SSE.Controllers.Main.txtRow": "Տող", + "SSE.Controllers.Main.txtRowLbls": "Տողի պիտակներ", + "SSE.Controllers.Main.txtSeconds": "Վայրկյան", + "SSE.Controllers.Main.txtSeries": "Շարքեր", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Գծային դրսագիր 1 (Եզրագիծ և շեշտագիծ)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Գծային դրսագիր 2 (Եզրագիծ և շեշտագիծ)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Գծային դրսագիր 3 (Եզրագիծ և շեշտագիծ)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Գծային դրսագիր 1(Շեշտագիծ)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Գծային դրսագիր 2 (Շեշտագիծ)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Գծային դրսագիր 3 (Շեշտագիծ)", "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "«Հետ» կոճակ", "SSE.Controllers.Main.txtShape_actionButtonBeginning": "«Սկիզբ» կոճակ", "SSE.Controllers.Main.txtShape_actionButtonBlank": "Դատարկ կոճակ", "SSE.Controllers.Main.txtShape_actionButtonDocument": "Փաստաթղթի կոճակ", "SSE.Controllers.Main.txtShape_actionButtonEnd": "«Վերջ» կոճակ", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Առաջ կամ հաջորդ կոճակ", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Օգնության կոճակ", + "SSE.Controllers.Main.txtShape_actionButtonHome": " <<Գլխավոր>> կոճակը", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Տեղեկատվական կոճակ", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Ֆիլմի կոճակ", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Հետադարձի կոճակ", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Ձայնի կոճակ", "SSE.Controllers.Main.txtShape_arc": "Աղեղ", "SSE.Controllers.Main.txtShape_bentArrow": "Բեկյալ սլաք", "SSE.Controllers.Main.txtShape_bentConnector5": "Բեկյալ կապակցիչ", @@ -384,7 +905,13 @@ "SSE.Controllers.Main.txtShape_bentUpArrow": "Վեր բեկյալ սլաք", "SSE.Controllers.Main.txtShape_bevel": "Շեղատ", "SSE.Controllers.Main.txtShape_blockArc": "Աղեղ", + "SSE.Controllers.Main.txtShape_borderCallout1": "Գծային դրսագիր 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Գծային դրսագիր 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Գծային դրսագիր 2", "SSE.Controllers.Main.txtShape_bracePair": "Կրկնակի ձևավոր փակագիծ", + "SSE.Controllers.Main.txtShape_callout1": "Գծային դրսագիր 1 (Առանց Եզրագծի)", + "SSE.Controllers.Main.txtShape_callout2": "Գծային դրսագիր 2 (Առանց եզրագծի)", + "SSE.Controllers.Main.txtShape_callout3": "Գծային դրսագիր 3 (Առանց եզրագծի)", "SSE.Controllers.Main.txtShape_can": "Ցիլինդր", "SSE.Controllers.Main.txtShape_chevron": "Շևրոն", "SSE.Controllers.Main.txtShape_chord": "Լարագիծ", @@ -411,16 +938,92 @@ "SSE.Controllers.Main.txtShape_ellipse": "Էլիպս", "SSE.Controllers.Main.txtShape_ellipseRibbon": "Ծալքերով ժապավեն 1", "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Վեր կորացած ժապավեն", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Գործընթացի քարտեզ․ Այլընտրանքային գործընթաց", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Գործընթացի քարտեզ", + "SSE.Controllers.Main.txtShape_flowChartConnector": " Գործընթաց․ կապակցիչ", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Հերթականության գրաֆիկ.որոշում", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Հերթականության գրաֆիկ.ուշացում", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Գործընթաց.էկրան", "SSE.Controllers.Main.txtShape_flowChartDocument": "Ընթացաքարտեզ՝ փաստաթուղթ", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Գործընթաց.քաղվածք", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Հերթականության գրաֆիկ.տվյալներ", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Գործընթաց.ներքին հիշողություն", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Գործընթաց.մագնիսական սկավառակ", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Հերթականության գրաֆիկ.ուղղակի մուտքի հիշողություն", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Գործընթաց.հաջորդական մուտքի հիշողություն", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Գործընթաց.ձեռքով մուտքագրում", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Գործընթաց.ձեռքով հսկողություն", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Գործընթաց.միավորել", "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Ընթացաքարտեզ՝ մի քանի փաստաթուղթ", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Գործընթաց.մեկ այլ էջի հղում ", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Գործընթացի քարտեզ. Պահեստավորված տվյալներ", + "SSE.Controllers.Main.txtShape_flowChartOr": "Գործընթաց.կամ", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Գործընթաց.բնորոշ գործընթաց", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Գործընթաց.պատրաստում", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Գործընթաց.գործընթաց", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Գործընթացի քարտեզ․Քարտ", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Գործընթաց.ծակոտաժապավեն ", + "SSE.Controllers.Main.txtShape_flowChartSort": "Գործընթացի քարտեզ. Տեսակավորում", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Գործընթացի քարտեզ. Գումարային միացում", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Գործընթացի քարտեզ. Ավարտող", + "SSE.Controllers.Main.txtShape_foldedCorner": "Համաչափ անկյուն", + "SSE.Controllers.Main.txtShape_frame": "Շրջանակ ", + "SSE.Controllers.Main.txtShape_halfFrame": "Կես շրջանակ", + "SSE.Controllers.Main.txtShape_heart": "Սիրտ ", + "SSE.Controllers.Main.txtShape_heptagon": "Յոթանկյուն ", + "SSE.Controllers.Main.txtShape_hexagon": "Վեցանկյուն ", + "SSE.Controllers.Main.txtShape_homePlate": "Հնգանկյուն ", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Հորիզոնական ոլորում", "SSE.Controllers.Main.txtShape_irregularSeal1": "Պայթյուն 1", "SSE.Controllers.Main.txtShape_irregularSeal2": "Պայթյուն 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Ձախ սլաք", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Ձախ սլաքի դրսագիր", + "SSE.Controllers.Main.txtShape_leftBrace": "Ձախ ձևավոր փակագիծ", + "SSE.Controllers.Main.txtShape_leftBracket": "Ձախ կլոր փակագիծ", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Ձախ-աջ սլաք", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Ձախ-աջ սլաքով դրսագիր", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Ձախ-աջ-վեր սլաք", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Ձախ-վեր սլաք", + "SSE.Controllers.Main.txtShape_lightningBolt": "Կայծակ ", + "SSE.Controllers.Main.txtShape_line": "Գիծ", "SSE.Controllers.Main.txtShape_lineWithArrow": "Սլաք", "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Կրկնասլաք", "SSE.Controllers.Main.txtShape_mathDivide": "Բաժանում", "SSE.Controllers.Main.txtShape_mathEqual": "Հավասար", + "SSE.Controllers.Main.txtShape_mathMinus": "Մինուս ", + "SSE.Controllers.Main.txtShape_mathMultiply": "Բազմապատկել", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Ոչ հավասար", + "SSE.Controllers.Main.txtShape_mathPlus": "Գումարած", + "SSE.Controllers.Main.txtShape_moon": "Մունի Տառատեսակ", "SSE.Controllers.Main.txtShape_noSmoking": "Արգելված է", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Ատամնավոր աջ սլաք", + "SSE.Controllers.Main.txtShape_octagon": "Ութանկյուն", + "SSE.Controllers.Main.txtShape_parallelogram": "Քառանկյունի", + "SSE.Controllers.Main.txtShape_pentagon": "Հնգանկյուն ", + "SSE.Controllers.Main.txtShape_pie": "Բլիթ", + "SSE.Controllers.Main.txtShape_plaque": "Ստորագրել", + "SSE.Controllers.Main.txtShape_plus": "Գումարած", + "SSE.Controllers.Main.txtShape_polyline1": "Խզբզանք", + "SSE.Controllers.Main.txtShape_polyline2": "Ազատ ձևի առարկա", + "SSE.Controllers.Main.txtShape_quadArrow": "Քառակուսի սլաք", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Քառակուսի սլաքի դրսագիր", + "SSE.Controllers.Main.txtShape_rect": "Ուղղանկյուն", "SSE.Controllers.Main.txtShape_ribbon": "Ստորին ժապավեն", + "SSE.Controllers.Main.txtShape_ribbon2": "Վերին ժապավեն", + "SSE.Controllers.Main.txtShape_rightArrow": "Աջ սլաք", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Աջ սլաքով դրսագիր", + "SSE.Controllers.Main.txtShape_rightBrace": "Աջ ձևավոր փակագիծ", + "SSE.Controllers.Main.txtShape_rightBracket": "Աջ ուղղանկյուն փակագիծ", + "SSE.Controllers.Main.txtShape_round1Rect": "Ուղղանկյուն մեկ կլորացված անկյունով", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Ուղղանկյուն երկու կլորացված հակառակ անկյուններով", + "SSE.Controllers.Main.txtShape_round2SameRect": "Ուղղանկյուն երկու կլորացված հարակից անկյուններով", + "SSE.Controllers.Main.txtShape_roundRect": "Ուղղանկյուն կլորացված անկյուններով", + "SSE.Controllers.Main.txtShape_rtTriangle": "Ուղիղ եռանկյուն", + "SSE.Controllers.Main.txtShape_smileyFace": "Ժպտացող դեմք", + "SSE.Controllers.Main.txtShape_snip1Rect": "Կտրված միանկյուն ուղղանկյուն", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Կտրված անկյունագծով ուղղանկյուն", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Կտրված երկանկյուն ուղղանկյուն", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Կտրված և կլոր միանկյուն ուղղանկյուն", "SSE.Controllers.Main.txtShape_spline": "Կոր", "SSE.Controllers.Main.txtShape_star10": "10-թևանի աստղ", "SSE.Controllers.Main.txtShape_star12": "12-թևանի աստղ", @@ -432,85 +1035,303 @@ "SSE.Controllers.Main.txtShape_star6": "6-թևանի աստղ", "SSE.Controllers.Main.txtShape_star7": "7-թևանի աստղ", "SSE.Controllers.Main.txtShape_star8": "8-թևանի աստղ", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Գծավոր աջ սլաք", + "SSE.Controllers.Main.txtShape_sun": "Կիր", + "SSE.Controllers.Main.txtShape_teardrop": "Արցունք", + "SSE.Controllers.Main.txtShape_textRect": "Գրվածքի տուփ", + "SSE.Controllers.Main.txtShape_trapezoid": "Սեղան", + "SSE.Controllers.Main.txtShape_triangle": "Եռանկյուն", + "SSE.Controllers.Main.txtShape_upArrow": "Վեր սլաք", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Վեր սլաքով դրսագիր", + "SSE.Controllers.Main.txtShape_upDownArrow": "Վեր-վար սլաք", + "SSE.Controllers.Main.txtShape_uturnArrow": "Շրջադարձ սլաք", + "SSE.Controllers.Main.txtShape_verticalScroll": "Ուղղահայաց ոլորում", + "SSE.Controllers.Main.txtShape_wave": "Ալիք", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Ձվածիր դրսագիր", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Ուղղանկյուն ձևաչափ", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Կլորավուն ուղղանկյան դրսագիր", + "SSE.Controllers.Main.txtStarsRibbons": "Աստղիկներ և ժապավեններ", "SSE.Controllers.Main.txtStyle_Bad": "Վատ", "SSE.Controllers.Main.txtStyle_Calculation": "Հաշվարկ", "SSE.Controllers.Main.txtStyle_Check_Cell": "Ստուգավանդակ", "SSE.Controllers.Main.txtStyle_Comma": "Ստորակետ", "SSE.Controllers.Main.txtStyle_Currency": "Տարադրամ", "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Բացատրական տեքստ", + "SSE.Controllers.Main.txtStyle_Good": "Լավ", + "SSE.Controllers.Main.txtStyle_Heading_1": "Գլխագիր 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Գլխագիր 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Գլխագիր 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Գլխագիր 4", + "SSE.Controllers.Main.txtStyle_Input": "Մուտք", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Կապված վանդակ", + "SSE.Controllers.Main.txtStyle_Neutral": "Չեզոք", + "SSE.Controllers.Main.txtStyle_Normal": "Սովորական", + "SSE.Controllers.Main.txtStyle_Note": "Ծանոթագրություն", + "SSE.Controllers.Main.txtStyle_Output": "Արտածում", + "SSE.Controllers.Main.txtStyle_Percent": "Տոկոսային", + "SSE.Controllers.Main.txtStyle_Title": "Վերնագիր", + "SSE.Controllers.Main.txtStyle_Total": "Ընդամենը", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Զգուշացման տեքստ", + "SSE.Controllers.Main.txtTab": "Սյունատ", + "SSE.Controllers.Main.txtTable": "Աղյուսակ", + "SSE.Controllers.Main.txtTime": "Ժամանակ", + "SSE.Controllers.Main.txtUnlock": "Ապակողպել", + "SSE.Controllers.Main.txtUnlockRange": "Ապակողպել շարանը", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Մուտքագրեք գաղտնաբառը այս տիրույթը փոխելու համար.", "SSE.Controllers.Main.txtUnlockRangeWarning": "Շրջանակը, որը փորձում եք փոխել, պաշտպանված է գաղտնաբառով:", + "SSE.Controllers.Main.txtValues": "Արժեքներ", + "SSE.Controllers.Main.txtXAxis": "X առանցք", + "SSE.Controllers.Main.txtYAxis": "Y առանցք", + "SSE.Controllers.Main.txtYears": "Տարիներ", + "SSE.Controllers.Main.unknownErrorText": "Անհայտ սխալ։", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ձեր դիտարկիչը չի աջակցվում։", + "SSE.Controllers.Main.uploadDocExtMessage": "Անհայտ փաստաթղթի ձևաչափ:", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Ոչ մի փաստաթուղթ չի վերբեռնվել:", + "SSE.Controllers.Main.uploadDocSizeMessage": "Փաստաթղթի չափի առավելագույն սահմանաչափը գերազանցվել է:", + "SSE.Controllers.Main.uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։", + "SSE.Controllers.Main.uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:", + "SSE.Controllers.Main.uploadImageTextText": "Նկարի վերբեռնում...", + "SSE.Controllers.Main.uploadImageTitleText": "Նկարի վերբեռնում", + "SSE.Controllers.Main.waitText": "Խնդրում ենք սպասել...", + "SSE.Controllers.Main.warnBrowserIE9": "Հավելվածը ցածր հնարավորություններ ունի IE9-ի վրա:Օգտագործեք IE10 կամ ավելի բարձր", + "SSE.Controllers.Main.warnBrowserZoom": "Ձեր դիտարկիչի դիտափոխման ներկա կարգավորումը չի աջակցվում ամբողջությամբ։ Ctrl+0 սեղմելով վերադարձեք սկզբնադիր դիտափոխմանը։", "SSE.Controllers.Main.warnLicenseExceeded": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։
Մանրամասների համար դիմեք վարիչին։", + "SSE.Controllers.Main.warnLicenseExp": "Ձեր թույլատրագրի ժամկետը սպառվել է։
Թարմացրեք թույլատրագիրը, ապա՝ էջը։", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Լիցենզիայի ժամկետը լրացել է
Դուք չունեք փաստաթղթերի խմբագրման գործառույթից օգտվելու հնարավորություն :
Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Լիցենզիան պետք է երկարաձգել:
Դուք ունեք փաստաթղթերի խմբագրման գործառույթի սահմանափակ հասանելիություն:
Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ՝ լիարժեք մուտք ստանալու համար", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Մանրամասների համար դիմեք վարիչին։", "SSE.Controllers.Main.warnNoLicense": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։
Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի բաժին։", + "SSE.Controllers.Main.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի %1 բաժին։", "SSE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս նիշքը։", "SSE.Controllers.Print.strAllSheets": "Բոլոր թերթեր", + "SSE.Controllers.Print.textFirstCol": "Առաջին սյունակ", + "SSE.Controllers.Print.textFirstRow": "Առաջին շարք", + "SSE.Controllers.Print.textFrozenCols": "Սառեցված սյուներ", + "SSE.Controllers.Print.textFrozenRows": "Սառեցված շարքեր", "SSE.Controllers.Print.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", "SSE.Controllers.Print.textNoRepeat": "Մի՛ կրկնիր", + "SSE.Controllers.Print.textRepeat": "Կրկնել...", + "SSE.Controllers.Print.textSelectRange": "Ընտրեք միջակայքը", + "SSE.Controllers.Print.textWarning": "Զգուշացում", "SSE.Controllers.Print.txtCustom": "Հարմարեցված", + "SSE.Controllers.Print.warnCheckMargings": "Լուսանցքները սխալ են", "SSE.Controllers.Search.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:", + "SSE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:", + "SSE.Controllers.Search.textReplaceSuccess": "Որոնումը կատարվել է։ {0} դեպք փոխարինվել է", + "SSE.Controllers.Statusbar.errorLastSheet": "Աշխատագրքում պիտի լինի առնվազն մեկ տեսանելի աշխատաթերթ։", "SSE.Controllers.Statusbar.errorRemoveSheet": "Հնարավոր չէ ջնջել աշխատանքային թերթիկը:", + "SSE.Controllers.Statusbar.strSheet": "Թերթ", "SSE.Controllers.Statusbar.textDisconnect": "Կապը ընդատվել է
Փորձում է միանալ: Խնդրում ենք ստուգել կապի կարգավորումները:", + "SSE.Controllers.Statusbar.textSheetViewTip": "Դուք թերթի դիտման ռեժիմում եք: Զտիչները և տեսակավորումը տեսանելի են միայն ձեզ և նրանց, ովքեր դեռ այս տեսադաշտում են:", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Դուք թերթի դիտման ռեժիմում եք: Զտիչները տեսանելի են միայն ձեզ և նրանց, ովքեր դեռ այս տեսադաշտում են:", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Ընտրված աշխատաթերթերում կարող են լինել տվյալներ։ Շարունակե՞լ գործողությունը։", + "SSE.Controllers.Statusbar.zoomText": "Խոշորացնել {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "Տառատեսակը, որն ուզում եք պահպանել, այս սարքում տեղակայված չէ։
Տեքստի ոճը կցուցադրվի համակարգի տառատեսակներից մեկով, իսկ պահպանված տառատեսակը կգործածվի, երբ տեղակայվի։
Շարունակե՞լ։", + "SSE.Controllers.Toolbar.errorComboSeries": "Համակցված աղյուսակ ստեղծելու համար ընտրել տվյալների առնվազն երկու շարք:", "SSE.Controllers.Toolbar.errorMaxRows": "ՍԽԱԼ. Մեկ գծապատկերում տվյալների շարքերի առավելագույն քանակը 255 է", + "SSE.Controllers.Toolbar.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", "SSE.Controllers.Toolbar.textAccent": "Հնչյունատարբերիչ նշաններ", "SSE.Controllers.Toolbar.textBracket": "Փակագծեր", "SSE.Controllers.Toolbar.textDirectional": "Ուղղորդող", + "SSE.Controllers.Toolbar.textFontSizeErr": "Մուտքագրված արժեքը սխալ է:
Խնդրում ենք մուտքագրել թվային արժեք 1-ից 409-ի միջև", + "SSE.Controllers.Toolbar.textFraction": "Կոտորակներ", + "SSE.Controllers.Toolbar.textFunction": "Գործառույթներ ", + "SSE.Controllers.Toolbar.textIndicator": "ՑուցանիշներՑուցանիշներ", + "SSE.Controllers.Toolbar.textInsert": "Զետեղել", + "SSE.Controllers.Toolbar.textIntegral": "Ինտեգրալներ", + "SSE.Controllers.Toolbar.textLargeOperator": "Այլ մեծ գործարկուներ", + "SSE.Controllers.Toolbar.textLimitAndLog": "Սահմաններ և լոգարիթմներ", + "SSE.Controllers.Toolbar.textLongOperation": "Երկարատև գործողություն", + "SSE.Controllers.Toolbar.textMatrix": "Մատրիցներ", + "SSE.Controllers.Toolbar.textOperator": "Գործարկուներ", + "SSE.Controllers.Toolbar.textPivot": "Առանցքային աղյուսակ", + "SSE.Controllers.Toolbar.textRadical": "Արմատներ", + "SSE.Controllers.Toolbar.textRating": "Վարկանիշներ", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Վերջերս օգտագործված", + "SSE.Controllers.Toolbar.textScript": "Սկրիպտներ", + "SSE.Controllers.Toolbar.textShapes": "Պատկերներ", + "SSE.Controllers.Toolbar.textSymbols": "Նշաններ", + "SSE.Controllers.Toolbar.textWarning": "Զգուշացում", "SSE.Controllers.Toolbar.txtAccent_Accent": "Շեշտ", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Աջ-ձախ սլաք վերևում", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Վերին ձախ սլաք", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Աջագնա սլաք վերևում", "SSE.Controllers.Toolbar.txtAccent_Bar": "Գիծ", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Ներքնագիծ", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Վերնագիծ", "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Շրջանակված բանաձև (լցատեքստով)", "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Շրջանակված բանաձև (օրինակ)", "SSE.Controllers.Toolbar.txtAccent_Check": "Ստուգել", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Ներքնափակագիծ", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Վերնափակագիծ", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Վեկտոր Ա", "SSE.Controllers.Toolbar.txtAccent_Custom_2": "Վրագծված ABC", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y ՝ վերնագծով", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Եռակետ", "SSE.Controllers.Toolbar.txtAccent_DDot": "Երկկետ", "SSE.Controllers.Toolbar.txtAccent_Dot": "Կետ", "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Կրկնակի վերնագիծ", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Բութ", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Խմբավորման նշանը ներքևում", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Խմբավորման նշանը վերևում", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Վերին ձախ կարթագիծ", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Ներքին աջ կարթագիծ", + "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_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_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.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.txtFractionHorizontal": "Հորիզոնական կոտորակ", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Ֆի 2-ից ավելի", + "SSE.Controllers.Toolbar.txtFractionSmall": "Փոքր կոտորակ", + "SSE.Controllers.Toolbar.txtFractionVertical": "Շեղջված կոտորակ", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Հակադարձ կոսինուսի ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Հիպերբոլիկ հակադարձ կոսինուսի ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Հակադարձ կոտանգեսի ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Հիպերբոլիկ հակադարձ կոտանգենս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Հակադարձ կոսեկանտ ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Հիպերբոլիկ հակադարձ կոսեկանտ ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Հակադարձ սեկանս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Հիպերբոլիկ հակադարձ սեկանս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Հակադարձ սինուսային ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Հիպերբոլիկ հակադարձ սինուսային ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Հակադարձ տանգես ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Հիպերբոլիկ հակադարձ տանգես ֆունկցիա", "SSE.Controllers.Toolbar.txtFunction_Cos": "Կոսինուս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Կոսինուս հիպերբոլիկ ֆունկցիա", "SSE.Controllers.Toolbar.txtFunction_Cot": "Կոտանգենս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Կոտանգենս հիպերբոլիկ ֆունկցիա", "SSE.Controllers.Toolbar.txtFunction_Csc": "Կոսեկանս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Կոսեկանս հիպերբոլիկ ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Սինուս թետա", "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Կոսինուս 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Տանգենսի բանաձև", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Սեկանս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Հիպերբոլիկ սեկանս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Սինուս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Հիպերբոլիկ սինուսային ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Տանգենս ֆունկցիա", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Հիպերբոլիկ տանգես ֆունկցիա", + "SSE.Controllers.Toolbar.txtInsertCells": "Տեղադրեք բջիջներ", + "SSE.Controllers.Toolbar.txtIntegral": "Ինտեգրալ ", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Դիֆերենցիալ թետա", "SSE.Controllers.Toolbar.txtIntegral_dx": "Դիֆերենցիալ x", "SSE.Controllers.Toolbar.txtIntegral_dy": "Դիֆերենցիալ y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Ինտեգրալ ", "SSE.Controllers.Toolbar.txtIntegralDouble": "Կրկնակի ինտեգրալ", "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Կրկնակի ինտեգրալ", "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Կրկնակի ինտեգրալ", "SSE.Controllers.Toolbar.txtIntegralOriented": "Ուրվագծային ինտեգրալ", "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Ուրվագծային ինտեգրալ", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Մակերեսային ինտեգրալ", + "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.txtIntegralTriple": "Եռակի ինտեգրալ", + "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_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_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_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_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_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.txtLimitLog_Custom_1": "Սահմանափակել օրինակը", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Առավելագույն օրինակ", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Սահման", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Բնական լոգարիթմ", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Լոգարիթմ", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Լոգարիթմ", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Առավելագույն", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Նվազագույն", "SSE.Controllers.Toolbar.txtLockSort": "Տվյալները գտնվել են ձեր ընտրության կողքին, բայց դուք չունեք բավարար թույլտվություններ այդ բջիջները փոխելու համար:
Ցանկանու՞մ եք շարունակել ընթացիկ ընտրությունը:", "SSE.Controllers.Toolbar.txtMatrix_1_2": "Դատարկ 1x2 թվացանց", "SSE.Controllers.Toolbar.txtMatrix_1_3": "Դատարկ 1x3 թվացանց", @@ -525,19 +1346,52 @@ "SSE.Controllers.Toolbar.txtMatrix_3_2": "Դատարկ 3x2 թվացանց", "SSE.Controllers.Toolbar.txtMatrix_3_3": "Դատարկ 3x3 թվացանց", "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Հիմնագծի վրա կետեր", + "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": "2x2 միավոր թվացանց ", "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 միավոր թվացանց", "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 միավոր թվացանց", "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 միավոր թվացանց", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Աջ-ձախ սլաք ներքևում", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Աջ-ձախ սլաք վերևում", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Ներքևի ձախ սլաք", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Վերին ձախ սլաք", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Աջագնա սլաք ներքևում", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Աջագնա սլաք վերևում", "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Երկկետ հավասար", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Ապացուցում է", "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_DoubleArrowL_Bot": "Ներքևի ձախ սլաք", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Վերին ձախ սլաք", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Աջագնա սլաք ներքևում", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Աջագնա սլաք վերևում", "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Հավասար հավասար", + "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.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.txtScriptSub": "Վարգիր", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Վարգիր-վերգիր", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Ստորին և վերին ինդեքս ձախից", "SSE.Controllers.Toolbar.txtScriptSup": "Վերգիր", + "SSE.Controllers.Toolbar.txtSorting": "Տեսակավորում", + "SSE.Controllers.Toolbar.txtSortSelected": "Ընտրված տեսակավորում", "SSE.Controllers.Toolbar.txtSymbol_about": "Մոտավորապես", "SSE.Controllers.Toolbar.txtSymbol_additional": "Հավելում", "SSE.Controllers.Toolbar.txtSymbol_aleph": "Ալեֆ", @@ -547,10 +1401,13 @@ "SSE.Controllers.Toolbar.txtSymbol_beta": "Բետա", "SSE.Controllers.Toolbar.txtSymbol_beth": "Բեթ", "SSE.Controllers.Toolbar.txtSymbol_bullet": "Կետանշան գործարկու", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Հատում", "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Խորանարդ արմատ", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Միջին գծի հորիզոնական էլիպսիս", "SSE.Controllers.Toolbar.txtSymbol_celsius": "Աստիճան ըստ Ցելսիուսի", "SSE.Controllers.Toolbar.txtSymbol_chi": "Խի", "SSE.Controllers.Toolbar.txtSymbol_cong": "Մոտավորապես հավասար", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Միավորում", "SSE.Controllers.Toolbar.txtSymbol_ddots": "Անկյունագծային բազմակետ ներքև աջ", "SSE.Controllers.Toolbar.txtSymbol_degree": "Աստիճաններ", "SSE.Controllers.Toolbar.txtSymbol_delta": "Դելտա", @@ -559,19 +1416,90 @@ "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Դատարկ բազմություն", "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Էփսիլոն", "SSE.Controllers.Toolbar.txtSymbol_equals": "Հավասար", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Նույնական է", "SSE.Controllers.Toolbar.txtSymbol_eta": "Էտա", + "SSE.Controllers.Toolbar.txtSymbol_exists": "Այնտեղ առկա է", "SSE.Controllers.Toolbar.txtSymbol_factorial": "Ֆակտորիալ", "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Աստիճան ըստ Ֆարենհայտի", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Բոլորի համար", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Գամմա", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Ավելի մեծ կամ հավասար", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Շատ ավելի մեծ, քան", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Ավելի մեծ քան", "SSE.Controllers.Toolbar.txtSymbol_in": "Տարրն է հետևյալի՝", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Մեծացում", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Անվերջություն", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Յոտա", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Կապպա", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Լամբդա", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Ձախ սլաք", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Ձախ-աջ սլաք", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Պակաս կամ հավասար", + "SSE.Controllers.Toolbar.txtSymbol_less": "Ավելի քիչ քան ", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Շատ ավելի քիչ, քան", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Մինուս ", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Մինուս գումարած", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Մու", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Նաբլա", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Հավասար չէ՝", "SSE.Controllers.Toolbar.txtSymbol_ni": "Պարունակում է որպես անդամ", + "SSE.Controllers.Toolbar.txtSymbol_not": "Մերժման նշան", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "Այնտեղ առկա չէ", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Նու", + "SSE.Controllers.Toolbar.txtSymbol_o": "Օմիկրոն", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Օմեգա", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Մասնակի դիֆերենցիալ", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Տոկոսային", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Ֆի", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Ֆի", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Գումարած", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Գումարում և հանում", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Համաչափ է", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Պսի", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Չորրորդ արմատ", "SSE.Controllers.Toolbar.txtSymbol_qed": "Ապացույցի ավարտ", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Վեր աջ անկյունագծով էլիպս", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Ռո", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Աջ սլաք", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Սիգմա", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Արմատի ​​նշան", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Տաու", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "Հետևաբար", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Թետա", + "SSE.Controllers.Toolbar.txtSymbol_times": "Բազմապատկման նշան", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Վեր սլաք", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Իփսիլոն", "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Էփսիլոն տարբերակ", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Ֆի տարբերակ", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Ֆի տարբերակ", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Ռո տարբերակ", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Սիգմա տարբերակ", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Տետա տարբերակ", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Ուղղաձիգ էլիպս", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Քսի", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Զետա", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Սեղանի ոճը մուգ", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Սեղանի ոճի լույս", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Սեղանի ոճը միջին", + "SSE.Controllers.Toolbar.warnLongOperation": "Գործողությունը, որը պատրաստվում եք կատարել, կարող է բավականին շատ ժամանակ պահանջել ավարտելու համար:
Իսկապե՞ս ուզում եք շարունակել:", + "SSE.Controllers.Toolbar.warnMergeLostData": "Գործողությունը կարող է ոչնչացնել ընտրված վանդակների տվյալները։
Շարունակե՞լ։", + "SSE.Controllers.Viewport.textFreezePanes": "Փեղկերի սառեցում", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Ցույց տալ սառեցված ապակիների ստվերը", + "SSE.Controllers.Viewport.textHideFBar": "Թաքցնել բանաձևի բարը", + "SSE.Controllers.Viewport.textHideGridlines": "Թաքցնել ցանցագծերը", + "SSE.Controllers.Viewport.textHideHeadings": "Թաքցնել գլխագրերը", "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Տասնորդական բաժանարար", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Հազարների բաժանարար", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Պարամետրեր, որոնք օգտագործվում են թվային տվյալները ճանաչելու համար", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Տեքստի որակավորում", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Լրացուցիչ կարգավորումներ", "SSE.Views.AdvancedSeparatorDialog.txtNone": "(ոչ մեկը)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Պատվերով զտիչ", "SSE.Views.AutoFilterDialog.textAddSelection": "Ընտրվածքը զտել", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Դատարկներ}", + "SSE.Views.AutoFilterDialog.textSelectAll": "Ընտրել բոլորը", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Ընտրեք բոլոր որոնման արդյունքները", + "SSE.Views.AutoFilterDialog.textWarning": "Զգուշացում", "SSE.Views.AutoFilterDialog.txtAboveAve": "Միջինից բարձր", "SSE.Views.AutoFilterDialog.txtBegins": "Սկսվում է...", "SSE.Views.AutoFilterDialog.txtBelowAve": "Միջինից ցածր", @@ -581,12 +1509,40 @@ "SSE.Views.AutoFilterDialog.txtEmpty": "Մուտքագրեք բջջային ֆիլտրը", "SSE.Views.AutoFilterDialog.txtEnds": "Ավարտվում է...", "SSE.Views.AutoFilterDialog.txtEquals": "հավասար է․․․", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Զտել ըստ բջիջների գույնի", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Զտել ըստ տառատեսակի գույնի", + "SSE.Views.AutoFilterDialog.txtGreater": "Մեծ է քան․․․", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Մեծ է կամ հավասար․․․", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Պիտակի զտիչ", + "SSE.Views.AutoFilterDialog.txtLess": "Պակաս քան․․․", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Պակաս կամ հավասար...", "SSE.Views.AutoFilterDialog.txtNotBegins": "Չի սկսվում հետևյալով․․․", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Միջևում չէ...", "SSE.Views.AutoFilterDialog.txtNotContains": "Չի պարունակում․․․", "SSE.Views.AutoFilterDialog.txtNotEnds": "չի ավարտվում հետևյալով․․․", "SSE.Views.AutoFilterDialog.txtNotEquals": "Հավասար չէ․․․", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Թվերի զտիչ", + "SSE.Views.AutoFilterDialog.txtReapply": "Կրկին դիմել", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Դասավորել ըստ բջիջների գույնի", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Դասավորել ըստ տառատեսակի գույնի", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Տեսակավորել բարձրից ցածր:", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Տեսակավորել ցածրից բարձր:", + "SSE.Views.AutoFilterDialog.txtSortOption": "Տեսակավորման ավելի շատ տարբերակներ...", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Տեքստի զտիչ", + "SSE.Views.AutoFilterDialog.txtTitle": "Զտիչ", + "SSE.Views.AutoFilterDialog.txtTop10": "Թոփ 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Արժեքի զտիչ", + "SSE.Views.AutoFilterDialog.warnFilterError": "Արժեքի զտիչ կիրառելու համար ձեզ անհրաժեշտ է առնվազն մեկ դաշտ Արժեքների տարածքում:", + "SSE.Views.AutoFilterDialog.warnNoSelected": "Պետք է ընտրեք գոնե մեկ արժեք", + "SSE.Views.CellEditor.textManager": "Անուն կառավարիչ", + "SSE.Views.CellEditor.tipFormula": "Տեղադրեք գործառույթը", "SSE.Views.CellRangeDialog.errorMaxRows": "ՍԽԱԼ. Մեկ գծապատկերում տվյալների շարքերի առավելագույն քանակը 255 է", + "SSE.Views.CellRangeDialog.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", + "SSE.Views.CellRangeDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "SSE.Views.CellRangeDialog.txtInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.CellRangeDialog.txtTitle": "Ընտրեք Տվյալների տիրույթ", + "SSE.Views.CellSettings.strShrink": "Նեղանալ, որպեսզի տեղավորվի", + "SSE.Views.CellSettings.strWrap": "Տեքստի ծալում", "SSE.Views.CellSettings.textAngle": "Անկյուն", "SSE.Views.CellSettings.textBackColor": "Ֆոնի գույն", "SSE.Views.CellSettings.textBackground": "Ֆոնի գույն", @@ -596,36 +1552,120 @@ "SSE.Views.CellSettings.textColor": "Գույնի լցում", "SSE.Views.CellSettings.textColorScales": "Գունավոր կշեռքներ", "SSE.Views.CellSettings.textCondFormat": "Պայմանական ձևավորում", + "SSE.Views.CellSettings.textControl": "Տեքստի վերահսկում", "SSE.Views.CellSettings.textDataBars": "Տվյալների բարեր", "SSE.Views.CellSettings.textDirection": "Ուղղություն", + "SSE.Views.CellSettings.textFill": "Լցնել", + "SSE.Views.CellSettings.textForeground": "Հետնագույն", + "SSE.Views.CellSettings.textGradient": "Սահանցման կետեր", "SSE.Views.CellSettings.textGradientColor": "Գույն", + "SSE.Views.CellSettings.textGradientFill": "Սահանցման լցում ", + "SSE.Views.CellSettings.textIndent": "Նահանջ", + "SSE.Views.CellSettings.textItems": "Նյութեր", + "SSE.Views.CellSettings.textLinear": "Գծային", + "SSE.Views.CellSettings.textManageRule": "Կառավարել Կանոնները", + "SSE.Views.CellSettings.textNewRule": "Նոր կանոն", + "SSE.Views.CellSettings.textNoFill": "Առանց լցման", + "SSE.Views.CellSettings.textOrientation": "Տեքստի կողմնորոշում", + "SSE.Views.CellSettings.textPattern": "Նախշ", + "SSE.Views.CellSettings.textPatternFill": "Նախշ", + "SSE.Views.CellSettings.textPosition": "Դիրք", + "SSE.Views.CellSettings.textRadial": "Ճառագայթային", + "SSE.Views.CellSettings.textSelectBorders": "Ընտրեք եզրագծերը, որոնք ցանկանում եք փոխել՝ կիրառելով վերը նշված ոճը", + "SSE.Views.CellSettings.textSelection": "Ընթացիկ ընտրությունից", + "SSE.Views.CellSettings.textThisPivot": "Այս առանցքից", + "SSE.Views.CellSettings.textThisSheet": "Այս աշխատանքային թերթիկից", + "SSE.Views.CellSettings.textThisTable": "Այս աղյուսակից", "SSE.Views.CellSettings.tipAddGradientPoint": "Ավելացնել սահանցման կետ", + "SSE.Views.CellSettings.tipAll": "Սահմանել արտաքին եզրագիծը և բոլոր ներքին գծերը", + "SSE.Views.CellSettings.tipBottom": "Սահմանել միայն արտաքին ստորին եզրագիծը", + "SSE.Views.CellSettings.tipDiagD": "Սահմանեք անկյունագծային ներքև եզրագիծը", + "SSE.Views.CellSettings.tipDiagU": "Սահմանեք անկյունագծային վերև եզրագիծը", + "SSE.Views.CellSettings.tipInner": "Սահմանել միայն ներքին գծերը", + "SSE.Views.CellSettings.tipInnerHor": "Սահմանել միայն հորիզոնական ներքին գծեր", + "SSE.Views.CellSettings.tipInnerVert": "Սահմանել միայն ուղղահայաց ներքին գծեր", + "SSE.Views.CellSettings.tipLeft": "Սահմանել միայն արտաքին ձախ եզրագիծը", + "SSE.Views.CellSettings.tipNone": "Ոչ մի եզրագիծ չսահմանել", + "SSE.Views.CellSettings.tipOuter": "Սահմանել միայն արտաքին եզրագիծը", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Հեռացնել գրադիենտ կետը", + "SSE.Views.CellSettings.tipRight": "Սահմանել միայն արտաքին աջ եզրագիծը", + "SSE.Views.CellSettings.tipTop": "Սահմանել միայն արտաքին վերին եզրագիծը", + "SSE.Views.ChartDataDialog.errorInFormula": "Ձեր մուտքագրած բանաձևում սխալ կա:", + "SSE.Views.ChartDataDialog.errorInvalidReference": "Հղումը վավեր չէ։ Հղումը պետք է լինի բաց աշխատանքային թերթիկին:", + "SSE.Views.ChartDataDialog.errorMaxPoints": "Գծապատկերի շարքի կետերի առավելագույն քանակը 4096 է։", + "SSE.Views.ChartDataDialog.errorMaxRows": "Մեկ գծապատկերում տվյալների շարքերի առավելագույն քանակը 255 է:", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "Հղումը վավեր չէ։ Վերնագրերի, արժեքների, չափերի կամ տվյալների պիտակների հղումները պետք է լինեն մեկ բջիջ, տող կամ սյունակ:", + "SSE.Views.ChartDataDialog.errorNoValues": "Գծապատկեր ստեղծելու համար շարքը պետք է պարունակի առնվազն մեկ արժեք:", + "SSE.Views.ChartDataDialog.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", "SSE.Views.ChartDataDialog.textAdd": "Հավելել", + "SSE.Views.ChartDataDialog.textCategory": "Հորիզոնական (կատեգորիա) առանցքի պիտակներ", "SSE.Views.ChartDataDialog.textData": "Գծապատկերների տվյալների տիրույթ", + "SSE.Views.ChartDataDialog.textDelete": "Ջնջել", "SSE.Views.ChartDataDialog.textDown": "Ներքև", "SSE.Views.ChartDataDialog.textEdit": "Խմբագրել", + "SSE.Views.ChartDataDialog.textInvalidRange": "Վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.ChartDataDialog.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.ChartDataDialog.textSeries": "Լեգենդի գրառումներ (Սերիա)", + "SSE.Views.ChartDataDialog.textSwitch": "Փոխարկել տող/սյունակ", "SSE.Views.ChartDataDialog.textTitle": "Գծապատկերային տվյալներ", + "SSE.Views.ChartDataDialog.textUp": "Վեր", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "Ձեր մուտքագրած բանաձևում սխալ կա:", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "Հղումը վավեր չէ։ Հղումը պետք է լինի բաց աշխատանքային թերթիկին:", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "Գծապատկերի շարքի կետերի առավելագույն քանակը 4096 է։", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "Մեկ գծապատկերում տվյալների շարքերի առավելագույն քանակը 255 է:", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "Հղումը վավեր չէ։ Վերնագրերի, արժեքների, չափերի կամ տվյալների պիտակների հղումները պետք է լինեն մեկ բջիջ, տող կամ սյունակ:", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "Գծապատկեր ստեղծելու համար շարքը պետք է պարունակի առնվազն մեկ արժեք:", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Ընտրեք տվյալներ", "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Առանցքի պիտակների շարան", "SSE.Views.ChartDataRangeDialog.txtChoose": "Ընտրեք միջակայքը", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Սերիալի անվանումը", "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Առանցքի պիտակներ", "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Խմբագրել շարքը", + "SSE.Views.ChartDataRangeDialog.txtValues": "Արժեքներ", + "SSE.Views.ChartDataRangeDialog.txtXValues": "X արժեքներ", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Y արժեքներ", + "SSE.Views.ChartSettings.errorMaxRows": "Մեկ գծապատկերում տվյալների շարքերի առավելագույն քանակը 255 է:", + "SSE.Views.ChartSettings.strLineWeight": "Գծի լայնություն", "SSE.Views.ChartSettings.strSparkColor": "Գույն", + "SSE.Views.ChartSettings.strTemplate": "Ձևանմուշ", + "SSE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", + "SSE.Views.ChartSettings.textBorderSizeErr": " Մուտքագրված արժեքը սխալ է: Խնդրում ենք մուտքագրել 0կտ-ից 255կտ թվային արժեք:", "SSE.Views.ChartSettings.textChangeType": "Փոխել տեսակը", "SSE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը", "SSE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները և գտնվելու վայրը", + "SSE.Views.ChartSettings.textFirstPoint": "Առաջին կետ", + "SSE.Views.ChartSettings.textHeight": "Բարձրություն", + "SSE.Views.ChartSettings.textHighPoint": "Բարձր կետ", "SSE.Views.ChartSettings.textKeepRatio": "Պահպանել համաչափությունը", + "SSE.Views.ChartSettings.textLastPoint": "Վերջին կետ", + "SSE.Views.ChartSettings.textLowPoint": "Ցածր կետ", + "SSE.Views.ChartSettings.textMarkers": "Մարկերներ", + "SSE.Views.ChartSettings.textNegativePoint": "Բացասական կետ", "SSE.Views.ChartSettings.textRanges": "Տվյալների տիրույթ", + "SSE.Views.ChartSettings.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.ChartSettings.textShow": "Ցույց տալ", + "SSE.Views.ChartSettings.textSize": "Չափ", + "SSE.Views.ChartSettings.textStyle": "Ոճ", + "SSE.Views.ChartSettings.textSwitch": "Փոխարկել տող/սյունակ", + "SSE.Views.ChartSettings.textType": "Տեսակ", + "SSE.Views.ChartSettings.textWidth": "Լայնք", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ՍԽԱԼ. Մեկ գծապատկերում միավորների առավելագույն քանակը 4096 է:", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ՍԽԱԼ. Մեկ գծապատկերում տվյալների շարքերի առավելագույն քանակը 255 է", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Տողերի սխալ կարգ։ Բորսայի գծապատկեր ստանալու համար տվյալները թերթի վրա դասավորեք հետևյալ կերպ՝
բացման գին, առավելագույն գին, նվազագույն գին, փակման գին։ ", "SSE.Views.ChartSettingsDlg.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով", "SSE.Views.ChartSettingsDlg.textAlt": "Այլընտրական տեքստ", "SSE.Views.ChartSettingsDlg.textAltDescription": "Նկարագրություն", + "SSE.Views.ChartSettingsDlg.textAltTip": "Տեսողական առարկաների այլընտրական տեքստային ներկայացում, որը ընթերցվելու է տեսողության կամ մտավոր խանգարումներով մարդկանց համար՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա նկարի, պատկերի, գծապատկերի կամ աղյուսակի վրա։", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Վերնագիր", "SSE.Views.ChartSettingsDlg.textAuto": "Ինքնաշխատ", "SSE.Views.ChartSettingsDlg.textAutoEach": "Ինքնաշխատ՝ յուրաքանչյուրի համար", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Առանցքի հետ հատումներ", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Առանցքի ընտրանքներ", "SSE.Views.ChartSettingsDlg.textAxisPos": "Առանցքի դիրք", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Առանցքի կարգավորումներ", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Վերնագիր", "SSE.Views.ChartSettingsDlg.textBase": "Հիմք", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Բաժանումների միջև", "SSE.Views.ChartSettingsDlg.textBillions": "Միլիարդ", @@ -636,54 +1676,190 @@ "SSE.Views.ChartSettingsDlg.textChartTitle": "Գծապատկերի վերնագիր", "SSE.Views.ChartSettingsDlg.textCross": "Փոխհատում", "SSE.Views.ChartSettingsDlg.textCustom": "Հարմարեցված", + "SSE.Views.ChartSettingsDlg.textDataColumns": "սյունակներում", "SSE.Views.ChartSettingsDlg.textDataLabels": "Տվյալների մեկնագրեր", - "SSE.Views.ChartSettingsDlg.textDataRange": "Տվյալների տիրույթ", - "SSE.Views.ChartSettingsDlg.textDataSeries": "Տվյալների շարք", + "SSE.Views.ChartSettingsDlg.textDataRows": "շարքերում", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Ցուցադրել լեգենդը", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Թաքնված և դատարկ բջիջներ", "SSE.Views.ChartSettingsDlg.textEmptyLine": "Միացրեք տվյալների կետերը գծի հետ", + "SSE.Views.ChartSettingsDlg.textFit": "Հարմարեցնել լայնությանը", + "SSE.Views.ChartSettingsDlg.textFixed": "Հաստատուն", + "SSE.Views.ChartSettingsDlg.textFormat": "Պիտակի ձևաչափը", + "SSE.Views.ChartSettingsDlg.textGaps": "Բացեր", + "SSE.Views.ChartSettingsDlg.textGridLines": "Ցանցագծեր", + "SSE.Views.ChartSettingsDlg.textGroup": "Խմբային կայծգիծ", + "SSE.Views.ChartSettingsDlg.textHide": "Թաքցնել", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Թաքցնել առանցքը", + "SSE.Views.ChartSettingsDlg.textHigh": "Բարձր", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Հորիզոնական առանցք", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Երկրորդական հորիզոնական առանցք", + "SSE.Views.ChartSettingsDlg.textHorizontal": "Հորիզոնական", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", + "SSE.Views.ChartSettingsDlg.textHundreds": "Հարյուրներ", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", + "SSE.Views.ChartSettingsDlg.textIn": "Ներսում", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Ներսում ներքևից", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Ներսում վերևից", "SSE.Views.ChartSettingsDlg.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", "SSE.Views.ChartSettingsDlg.textLabelDist": "Մեկնագրից հեռավորությունը", "SSE.Views.ChartSettingsDlg.textLabelInterval": "Մեկնագրերի միջակայք", "SSE.Views.ChartSettingsDlg.textLabelOptions": "Մեկնագրերի ընտրանքներ", "SSE.Views.ChartSettingsDlg.textLabelPos": "Մեկնագրի դիրք", "SSE.Views.ChartSettingsDlg.textLayout": "Դասավորություն ", + "SSE.Views.ChartSettingsDlg.textLeft": "Ձախ", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Ձախ վերածածկ", "SSE.Views.ChartSettingsDlg.textLegendBottom": "Ներքև", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "Ձախ", "SSE.Views.ChartSettingsDlg.textLegendPos": "Պայմանանշան", + "SSE.Views.ChartSettingsDlg.textLegendRight": "Աջ", "SSE.Views.ChartSettingsDlg.textLegendTop": "Վերև", + "SSE.Views.ChartSettingsDlg.textLines": "Գծեր", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Տեղադրության միջակայք", + "SSE.Views.ChartSettingsDlg.textLogScale": "Լոգարիթմական սանդղակ", + "SSE.Views.ChartSettingsDlg.textLow": "Ցածր", + "SSE.Views.ChartSettingsDlg.textMajor": "Հիմնական", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Հիմնական և հավելյալ", + "SSE.Views.ChartSettingsDlg.textMajorType": "Հիմնական տիպ", + "SSE.Views.ChartSettingsDlg.textManual": "Ձեռնադիր", + "SSE.Views.ChartSettingsDlg.textMarkers": "Մարկերներ", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "Միջակայքը նշանների միջև", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Առավելագույն արժեք", + "SSE.Views.ChartSettingsDlg.textMillions": "Միլիոններ", + "SSE.Views.ChartSettingsDlg.textMinor": "Հավելյալ", + "SSE.Views.ChartSettingsDlg.textMinorType": "Հավելյալ տիպ", + "SSE.Views.ChartSettingsDlg.textMinValue": "Նվազագույն արժեք", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Առանցքի կողքին", + "SSE.Views.ChartSettingsDlg.textNone": "Ոչ մեկը", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "Առանց վերածածկման", + "SSE.Views.ChartSettingsDlg.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Մանրանիշերի վրա", + "SSE.Views.ChartSettingsDlg.textOut": "Դրսից", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Դրսից վերևից", + "SSE.Views.ChartSettingsDlg.textOverlay": "Վերածածկում", + "SSE.Views.ChartSettingsDlg.textReverse": "Արժեքները՝ հակադարձ կարգով", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Հակադարձ հերթականություն", + "SSE.Views.ChartSettingsDlg.textRight": "Աջ", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Աջ վերածածկ", + "SSE.Views.ChartSettingsDlg.textRotated": "Պտտված", + "SSE.Views.ChartSettingsDlg.textSameAll": "Նույնը բոլորի համար", + "SSE.Views.ChartSettingsDlg.textSelectData": "Ընտրեք տվյալներ", "SSE.Views.ChartSettingsDlg.textSeparator": "Տվյալների մեկնագրերի բաժանիչ", - "SSE.Views.ChartSettingsDlg.textShowAxis": "Ցուցադրել առանցքը", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Սերիալի անվանումը", + "SSE.Views.ChartSettingsDlg.textShow": "Ցույց տալ", "SSE.Views.ChartSettingsDlg.textShowBorders": "Ցուցադրել գծապատկերների սահմանները", + "SSE.Views.ChartSettingsDlg.textShowData": "Ցույց տալ տվյալները թաքնված տողերում և սյունակներում", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Ցույց տալ դատարկ բջիջները որպես", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Ցույց տալ առանցքը", "SSE.Views.ChartSettingsDlg.textShowValues": "Ցուցադրել գծապատկերների արժեքները", + "SSE.Views.ChartSettingsDlg.textSingle": "միայնակ կայծգիծ", + "SSE.Views.ChartSettingsDlg.textSmooth": "Հարթ", "SSE.Views.ChartSettingsDlg.textSnap": "Բջիջների խզում", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "կայծգծի շրջանակներ", + "SSE.Views.ChartSettingsDlg.textStraight": "Ուղիղ", + "SSE.Views.ChartSettingsDlg.textStyle": "Ոճ", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", + "SSE.Views.ChartSettingsDlg.textThousands": "Հազարավորներ", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Մանրանիշերի ընտրանքներ", "SSE.Views.ChartSettingsDlg.textTitle": "Գծապատկեր - լրացուցիչ կարգավորումներ", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "կայծգիծ- ընդլայնված կարգավորումներ", "SSE.Views.ChartSettingsDlg.textTop": "Վերև", - "SSE.Views.ChartSettingsDlg.textTypeStyle": "Գծապատկերի տեսակը, ոճը և
Տվյալների տիրույթը", + "SSE.Views.ChartSettingsDlg.textTrillions": "Տրիլիոններ", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Տեղափոխել և չափել բջիջներով", + "SSE.Views.ChartSettingsDlg.textType": "Տեսակ", + "SSE.Views.ChartSettingsDlg.textTypeData": "Տեսակ և տվյալներ", "SSE.Views.ChartSettingsDlg.textUnits": "Ցուցադրման միավորներ", + "SSE.Views.ChartSettingsDlg.textValue": "Արժեք", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Ուղղահայաց առանցք", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Երկրորդական ուղղահայաց առանցք", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X առանցքի վերնագիր", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y առանցքի վերնագիր", + "SSE.Views.ChartSettingsDlg.textZero": "Զրո", + "SSE.Views.ChartSettingsDlg.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Համակցված աղյուսակ ստեղծելու համար ընտրել տվյալների առնվազն երկու շարք:", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "Ընտրված գծապատկերի տեսակը պահանջում է երկրորդական առանցք, որն օգտագործում է գոյություն ունեցող գծապատկերը: Ընտրեք գծապատկերի մեկ այլ տեսակ:", + "SSE.Views.ChartTypeDialog.textSecondary": "Երկրորդական առանցք", + "SSE.Views.ChartTypeDialog.textSeries": "Շարքեր", + "SSE.Views.ChartTypeDialog.textStyle": "Ոճ", "SSE.Views.ChartTypeDialog.textTitle": "Գծապատկերի տեսակը", + "SSE.Views.ChartTypeDialog.textType": "Տեսակ", + "SSE.Views.CreatePivotDialog.textDataRange": "Աղբյուրի տվյալների տիրույթ", "SSE.Views.CreatePivotDialog.textDestination": "Ընտրեք սեղանի տեղը", "SSE.Views.CreatePivotDialog.textExist": "Առկա աշխատանքային թերթիկ", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.CreatePivotDialog.textNew": "Նոր աշխատաթերթ", + "SSE.Views.CreatePivotDialog.textSelectData": "Ընտրեք տվյալներ", "SSE.Views.CreatePivotDialog.textTitle": "Ստեղծեք առանցքային աղյուսակ", + "SSE.Views.CreatePivotDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.CreateSparklineDialog.textDataRange": "Աղբյուրի տվյալների տիրույթ", "SSE.Views.CreateSparklineDialog.textDestination": "Ընտրեք, որտեղ տեղադրեք կայծակները", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.CreateSparklineDialog.textSelectData": "Ընտրեք տվյալներ", "SSE.Views.CreateSparklineDialog.textTitle": "Ստեղծել կայծագծեր", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.DataTab.capBtnGroup": "Խումբ", "SSE.Views.DataTab.capBtnTextCustomSort": "Հարմարեցրած տեսակավորում", "SSE.Views.DataTab.capBtnTextDataValidation": "Տվյալների վավերացում", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Հեռացրեք կրկնօրինակները", + "SSE.Views.DataTab.capBtnTextToCol": "Տեքստ սյունակներ", + "SSE.Views.DataTab.capBtnUngroup": "Ապախմբավորել", + "SSE.Views.DataTab.capDataFromText": "Ստանալ տվյալներ", + "SSE.Views.DataTab.mniFromFile": "Տեղական TXT/CSV-ից", + "SSE.Views.DataTab.mniFromUrl": "TXT/CSV վեբ հասցեից", + "SSE.Views.DataTab.textBelow": "Մանրամասն ներքևում գտնվող ամփոփ տողերը", "SSE.Views.DataTab.textClear": "Հստակ ուրվագիծ", + "SSE.Views.DataTab.textColumns": "Ապախմբավորել սյունակները", + "SSE.Views.DataTab.textGroupColumns": "Խմբային սյունակներ", + "SSE.Views.DataTab.textGroupRows": "Խմբային տողեր", + "SSE.Views.DataTab.textRightOf": "Ամփոփ սյունակներ՝ մանրամասներից աջ", + "SSE.Views.DataTab.textRows": "Ապախմբավորել տողերը", "SSE.Views.DataTab.tipCustomSort": "Հարմարեցրած տեսակավորում", + "SSE.Views.DataTab.tipDataFromText": "Ստանալ տվյալներ Text/CSV ֆայլից", "SSE.Views.DataTab.tipDataValidation": "Տվյալների վավերացում", + "SSE.Views.DataTab.tipGroup": "Բջիջների խմբային տիրույթ", + "SSE.Views.DataTab.tipRemDuplicates": "Հեռացրեք կրկնօրինակ տողերը թերթիկից", + "SSE.Views.DataTab.tipToColumns": "Բջջային տեքստը բաժանեք սյունակների", + "SSE.Views.DataTab.tipUngroup": "Ապախմբավորել բջիջների տիրույթը", + "SSE.Views.DataValidationDialog.errorFormula": "Արժեքը ներկայումս գնահատվում է որպես սխալ: Ցանկանու՞մ եք շարունակել։", + "SSE.Views.DataValidationDialog.errorInvalid": "«{0}» դաշտի համար ձեր մուտքագրած արժեքը անվավեր է:", + "SSE.Views.DataValidationDialog.errorInvalidDate": "«{0}» դաշտի համար ձեր մուտքագրած ամսաթիվն անվավեր է:", + "SSE.Views.DataValidationDialog.errorInvalidList": "Ցուցակի աղբյուրը պետք է լինի սահմանազատված ցուցակ կամ հղում մեկ տողի կամ սյունակի:", + "SSE.Views.DataValidationDialog.errorInvalidTime": "«{0}» դաշտի համար մուտքագրած ժամանակը անվավեր է:", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "«{1}» դաշտը պետք է մեծ կամ հավասար լինի «{0}» դաշտին:", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Դուք պետք է արժեք մուտքագրեք թե՛ «{0}» և թե՛ «{1}» դաշտում:", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "«{0}» դաշտում պետք է մուտքագրեք արժեք:", "SSE.Views.DataValidationDialog.errorNamedRange": "Ձեր նշած անունով ընդգրկույթ չի գտնվում:", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Բացասական արժեքները չեն կարող օգտագործվել «{0}» պայմաններում:", + "SSE.Views.DataValidationDialog.errorNotNumeric": "«{0}» դաշտը պետք է լինի թվային արժեք, թվային արտահայտություն կամ վերաբերի թվային արժեք պարունակող բջիջին:", "SSE.Views.DataValidationDialog.strError": "Սխալների ծանուցում", + "SSE.Views.DataValidationDialog.strInput": "Մուտքագրման հաղորդագրություն", + "SSE.Views.DataValidationDialog.strSettings": "Կարգավորումներ", "SSE.Views.DataValidationDialog.textAlert": "Զգուշացում", "SSE.Views.DataValidationDialog.textAllow": "Թույլատրել", "SSE.Views.DataValidationDialog.textApply": "Կիրառեք այս փոփոխությունները նույն կարգավորումներով մնացած բոլոր բջիջներում", + "SSE.Views.DataValidationDialog.textCellSelected": "Երբ բջիջն ընտրված է, ցույց տվեք այս մուտքային հաղորդագրությունը", "SSE.Views.DataValidationDialog.textCompare": "Համեմատել", "SSE.Views.DataValidationDialog.textData": "Տվյալներ", "SSE.Views.DataValidationDialog.textEndDate": "Ավարտման ամսաթիվ", "SSE.Views.DataValidationDialog.textEndTime": "Ավարտի ժամանակ", "SSE.Views.DataValidationDialog.textError": "Սխալի հաղորդագրություն", + "SSE.Views.DataValidationDialog.textFormula": "Բանաձև ", + "SSE.Views.DataValidationDialog.textIgnore": "Անտեսել դատարկը", + "SSE.Views.DataValidationDialog.textInput": "Մուտքագրման հաղորդագրություն", + "SSE.Views.DataValidationDialog.textMax": "Առավելագույն", + "SSE.Views.DataValidationDialog.textMessage": "Հաղորդագրություն", + "SSE.Views.DataValidationDialog.textMin": "Նվազագույն", + "SSE.Views.DataValidationDialog.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.DataValidationDialog.textShowDropDown": "Ցուցադրել բացվող ցուցակը բջիջում", + "SSE.Views.DataValidationDialog.textShowError": "Ցույց տալ սխալի մասին ահազանգը անվավեր տվյալների մուտքագրումից հետո", + "SSE.Views.DataValidationDialog.textShowInput": "Ցույց տալ մուտքային հաղորդագրությունը, երբ ընտրված է բջիջը", + "SSE.Views.DataValidationDialog.textSource": "Աղբյուր", + "SSE.Views.DataValidationDialog.textStartDate": "Մեկնարկի ամսաթիվ", + "SSE.Views.DataValidationDialog.textStartTime": "Մեկնարկի ժամանակը", + "SSE.Views.DataValidationDialog.textStop": "Կանգ", + "SSE.Views.DataValidationDialog.textStyle": "Ոճ", + "SSE.Views.DataValidationDialog.textTitle": "Վերնագիր", + "SSE.Views.DataValidationDialog.textUserEnters": "Երբ օգտվողը մուտքագրում է անվավեր տվյալներ, ցուցադրեք այս սխալի մասին ծանուցումը", "SSE.Views.DataValidationDialog.txtAny": "Ցանկացած արժեք", "SSE.Views.DataValidationDialog.txtBetween": "միջև", "SSE.Views.DataValidationDialog.txtDate": "Ամիս-ամսաթիվ", @@ -692,50 +1868,122 @@ "SSE.Views.DataValidationDialog.txtEndDate": "Ավարտման ամսաթիվ", "SSE.Views.DataValidationDialog.txtEndTime": "Ավարտի ժամանակ", "SSE.Views.DataValidationDialog.txtEqual": "հավասար է", + "SSE.Views.DataValidationDialog.txtGreaterThan": "Ավելի մեծ քան", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Ավելի մեծ կամ հավասար", + "SSE.Views.DataValidationDialog.txtLength": "Երկարություն", + "SSE.Views.DataValidationDialog.txtLessThan": "Ավելի քիչ քան ", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Պակաս կամ հավասար", + "SSE.Views.DataValidationDialog.txtList": "Ցուցակ", + "SSE.Views.DataValidationDialog.txtNotBetween": "ոչ թե միջև", "SSE.Views.DataValidationDialog.txtNotEqual": "Հավասար չէ", + "SSE.Views.DataValidationDialog.txtOther": "Այլ", + "SSE.Views.DataValidationDialog.txtStartDate": "Մեկնարկի ամսաթիվ", + "SSE.Views.DataValidationDialog.txtStartTime": "Մեկնարկի ժամանակը", + "SSE.Views.DataValidationDialog.txtTextLength": "Տեքստի երկարությունը", + "SSE.Views.DataValidationDialog.txtTime": "Ժամանակ", + "SSE.Views.DataValidationDialog.txtWhole": "Ամբողջ թիվ", "SSE.Views.DigitalFilterDialog.capAnd": "Եվ", "SSE.Views.DigitalFilterDialog.capCondition1": "հավասար է", "SSE.Views.DigitalFilterDialog.capCondition10": "չի ավարտվում հետևյալով", "SSE.Views.DigitalFilterDialog.capCondition11": "պարունակում է", "SSE.Views.DigitalFilterDialog.capCondition12": "չի պարունակում", "SSE.Views.DigitalFilterDialog.capCondition2": "Հավասար չէ", + "SSE.Views.DigitalFilterDialog.capCondition3": "ավելի մեծ է, քան", + "SSE.Views.DigitalFilterDialog.capCondition4": "մեծ է կամ հավասար է", + "SSE.Views.DigitalFilterDialog.capCondition5": "պակաս է քան", + "SSE.Views.DigitalFilterDialog.capCondition6": "փոքր է կամ հավասար է", "SSE.Views.DigitalFilterDialog.capCondition7": "Սկսվում է ", "SSE.Views.DigitalFilterDialog.capCondition8": "չի սկսվում հետևյալով", "SSE.Views.DigitalFilterDialog.capCondition9": "Ավարտվում է ", + "SSE.Views.DigitalFilterDialog.capOr": "կամ", + "SSE.Views.DigitalFilterDialog.textNoFilter": "ոչ մի ֆիլտր", + "SSE.Views.DigitalFilterDialog.textShowRows": "Ցույց տալ տողերը, որտեղ", + "SSE.Views.DigitalFilterDialog.textUse1": "Օգտագործե՞լ ներկայացնել ցանկացած առանձին կերպար", + "SSE.Views.DigitalFilterDialog.textUse2": "Օգտագործեք *՝ կերպարների ցանկացած շարք ներկայացնելու համար", "SSE.Views.DigitalFilterDialog.txtTitle": "Պատվերով զտիչ", + "SSE.Views.DocumentHolder.advancedImgText": "Պատկերի ընդլայնված կարգավորումներ ", + "SSE.Views.DocumentHolder.advancedShapeText": "Ձևավորել լրացուցիչ կարգավորումներ", + "SSE.Views.DocumentHolder.advancedSlicerText": "Շերտազտիչ Ընդլայնված կարգավորումներ", "SSE.Views.DocumentHolder.bottomCellText": "Հավասարեցնել ներքևից", "SSE.Views.DocumentHolder.bulletsText": "Պարբերակներ և համարակալում", "SSE.Views.DocumentHolder.centerCellText": "Հավասարեցնել մեջտեղով", + "SSE.Views.DocumentHolder.chartDataText": "Ընտրեք գծապատկերի տվյալները", "SSE.Views.DocumentHolder.chartText": "Գծապատկերի լրացուցիչ կարգավորումներ", "SSE.Views.DocumentHolder.chartTypeText": "Փոխել գծապատկերի տեսակը", "SSE.Views.DocumentHolder.deleteColumnText": "Սյունակ", + "SSE.Views.DocumentHolder.deleteRowText": "Տող", + "SSE.Views.DocumentHolder.deleteTableText": "Աղյուսակ", + "SSE.Views.DocumentHolder.direct270Text": "Տեքստը պտտել վեր", + "SSE.Views.DocumentHolder.direct90Text": "Տեքստը պտտել ներքև", + "SSE.Views.DocumentHolder.directHText": "Հորիզոնական", + "SSE.Views.DocumentHolder.directionText": "Տեքստի ուղղություն", "SSE.Views.DocumentHolder.editChartText": "Խմբագրել տվյալները", "SSE.Views.DocumentHolder.editHyperlinkText": "Խմբագրել գերհղումը", "SSE.Views.DocumentHolder.insertColumnLeftText": "Սյունակ ձախից", "SSE.Views.DocumentHolder.insertColumnRightText": "Սյունակ աջից", + "SSE.Views.DocumentHolder.insertRowAboveText": "Տող վերևում", + "SSE.Views.DocumentHolder.insertRowBelowText": "Ներքևի տող", "SSE.Views.DocumentHolder.originalSizeText": "Իրական չափ", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Հանել գերհղումը", "SSE.Views.DocumentHolder.selectColumnText": "Ամբողջ սյունակը", "SSE.Views.DocumentHolder.selectDataText": "Սյունակի տվյալները", + "SSE.Views.DocumentHolder.selectRowText": "Տող", + "SSE.Views.DocumentHolder.selectTableText": "Աղյուսակ", + "SSE.Views.DocumentHolder.strDelete": "Ջնջել ստորագրությունը", + "SSE.Views.DocumentHolder.strDetails": "Ստորագրության մանրամասներ", + "SSE.Views.DocumentHolder.strSetup": "Ստորագրության տեղակայում", + "SSE.Views.DocumentHolder.strSign": "Ստորագրել", "SSE.Views.DocumentHolder.textAlign": "Հավասարեցում", "SSE.Views.DocumentHolder.textArrange": "Դասավորել", + "SSE.Views.DocumentHolder.textArrangeBack": "Տանել խորք", + "SSE.Views.DocumentHolder.textArrangeBackward": "ՈՒղարկել հետ", "SSE.Views.DocumentHolder.textArrangeForward": "Բերել առաջ", "SSE.Views.DocumentHolder.textArrangeFront": "Բերել առջևք ", "SSE.Views.DocumentHolder.textAverage": "ՄԻՋԻՆ", "SSE.Views.DocumentHolder.textBullets": "Պարբերակներ", "SSE.Views.DocumentHolder.textCount": "Հաշվել", "SSE.Views.DocumentHolder.textCrop": "Եզրատել", + "SSE.Views.DocumentHolder.textCropFill": "Լցնել", + "SSE.Views.DocumentHolder.textCropFit": "Հարմարեցնել", "SSE.Views.DocumentHolder.textEditPoints": "Խմբագրել կետերը", + "SSE.Views.DocumentHolder.textEntriesList": "Ընտրեք բացվող ցանկից", + "SSE.Views.DocumentHolder.textFlipH": "Շրջել հորիզոնական", + "SSE.Views.DocumentHolder.textFlipV": "Շրջել ուղղաձիգ", + "SSE.Views.DocumentHolder.textFreezePanes": "Փեղկերի սառեցում", "SSE.Views.DocumentHolder.textFromFile": "Նիշքից", + "SSE.Views.DocumentHolder.textFromStorage": "Պահեստից", + "SSE.Views.DocumentHolder.textFromUrl": "URL-ից", + "SSE.Views.DocumentHolder.textListSettings": "Ցանկի կարգավորումներ", "SSE.Views.DocumentHolder.textMacro": "Նշանակել մակրո", + "SSE.Views.DocumentHolder.textMax": "Մաքս", + "SSE.Views.DocumentHolder.textMin": "Նվազ.", + "SSE.Views.DocumentHolder.textMore": "Ավելի շատ գործառույթներ", + "SSE.Views.DocumentHolder.textMoreFormats": "Ավելի շատ ձևաչափեր", + "SSE.Views.DocumentHolder.textNone": "Ոչ մեկը", + "SSE.Views.DocumentHolder.textNumbering": "Համարակալում", + "SSE.Views.DocumentHolder.textReplace": "Փոխարինել նկարը", + "SSE.Views.DocumentHolder.textRotate": "Պտտել", + "SSE.Views.DocumentHolder.textRotate270": "Պտտել 90° ժամացույցի սլաքի հակառակ ուղղությամբ", + "SSE.Views.DocumentHolder.textRotate90": "Պտտել 90° ժամացույցի սլաքի ուղղությամբ", "SSE.Views.DocumentHolder.textShapeAlignBottom": "Հավասարեցնել ներքևից", "SSE.Views.DocumentHolder.textShapeAlignCenter": "Հավասարեցնել կենտրոնով", "SSE.Views.DocumentHolder.textShapeAlignLeft": "Հավասարեցնել ձախից", "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Հավասարեցնել մեջտեղով", "SSE.Views.DocumentHolder.textShapeAlignRight": "Հավասարեցնել աջից", "SSE.Views.DocumentHolder.textShapeAlignTop": "Հավասարեցնել վերևից", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textSum": "Գումար", + "SSE.Views.DocumentHolder.textUndo": "Հետարկել", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Ապասառեցնել փեղկերը", + "SSE.Views.DocumentHolder.textVar": "Տրբ", "SSE.Views.DocumentHolder.tipMarkersArrow": "Սլաքաձև պարբերակներ", "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Ստուգանիշ պարբերակներ", "SSE.Views.DocumentHolder.tipMarkersDash": "Գծիկ պարբերակներ", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": " Լցված շեղանկյուն պարբերակներ", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Լցված կլոր պարբերակներ", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Լցված քառակուսի պարբերակներ", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Դատարկ կլոր պարբերակներ", + "SSE.Views.DocumentHolder.tipMarkersStar": "Աստղաձև պարբերակներ", "SSE.Views.DocumentHolder.topCellText": "Հավասարեցնել վերևից", "SSE.Views.DocumentHolder.txtAccounting": "Հաշվապահություն", "SSE.Views.DocumentHolder.txtAddComment": "Կցել մեկնաբանություն", @@ -747,9 +1995,13 @@ "SSE.Views.DocumentHolder.txtClear": "Մաքրել", "SSE.Views.DocumentHolder.txtClearAll": "Բոլորը", "SSE.Views.DocumentHolder.txtClearComments": "Մեկնաբանություններ", + "SSE.Views.DocumentHolder.txtClearFormat": "Ձևաչափ", + "SSE.Views.DocumentHolder.txtClearHyper": "Հիպերհղումներ", "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Մաքրել ընտրված կայծգծի խմբերը", "SSE.Views.DocumentHolder.txtClearSparklines": "Մաքրել ընտրված կայծերը", + "SSE.Views.DocumentHolder.txtClearText": "Տեքստ", "SSE.Views.DocumentHolder.txtColumn": "Ամբողջ սյունակը", + "SSE.Views.DocumentHolder.txtColumnWidth": "Սահմանեք սյունակի լայնությունը", "SSE.Views.DocumentHolder.txtCondFormat": "Պայմանական ձևավորում", "SSE.Views.DocumentHolder.txtCopy": "Պատճենել", "SSE.Views.DocumentHolder.txtCurrency": "Տարադրամ", @@ -763,19 +2015,82 @@ "SSE.Views.DocumentHolder.txtDistribHor": "Հորիզոնական բաշխում", "SSE.Views.DocumentHolder.txtDistribVert": "Ուղղահայաց բաշխում", "SSE.Views.DocumentHolder.txtEditComment": "Խմբագրել մեկնաբանությունը", + "SSE.Views.DocumentHolder.txtFilter": "Զտիչ", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Զտել ըստ բջիջի գույնի", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Զտել ըստ տառատեսակի գույնի", + "SSE.Views.DocumentHolder.txtFilterValue": "Զտել ըստ ընտրված բջիջի արժեքի", + "SSE.Views.DocumentHolder.txtFormula": "Տեղադրել գործառույթը", + "SSE.Views.DocumentHolder.txtFraction": "Կոտորակ", + "SSE.Views.DocumentHolder.txtGeneral": "Ընդհանուր", + "SSE.Views.DocumentHolder.txtGroup": "Խումբ", + "SSE.Views.DocumentHolder.txtHide": "Թաքցնել", + "SSE.Views.DocumentHolder.txtInsert": "Զետեղել", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Գերհղում", + "SSE.Views.DocumentHolder.txtNumber": "Թվային", + "SSE.Views.DocumentHolder.txtNumFormat": "Թվերի ձևաչափ", + "SSE.Views.DocumentHolder.txtPaste": "Փակցնել", + "SSE.Views.DocumentHolder.txtPercentage": "Տոկոսային", + "SSE.Views.DocumentHolder.txtReapply": "Կրկին դիմել", "SSE.Views.DocumentHolder.txtRow": "Ամբողջ շարքը", + "SSE.Views.DocumentHolder.txtRowHeight": "Սահմանեք տողի բարձրությունը", + "SSE.Views.DocumentHolder.txtScientific": "Գիտական", + "SSE.Views.DocumentHolder.txtSelect": "Ընտրել", + "SSE.Views.DocumentHolder.txtShiftDown": "Տեղափոխեք բջիջները ներքև", + "SSE.Views.DocumentHolder.txtShiftLeft": "Տեղափոխեք վանդակները ձախ", + "SSE.Views.DocumentHolder.txtShiftRight": "Տեղափոխեք բջիջները աջ", + "SSE.Views.DocumentHolder.txtShiftUp": "Տեղափոխեք բջիջները վերև", + "SSE.Views.DocumentHolder.txtShow": "Ցույց տալ", + "SSE.Views.DocumentHolder.txtShowComment": "Ցույց տալ մեկնաբանությունը", + "SSE.Views.DocumentHolder.txtSort": "Տեսակավորել", + "SSE.Views.DocumentHolder.txtSortCellColor": "Ընտրված բջջային գույնը վերևում", + "SSE.Views.DocumentHolder.txtSortFontColor": "Ընտրված տառատեսակի գույնը վերևում", + "SSE.Views.DocumentHolder.txtSparklines": "կայծգծեր", + "SSE.Views.DocumentHolder.txtText": "Տեքստ", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Պարբերության ընդլայնված կարգավորումներ", + "SSE.Views.DocumentHolder.txtTime": "Ժամանակ", + "SSE.Views.DocumentHolder.txtUngroup": "Ապախմբավորել", + "SSE.Views.DocumentHolder.txtWidth": "Լայնք", + "SSE.Views.DocumentHolder.vertAlignText": "Ուղղաձիգ հավասարեցում", "SSE.Views.FieldSettingsDialog.strLayout": "Դասավորություն ", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Ենթագումարներ", + "SSE.Views.FieldSettingsDialog.textReport": "Հաշվետվության ձև", + "SSE.Views.FieldSettingsDialog.textTitle": "Դաշտի կարգավորումներ", "SSE.Views.FieldSettingsDialog.txtAverage": "ՄԻՋԻՆ", + "SSE.Views.FieldSettingsDialog.txtBlank": "Տեղադրեք դատարկ տողեր յուրաքանչյուր կետից հետո", + "SSE.Views.FieldSettingsDialog.txtBottom": "Ցույց տալ խմբի ներքևում", "SSE.Views.FieldSettingsDialog.txtCompact": "Կոմպակտ", "SSE.Views.FieldSettingsDialog.txtCount": "Հաշվել", "SSE.Views.FieldSettingsDialog.txtCountNums": "Հաշվեք թվեր", "SSE.Views.FieldSettingsDialog.txtCustomName": "Մուտքագրել հարմարեցված անուն", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Ցուցադրել առանց տվյալների տարրերը", + "SSE.Views.FieldSettingsDialog.txtMax": "Մաքս", + "SSE.Views.FieldSettingsDialog.txtMin": "Նվազ.", + "SSE.Views.FieldSettingsDialog.txtOutline": "Ուրվագիծ", + "SSE.Views.FieldSettingsDialog.txtProduct": "Արտադրանք ", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Կրկնեք տարրերի պիտակները յուրաքանչյուր տողում", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Ցույց տալ ենթագումարները", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Աղբյուրի անվանումը․", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtSum": "Գումար", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Գործառույթներ ենթագումարների համար", + "SSE.Views.FieldSettingsDialog.txtTabular": "Աղյուսակային", + "SSE.Views.FieldSettingsDialog.txtTop": "Ցույց տալ խմբի վերևում", + "SSE.Views.FieldSettingsDialog.txtVar": "Տրբ", + "SSE.Views.FieldSettingsDialog.txtVarp": "Տրբհմխ", "SSE.Views.FileMenu.btnBackCaption": "Բացել նիշքի պանակը", "SSE.Views.FileMenu.btnCloseMenuCaption": "Փակել ընտրացանկը", "SSE.Views.FileMenu.btnCreateNewCaption": "Ստեղծել նորը", "SSE.Views.FileMenu.btnDownloadCaption": "Ներբեռնել որպես...", "SSE.Views.FileMenu.btnExitCaption": "Փակել", + "SSE.Views.FileMenu.btnFileOpenCaption": "Բացել․․․", + "SSE.Views.FileMenu.btnHelpCaption": "Օգնություն․․․", + "SSE.Views.FileMenu.btnHistoryCaption": "Տարբերակի պատմություն", "SSE.Views.FileMenu.btnInfoCaption": "Աղյուսակաթերթի մասին...", + "SSE.Views.FileMenu.btnPrintCaption": "Տպել", + "SSE.Views.FileMenu.btnProtectCaption": "Պաշտպանել", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Բացել վերջինը...", + "SSE.Views.FileMenu.btnRenameCaption": "Վերանվանել․․․", "SSE.Views.FileMenu.btnReturnCaption": "Վերադառնալ աղյուսակաթերթ", "SSE.Views.FileMenu.btnRightsCaption": "Մատչման իրավունքներ...", "SSE.Views.FileMenu.btnSaveAsCaption": "Պահպանել որպես", @@ -793,17 +2108,40 @@ "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Փոխել մատչման իրավունքները", "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Մեկնաբանություն", "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Ստեղծված", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Վերջին փոփոխման հեղինակ", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Վերջին փոփոխումը", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Տնօրինող", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Տեղ", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Իրավունքներ ունեցող անձինք", "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Նյութ", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Վերնագիր", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Վերբեռնվել է", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Փոխել մատչման իրավունքները", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Իրավունքներ ունեցող անձինք", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Գործադրել", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Համախմբագրման աշխատակարգ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Տասնորդական բաժանարար", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Բառարանի լեզու", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Արագ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Տառատեսակի ուրվագծի հարթեցում", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Միշտ պահպանել սպասարկիչում (այլապես սպասարկիչում պահպանել փաստաթուղթը փակելիս)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Բանաձևերի լեզու", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Օրինակ՝ SUM; MIN; MAX; COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Անտեսել ՄԵԾԱՏԱՌԵՐՈՎ բառերը", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Անտեսել թվերով բառերը", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Մակրոների կարգավորումներ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Կտրել, պատճենել և տեղադրել", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Ցուցադրել «Կպցնել ընտրանքներ» կոճակները`բովանդակությունը կպցնելիս", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Հղումների R1C1 ոճ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Տարածաշրջանային կարգավորումներ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Օրինակ:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Ցույց տալ մեկնաբանությունները թերթիկում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Ցույց տալ լուծված մեկնաբանությունները", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Խիստ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Ինտերֆեյսի թեմա", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Հազարների բաժանարար", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Չափման միավոր", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Օգտագործեք տարանջատիչներ՝ հիմնված տարածաշրջանային պարամետրերի վրա", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Սկզբնադիր խոշորացման արժեք", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "10 րոպեն մեկ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "30 րոպեն մեկ", @@ -812,8 +2150,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Ինքնավերականգնում", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Ինքնաշխատ պահպանում", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Անջատված", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Պահպանել սպասարկիչում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Միջանկյալ տարբերակների պահպանում", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Ամեն րոպե", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Հղման ոճ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Ինքնաշտկման ընտրանքներ․․․", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Բելառուսերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Բուլղարերեն", @@ -823,25 +2162,65 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Համագործակցություն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Չեխերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Դանիերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Գերմաներեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Խմբագրում և պահպանում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Հունարեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Անգլերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Իսպաներեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Իրական ժամանակում համատեղ խմբագրում:Բոլոր փոփոխությունները պահվում են ավտոմատ կերպով", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Ֆիններեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "ֆրանսերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Հունգարերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Ինդոնեզերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Մտչ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Իտալերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Ճապոներեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Կորեերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Լաոսերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Լատվիերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ինչպես OS X-ում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Հիմնական", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "նորվեգերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Հոլանդերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Լեհերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Ստուգում ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Կետ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Պորտուգալերեն (Բրազիլիա)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Պորտուգալերեն (Պորտուգալիա)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Տարածաշրջան", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Ռումիներեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ռուսերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Միացնել բոլորը", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Առանց ծանուցման միացնել բոլոր մակրոները", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Սլովակերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Սլովեներեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Անջատել ամեն ինչ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Առանց ծանուցման անջատել բոլոր մակրոները", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Օգտագործեք «Պահպանել» կոճակը՝ Ձեր և մյուսների կատարած փոփոխությունները համաժամեցնելու համար", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Շվեդերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Թուրքերեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "ուկրաիներեն", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Օգտագործեք Alt ստեղնը՝ ստեղնաշարի միջոցով օգտագործողի միջերեսում նավարկելու համար", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Օգտագործեք Ընտրանք ստեղնը՝ ստեղնաշարի միջոցով օգտագործողի միջերեսում նավարկելու համար", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Վիետնամերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Ցուցադրել ծանուցումը", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Ծանուցմամբ անջատել բոլոր մակրոները", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ինչպես Windows-ում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Աշխատատարածք", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Չինական", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Զգուշացում", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Գաղտնաբառով", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Պաշտպանել աղյուսակաթերթը", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Ստորագրությամբ", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Խմբագրել աղյուսակաթերթը", "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Խմբագրումը կվերացնի աղյուսակաթերթի ստորագրությունները։
Շարունակե՞լ։", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Այս աղյուսակաթերթը գաղտնաբառով պաշտպանված է", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Այս աղյուսակաթերթն անհրաժեշտ է ստորագրել։", "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Աղյուսակաթերթում ավելացվել են վավեր ստորագրություններ։ Աղյուսակաթերթը պաշտպանված է և չի կարող խմբագրվել։", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Աղյուսակաթերթի որոշ թվանշային ստորագրություններ անվավեր են կամ չեն կարող ստուգվել։ Աղյուսակաթերթը պաշտպանված է և չի կարող խմբագրվել։", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Դիտել ստորագրությունները", + "SSE.Views.FormatRulesEditDlg.fillColor": "Լցման գույն", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Զգուշացում", "SSE.Views.FormatRulesEditDlg.text2Scales": "2-գույնանի սանդղակ", "SSE.Views.FormatRulesEditDlg.text3Scales": "3-գույնանի սանդղակ", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Բոլոր եզրագծերը", @@ -857,24 +2236,92 @@ "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Ներքևի սահմաններ", "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Անհնար է հավելել պայմանական ձեւաչափում", "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Վանդակի միջակետը.", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Ուղղահայաց սահմանների ներսում", "SSE.Views.FormatRulesEditDlg.textClear": "Մաքրել", + "SSE.Views.FormatRulesEditDlg.textColor": "Տեքստի գույն", "SSE.Views.FormatRulesEditDlg.textContext": "Համատեքստ", "SSE.Views.FormatRulesEditDlg.textCustom": "Հարմարեցված", "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Անկյունագծային իջնող եզրագիծ", "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Անկյունագծային բարձրացող եզրագիծ", "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Մուտքագրեք վավեր բանաձև", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Ձեր մուտքագրած բանաձևը չի գնահատվում թվի, ամսաթվի, ժամանակի կամ տողի:", "SSE.Views.FormatRulesEditDlg.textEmptyText": "Մուտքագրեք արժեք:", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Ձեր մուտքագրած արժեքը վավեր թիվ, ամսաթիվ, ժամ կամ տող չէ:", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "{0}-ի արժեքը պետք է ավելի մեծ լինի, քան {1}-ի արժեքը:", "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Մուտքագրեք թիվ {0}-ի և {1}-ի միջև:", + "SSE.Views.FormatRulesEditDlg.textFill": "Լցնել", + "SSE.Views.FormatRulesEditDlg.textFormat": "Ձևաչափ", + "SSE.Views.FormatRulesEditDlg.textFormula": "Բանաձև ", + "SSE.Views.FormatRulesEditDlg.textGradient": "Գրադիենտ", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "երբ {0} {1} և", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "երբ {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "երբ արժեքը", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Մեկ կամ մի քանի պատկերակների տվյալների ընդգրկույթներ համընկնում են:
Կարգավորեք պատկերակների տվյալների տիրույթի արժեքները, որպեսզի միջակայքերը չհամընկնեն:", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Պատկերակի ոճ", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Ներքին եզրագծեր", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Անվավեր տվյալների տիրույթ:", "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.FormatRulesEditDlg.textItalic": "Շեղատառ", + "SSE.Views.FormatRulesEditDlg.textItem": "Նյութ", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Ձախից աջ", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Ձախ սահմաններ", + "SSE.Views.FormatRulesEditDlg.textLongBar": "ամենաերկար բար", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Առավելագույն", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Առավելագույն կետ", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Հորիզոնական սահմանների ներսում", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Միջնակետ", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Նվազագույն", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Բարձր․ կետ", + "SSE.Views.FormatRulesEditDlg.textNegative": "Բացասական", "SSE.Views.FormatRulesEditDlg.textNewColor": "Հավելել նոր հարմարեցված գույն", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Առանց եզրագծերի", + "SSE.Views.FormatRulesEditDlg.textNone": "Ոչ մեկը", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Նշված արժեքներից մեկը կամ մի քանիսը վավեր տոկոս չեն:", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Նշված {0} արժեքը վավեր տոկոս չէ:", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Նշված արժեքներից մեկը կամ մի քանիսը վավեր տոկոսային չէ:", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Նշված {0} արժեքը վավեր տոկոսային չէ:", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Արտաքին Եզրագծեր", + "SSE.Views.FormatRulesEditDlg.textPercent": "Տոկոսային", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Տոկոսիկ", + "SSE.Views.FormatRulesEditDlg.textPosition": "Դիրք", + "SSE.Views.FormatRulesEditDlg.textPositive": "Դրական", + "SSE.Views.FormatRulesEditDlg.textPresets": "Նախադրվածներ", + "SSE.Views.FormatRulesEditDlg.textPreview": "Նախադիտել", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Դուք չեք կարող օգտագործել հարաբերական հղումներ պայմանական ձևաչափման չափանիշներում գունային մասշտաբների, տվյալների գծերի և պատկերակների հավաքածուների համար:", + "SSE.Views.FormatRulesEditDlg.textReverse": "Պատկերների հակառակ կարգը", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Աջից ձախ", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Աջ սահմաններ", + "SSE.Views.FormatRulesEditDlg.textRule": "Կանոն", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Նույնը՝ դրական", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.FormatRulesEditDlg.textShortBar": "ամենակարճ բար", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Ցուցադրել միայն բարը", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Ցույց տալ միայն պատկերակը", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Հղման այս տեսակը չի կարող օգտագործվել պայմանական ձևաչափման բանաձևում:
Փոխեք հղումը մեկ բջիջի կամ օգտագործեք հղումը աշխատանքային թերթիկի գործառույթով, ինչպիսին է =SUM(A1:B5):", + "SSE.Views.FormatRulesEditDlg.textSolid": "Պինդ", "SSE.Views.FormatRulesEditDlg.textStrikeout": "Գծաջնջված", "SSE.Views.FormatRulesEditDlg.textSubscript": "Վարգիր", "SSE.Views.FormatRulesEditDlg.textSuperscript": "Վերգիր", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Վերևի սահմանները", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Ընդգծված", "SSE.Views.FormatRulesEditDlg.tipBorders": "Եզրագծեր", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Թվերի ձևաչափ", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Հաշվապահություն", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Տարադրամ", "SSE.Views.FormatRulesEditDlg.txtDate": "Ամիս-ամսաթիվ", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Կոտորակ", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Ընդհանուր", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "պատկեր չկա", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Թվային", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Տոկոսային", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Գիտական", + "SSE.Views.FormatRulesEditDlg.txtText": "Տեքստ", + "SSE.Views.FormatRulesEditDlg.txtTime": "Ժամանակ", "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Խմբագրել ֆորմատավորման կանոնը", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Ֆորմատավորման նոր կանոն", + "SSE.Views.FormatRulesManagerDlg.guestText": "Հյուր", + "SSE.Views.FormatRulesManagerDlg.lockText": "Կողպված է", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev above average", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 սով. շեղ. Միջինից ներքև", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 սվ շղ. Միջինից վերև", @@ -885,23 +2332,44 @@ "SSE.Views.FormatRulesManagerDlg.textApply": "Դիմել", "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Բջջի արժեքը սկսվում է", "SSE.Views.FormatRulesManagerDlg.textBelow": "Միջինից ցածր", + "SSE.Views.FormatRulesManagerDlg.textBetween": "գտնվում է {0}-ի և {1}-ի միջև", "SSE.Views.FormatRulesManagerDlg.textCellValue": "Բջջի արժեքը", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Գնահատված գունային սանդղակ", "SSE.Views.FormatRulesManagerDlg.textContains": "Բջջի արժեքը պարունակում է", "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Վանդակը պարունակում է դատարկ արժեք", "SSE.Views.FormatRulesManagerDlg.textContainsError": "Վանդակը պարունակում է դատարկ արժեք", "SSE.Views.FormatRulesManagerDlg.textDelete": "Ջնջել", + "SSE.Views.FormatRulesManagerDlg.textDown": "Տեղափոխել կանոնը ներքև", "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Կրկնօրինակ արժեքներ", "SSE.Views.FormatRulesManagerDlg.textEdit": "Խմբագրել", "SSE.Views.FormatRulesManagerDlg.textEnds": "Բջջի արժեքը ավարտվում է", "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Հավասար կամ միջինից բարձր", "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Հավասար կամ միջինից ցածր", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Ձևաչափ", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Սրբապատկերների հավաքածու", + "SSE.Views.FormatRulesManagerDlg.textNew": "Նոր", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "{0}-ի և {1}-ի միջև չէ", "SSE.Views.FormatRulesManagerDlg.textNotContains": "Բջջի արժեքը չի պարունակում", "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Վանդակը չի պարունակում դատարկ արժեք", "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Վանդակը չի պարունակում սխալ", + "SSE.Views.FormatRulesManagerDlg.textRules": "Կանոններ", + "SSE.Views.FormatRulesManagerDlg.textScope": "Ցուցադրել ձևաչափման կանոնները", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Ընտրեք տվյալներ", "SSE.Views.FormatRulesManagerDlg.textSelection": "Ընթացիկ ընտրություն", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Այս առանցքը", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Այս աշխատանքային թերթիկը", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Այս աղյուսակը", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Եզակի արժեքներ", + "SSE.Views.FormatRulesManagerDlg.textUp": "Տեղափոխել կանոնը վերև", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", "SSE.Views.FormatRulesManagerDlg.txtTitle": "Պայմանական ձևավորում", "SSE.Views.FormatSettingsDialog.textCategory": "Կարգավիճակ", "SSE.Views.FormatSettingsDialog.textDecimal": "Տասնորդական", + "SSE.Views.FormatSettingsDialog.textFormat": "Ձևաչափ", + "SSE.Views.FormatSettingsDialog.textLinked": "Կապված է աղբյուրի հետ", + "SSE.Views.FormatSettingsDialog.textSeparator": "Օգտագործեք 1000 տարանջատիչ", + "SSE.Views.FormatSettingsDialog.textSymbols": "Նշաններ", + "SSE.Views.FormatSettingsDialog.textTitle": "Թվերի ձևաչափ", "SSE.Views.FormatSettingsDialog.txtAccounting": "Հաշվապահություն", "SSE.Views.FormatSettingsDialog.txtAs10": "Տասներորդներ (5/10)", "SSE.Views.FormatSettingsDialog.txtAs100": "Հարյուրերորդներ (50/100)", @@ -911,159 +2379,436 @@ "SSE.Views.FormatSettingsDialog.txtAs8": "Ութերորդներ (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "Տարադրամ", "SSE.Views.FormatSettingsDialog.txtCustom": "Հարմարեցված", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Խնդրում ենք ուշադիր մուտքագրել հատուկ համարի ձևաչափը: Աղյուսակների խմբագրիչը չի ստուգում հատուկ ձևաչափերը սխալների համար, որոնք կարող են ազդել xlsx ֆայլի վրա:", "SSE.Views.FormatSettingsDialog.txtDate": "Ամիս-ամսաթիվ", + "SSE.Views.FormatSettingsDialog.txtFraction": "Կոտորակ", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Ընդհանուր", + "SSE.Views.FormatSettingsDialog.txtNone": "Ոչ մեկը", + "SSE.Views.FormatSettingsDialog.txtNumber": "Թվային", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Տոկոսային", + "SSE.Views.FormatSettingsDialog.txtSample": "Նմուշ:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Գիտական", + "SSE.Views.FormatSettingsDialog.txtText": "Տեքստ", + "SSE.Views.FormatSettingsDialog.txtTime": "Ժամանակ", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Մինչև մեկ նիշ (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Մինչև երկու նիշ (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Մինչև երեք նիշ (131/135)", "SSE.Views.FormulaDialog.sDescription": "Նկարագրություն", + "SSE.Views.FormulaDialog.textGroupDescription": "Ընտրեք Ֆունկցիոնալ խումբ", + "SSE.Views.FormulaDialog.textListDescription": "Ընտրեք Գործառույթ", + "SSE.Views.FormulaDialog.txtRecommended": "Առաջարկվում է", + "SSE.Views.FormulaDialog.txtSearch": "Որոնել", + "SSE.Views.FormulaDialog.txtTitle": "Տեղադրել գործառույթը", "SSE.Views.FormulaTab.textAutomatic": "Ինքնաշխատ", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Հաշվարկել ընթացիկ թերթիկը", "SSE.Views.FormulaTab.textCalculateWorkbook": "Հաշվարկել աշխատանքային գրքույկը", + "SSE.Views.FormulaTab.textManual": "Ձեռնադիր", "SSE.Views.FormulaTab.tipCalculate": "Հաշվարկել", "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Հաշվեք ամբողջ աշխատանքային գրքույկը", "SSE.Views.FormulaTab.txtAdditional": "Հավելյալ", "SSE.Views.FormulaTab.txtAutosum": "Ինքնագումարում", + "SSE.Views.FormulaTab.txtAutosumTip": "Ամփոփում", "SSE.Views.FormulaTab.txtCalculation": "Հաշվարկ", + "SSE.Views.FormulaTab.txtFormula": "Ֆունկցիա", + "SSE.Views.FormulaTab.txtFormulaTip": "Տեղադրել գործառույթը", + "SSE.Views.FormulaTab.txtMore": "Ավելի շատ գործառույթներ", + "SSE.Views.FormulaTab.txtRecent": "Վերջերս օգտագործված", "SSE.Views.FormulaWizard.textAny": "ցանկացած", "SSE.Views.FormulaWizard.textArgument": "Արգումենտ", + "SSE.Views.FormulaWizard.textFunction": "Ֆունկցիա", + "SSE.Views.FormulaWizard.textFunctionRes": "Ֆունկցիայի փաստարկներ", + "SSE.Views.FormulaWizard.textHelp": "Օգնություն այս գործառույթի համար", + "SSE.Views.FormulaWizard.textLogical": "Տրամաբանական", + "SSE.Views.FormulaWizard.textNoArgs": "Այս ֆունկցիան չունի փաստարկներ", + "SSE.Views.FormulaWizard.textNumber": "Թվային", + "SSE.Views.FormulaWizard.textRef": "հղում", + "SSE.Views.FormulaWizard.textText": "Տեքստ", + "SSE.Views.FormulaWizard.textTitle": "Ֆունկցիայի փաստարկներ", + "SSE.Views.FormulaWizard.textValue": "Բանաձևի արդյունք", "SSE.Views.HeaderFooterDialog.textAlign": "Հավասարեցնել ըստ էջի լուսանցքների", "SSE.Views.HeaderFooterDialog.textAll": "Բոլոր էջեր", "SSE.Views.HeaderFooterDialog.textBold": "Թավատառ", "SSE.Views.HeaderFooterDialog.textCenter": "Կենտրոն", + "SSE.Views.HeaderFooterDialog.textColor": "Տեքստի գույն", "SSE.Views.HeaderFooterDialog.textDate": "Ամիս-ամսաթիվ", "SSE.Views.HeaderFooterDialog.textDiffFirst": "Տարբեր առաջին էջ", "SSE.Views.HeaderFooterDialog.textDiffOdd": "Կենտ ու զույգ էջերը՝ տարբեր", "SSE.Views.HeaderFooterDialog.textEven": "Զույգ էջ", "SSE.Views.HeaderFooterDialog.textFileName": "Նիշքի անուն", + "SSE.Views.HeaderFooterDialog.textFirst": "Առաջին էջ", + "SSE.Views.HeaderFooterDialog.textFooter": "Էջատակ", + "SSE.Views.HeaderFooterDialog.textHeader": "Էջագլուխ", + "SSE.Views.HeaderFooterDialog.textInsert": "Զետեղել", "SSE.Views.HeaderFooterDialog.textItalic": "Շեղատառ", + "SSE.Views.HeaderFooterDialog.textLeft": "Ձախ", + "SSE.Views.HeaderFooterDialog.textMaxError": "Ձեր մուտքագրած տեքստային տողը չափազանց երկար է: Նվազեցրեք օգտագործվող նիշերի քանակը:", "SSE.Views.HeaderFooterDialog.textNewColor": "Հավելել նոր հարմարեցված գույն", + "SSE.Views.HeaderFooterDialog.textOdd": "Կենտ էջ", + "SSE.Views.HeaderFooterDialog.textPageCount": "Էջերի հաշվարկ", + "SSE.Views.HeaderFooterDialog.textPageNum": "Էջահամար", + "SSE.Views.HeaderFooterDialog.textPresets": "Նախադրվածներ", + "SSE.Views.HeaderFooterDialog.textRight": "Աջ", "SSE.Views.HeaderFooterDialog.textScale": "Փոխել սանդղումը փաստաթղթի հետ", + "SSE.Views.HeaderFooterDialog.textSheet": "Թերթի անվանում", "SSE.Views.HeaderFooterDialog.textStrikeout": "Վրագծում", "SSE.Views.HeaderFooterDialog.textSubscript": "Վարգիր", "SSE.Views.HeaderFooterDialog.textSuperscript": "Վերգիր", + "SSE.Views.HeaderFooterDialog.textTime": "Ժամանակ", + "SSE.Views.HeaderFooterDialog.textTitle": "Վերնագրի/ստորատակի կարգավորումներ", "SSE.Views.HeaderFooterDialog.textUnderline": "Ընդգծված", + "SSE.Views.HeaderFooterDialog.tipFontName": "Տառատեսակ ", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Տառատեսակի չափ", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Ցուցադրել", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Հղում դեպի՝", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Ընդգրկույթ", + "SSE.Views.HyperlinkSettingsDialog.strSheet": "Թերթ", "SSE.Views.HyperlinkSettingsDialog.textCopy": "Պատճենել", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Ընտրված ընդգրկույթ", "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Մուտքագրել խորագիրը այստեղ", "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Մուտքագրել հղումը այստեղ", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Մուտքագրեք գործիքահուշը այստեղ", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Արտաքին հղում", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Ստանալ հղում", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Տվյալների ներքին ընդգրկույթ", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", "SSE.Views.HyperlinkSettingsDialog.textNames": "Սահմանված անուններ", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Թերթիկներ", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "Էկրանային հուշում", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Գերհղման կարգավորումներ", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Այս դաշտը պետք է լինի URL \"http://www.example.com\" ձևաչափով", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Այս դաշտը սահմանափակված է 2083 նիշով", + "SSE.Views.ImageSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "SSE.Views.ImageSettings.textCrop": "Եզրատել", + "SSE.Views.ImageSettings.textCropFill": "Լցնել", + "SSE.Views.ImageSettings.textCropFit": "Հարմարեցնել", "SSE.Views.ImageSettings.textCropToShape": "Կտրել ըստ պատկերի", "SSE.Views.ImageSettings.textEdit": "Խմբագրել", "SSE.Views.ImageSettings.textEditObject": "Խմբագրել առարկան", + "SSE.Views.ImageSettings.textFlip": "Շրջել", "SSE.Views.ImageSettings.textFromFile": "Նիշքից", + "SSE.Views.ImageSettings.textFromStorage": "Պահեստից", + "SSE.Views.ImageSettings.textFromUrl": "URL-ից", + "SSE.Views.ImageSettings.textHeight": "Բարձրություն", + "SSE.Views.ImageSettings.textHint270": "Պտտել 90° ժամացույցի սլաքի հակառակ ուղղությամբ", + "SSE.Views.ImageSettings.textHint90": "Պտտել 90° ժամացույցի սլաքի ուղղությամբ", + "SSE.Views.ImageSettings.textHintFlipH": "Շրջել հորիզոնական", + "SSE.Views.ImageSettings.textHintFlipV": "Շրջել ուղղաձիգ", + "SSE.Views.ImageSettings.textInsert": "Փոխարինել նկարը", "SSE.Views.ImageSettings.textKeepRatio": "Պահպանել համաչափությունը", "SSE.Views.ImageSettings.textOriginalSize": "Իրական չափ", + "SSE.Views.ImageSettings.textRecentlyUsed": "Վերջերս օգտագործված", + "SSE.Views.ImageSettings.textRotate90": "Պտտել 90°", + "SSE.Views.ImageSettings.textRotation": "Շրջում ", + "SSE.Views.ImageSettings.textSize": "Չափ", + "SSE.Views.ImageSettings.textWidth": "Լայնք", "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով", "SSE.Views.ImageSettingsAdvanced.textAlt": "Այլընտրական տեքստ", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Նկարագրություն", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "Տեսողական առարկաների այլընտրական տեքստային ներկայացում, որը ընթերցվելու է տեսողության կամ մտավոր խանգարումներով մարդկանց համար՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա նկարի, պատկերի, գծապատկերի կամ աղյուսակի վրա։", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Վերնագիր", "SSE.Views.ImageSettingsAdvanced.textAngle": "Անկյուն", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Շրջված", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Հորիզոնական ", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Շրջում ", "SSE.Views.ImageSettingsAdvanced.textSnap": "Բջիջների խզում", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Պատկեր - ընդլայնված կարգավորումներ", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել բջիջներով", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Ուղղահայաց", "SSE.Views.LeftMenu.tipAbout": "Ծրագրի մասին", "SSE.Views.LeftMenu.tipChat": "Զրույց", "SSE.Views.LeftMenu.tipComments": "Մեկնաբանություններ", "SSE.Views.LeftMenu.tipFile": "Նիշք", + "SSE.Views.LeftMenu.tipPlugins": "Պլագիններ", + "SSE.Views.LeftMenu.tipSearch": "Որոնել", + "SSE.Views.LeftMenu.tipSpellcheck": "Ուղղագրության ստուգում", "SSE.Views.LeftMenu.tipSupport": "Հետադարձ կապ և աջակցություն", "SSE.Views.LeftMenu.txtDeveloper": "ՄՇԱԿՈՂԻ ԱՇԽԱՏԱԿԱՐԳ", + "SSE.Views.LeftMenu.txtEditor": "Աղյուսակաթերթի խմբագիր", + "SSE.Views.LeftMenu.txtLimit": "Սահմանափակել մուտքը", + "SSE.Views.LeftMenu.txtTrial": "ՓՈՐՁԱՐԿՄԱՆ ՌԵԺԻՄ", + "SSE.Views.LeftMenu.txtTrialDev": "Փորձնական մշակողի ռեժիմ", + "SSE.Views.MacroDialog.textMacro": "Մակրո անունը", "SSE.Views.MacroDialog.textTitle": "Նշանակել մակրո", "SSE.Views.MainSettingsPrint.okButtonText": "Պահպանել", "SSE.Views.MainSettingsPrint.strBottom": "Ներքև", + "SSE.Views.MainSettingsPrint.strLandscape": "Հորիզոնական", + "SSE.Views.MainSettingsPrint.strLeft": "Ձախ", + "SSE.Views.MainSettingsPrint.strMargins": "Լուսանցքներ", "SSE.Views.MainSettingsPrint.strPortrait": "Ուղղաձիգ ", + "SSE.Views.MainSettingsPrint.strPrint": "Տպել", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Տպել վերնագրեր", + "SSE.Views.MainSettingsPrint.strRight": "Աջ", "SSE.Views.MainSettingsPrint.strTop": "Վերև", "SSE.Views.MainSettingsPrint.textActualSize": "Իրական չափ", "SSE.Views.MainSettingsPrint.textCustom": "Հարմարեցված", "SSE.Views.MainSettingsPrint.textCustomOptions": "Հարմարեցված ընտրանքներ", + "SSE.Views.MainSettingsPrint.textFitCols": "Տեղադրել բոլոր սյունակները մեկ էջում", + "SSE.Views.MainSettingsPrint.textFitPage": "Տեղավորել թերթը մեկ էջում", + "SSE.Views.MainSettingsPrint.textFitRows": "Տեղավորել բոլոր տողերը մեկ էջում", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Էջի կողմնորոշում", + "SSE.Views.MainSettingsPrint.textPageScaling": "Սանդղում", + "SSE.Views.MainSettingsPrint.textPageSize": "Էջի չափ", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Տպել ցանցագծերը", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Տպել տողերի և սյունակների վերնագրերը", + "SSE.Views.MainSettingsPrint.textRepeat": "Կրկնել...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Կրկնել սյունակները ձախ կողմում", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Կրկնել տողերը վերևում", + "SSE.Views.MainSettingsPrint.textSettings": "Կարգավորումներ համար", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Անվանված առկա ընդգրկույթներն այս պահին չեն կարող խմբագրվել և նորերը չեն կարող ստեղծվել,
քանի որ դրանց մի մասը խմբագրվում է։", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Սահմանված անուն", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Զգուշացում", + "SSE.Views.NamedRangeEditDlg.strWorkbook": "Աշխատագիրք", "SSE.Views.NamedRangeEditDlg.textDataRange": "Տվյալների տիրույթ", "SSE.Views.NamedRangeEditDlg.textExistName": "ՍԽԱԼ. Նման անունով միջակայք արդեն գոյություն ունի", "SSE.Views.NamedRangeEditDlg.textInvalidName": "Անունը պիտի սկսվի տառով կամ ստորագծով և պիտի չունենա անթույլատրելի գրանշաններ։", "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ՍԽԱԼ! Անվավեր բջիջների տիրույթ", "SSE.Views.NamedRangeEditDlg.textIsLocked": "ՍԽԱԼ. Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", + "SSE.Views.NamedRangeEditDlg.textName": "Անուն", + "SSE.Views.NamedRangeEditDlg.textReservedName": "Անունը, որը դուք փորձում եք օգտագործել, արդեն նշված է բջջային բանաձևերում: Խնդրում ենք օգտագործել այլ անուն:", + "SSE.Views.NamedRangeEditDlg.textScope": "Շրջանակ", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Խմբագրել անունը", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Նոր անուն", + "SSE.Views.NamedRangePasteDlg.textNames": "Անվանված միջակայքեր", + "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", "SSE.Views.NameManagerDlg.closeButtonText": "Փակել", + "SSE.Views.NameManagerDlg.guestText": "Հյուր", + "SSE.Views.NameManagerDlg.lockText": "Կողպված է", "SSE.Views.NameManagerDlg.textDataRange": "Տվյալների տիրույթ", "SSE.Views.NameManagerDlg.textDelete": "Ջնջել", "SSE.Views.NameManagerDlg.textEdit": "Խմբագրել", + "SSE.Views.NameManagerDlg.textEmpty": "Անվանված ընդգրկույթներ դեռ չեն ստեղծվել:
Ստեղծեք առնվազն մեկ անունով միջակայք և այն կհայտնվի այս դաշտում:", + "SSE.Views.NameManagerDlg.textFilter": "Զտիչ", "SSE.Views.NameManagerDlg.textFilterAll": "Բոլորը", "SSE.Views.NameManagerDlg.textFilterDefNames": "Սահմանված անուններ", + "SSE.Views.NameManagerDlg.textFilterSheet": "Անուններ, որոնք ընդգրկված են թերթի վրա", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Սեղանի անունները", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Անուններ, որոնք նախատեսված են աշխատանքային գրքում", + "SSE.Views.NameManagerDlg.textNew": "Նոր", + "SSE.Views.NameManagerDlg.textnoNames": "Ձեր ֆիլտրին համապատասխանող անվանական տիրույթներ չեն գտնվել:", + "SSE.Views.NameManagerDlg.textRanges": "Անվանված միջակայքեր", + "SSE.Views.NameManagerDlg.textScope": "Շրջանակ", + "SSE.Views.NameManagerDlg.textWorkbook": "Աշխատագիրք", + "SSE.Views.NameManagerDlg.tipIsLocked": "Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", + "SSE.Views.NameManagerDlg.txtTitle": "Անվան կառավարիչ", "SSE.Views.NameManagerDlg.warnDelete": "Իսկապե՞ս ուզում եք ջնջել {0} անունը:", "SSE.Views.PageMarginsDialog.textBottom": "Ներքև", + "SSE.Views.PageMarginsDialog.textLeft": "Ձախ", + "SSE.Views.PageMarginsDialog.textRight": "Աջ", + "SSE.Views.PageMarginsDialog.textTitle": "Լուսանցքներ", "SSE.Views.PageMarginsDialog.textTop": "Վերև", "SSE.Views.ParagraphSettings.strLineHeight": "Տողամիջոց", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Միջպարբերութային տարածք", "SSE.Views.ParagraphSettings.strSpacingAfter": "Հետո", "SSE.Views.ParagraphSettings.strSpacingBefore": "Առաջ", + "SSE.Views.ParagraphSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "SSE.Views.ParagraphSettings.textAt": "Այստեղ՝", "SSE.Views.ParagraphSettings.textAtLeast": "Առնվազն", "SSE.Views.ParagraphSettings.textAuto": "Բազմակի", "SSE.Views.ParagraphSettings.textExact": "ճշգրիտ", "SSE.Views.ParagraphSettings.txtAutoText": "Ինքնաշխատ", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Նշված ներդիրները կհայտնվեն այս դաշտում։", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Միայն մեծատառեր", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Կրկնակի վրագծում", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "նահանջներ", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Ձախ", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Տողամիջոց", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Աջ", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Հետո", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Առաջ", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Հատուկ", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Ըստ", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Տառատեսակ ", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Նահանջներ և միջատարածք", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Փոքրատառեր", "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Միջատարածք", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Վրագծում", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Վարգիր", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Վերգիր", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "ՆԵՐԴԻՐՆԵՐ", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Հավասարեցում", "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Բազմակի", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Միջնիշային տարածք", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Սկզբնադիր սյունատ", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Էֆեկտներ", "SSE.Views.ParagraphSettingsAdvanced.textExact": "ճշգրիտ", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Առաջին տող", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Կախում", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Լայնությամբ", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ոչ մեկը)", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Ջնջել", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Ջնջել բոլորը", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Հատկորոշել", "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Կենտրոն", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Ձախ", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Ներդիրի դիրքը", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Աջ", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Պարբերություն- ընդլայնված կարգավորումներ", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ", "SSE.Views.PivotDigitalFilterDialog.capCondition1": "հավասար է", "SSE.Views.PivotDigitalFilterDialog.capCondition10": "չի ավարտվում հետևյալով", "SSE.Views.PivotDigitalFilterDialog.capCondition11": "պարունակում է", "SSE.Views.PivotDigitalFilterDialog.capCondition12": "չի պարունակում", "SSE.Views.PivotDigitalFilterDialog.capCondition13": "միջև", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "ոչ թե միջև", "SSE.Views.PivotDigitalFilterDialog.capCondition2": "Հավասար չէ", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "ավելի մեծ է, քան", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "մեծ է կամ հավասար է", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "պակաս է քան", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "փոքր է կամ հավասար է", "SSE.Views.PivotDigitalFilterDialog.capCondition7": "Սկսվում է ", "SSE.Views.PivotDigitalFilterDialog.capCondition8": "չի սկսվում հետևյալով", "SSE.Views.PivotDigitalFilterDialog.capCondition9": "Ավարտվում է ", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Ցույց տալ այն տարրերը, որոնց պիտակը.", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Ցույց տալ տարրեր, որոնց համար՝", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Օգտագործե՞լ ներկայացնել ցանկացած առանձին կերպար", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Օգտագործեք *՝ կերպարների ցանկացած շարք ներկայացնելու համար", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "և", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Պիտակի զտիչ", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Արժեքի զտիչ", "SSE.Views.PivotGroupDialog.textAuto": "Ավտոմատ", "SSE.Views.PivotGroupDialog.textBy": "Ըստ", "SSE.Views.PivotGroupDialog.textDays": "օրեր", "SSE.Views.PivotGroupDialog.textEnd": "Ավարտ.", + "SSE.Views.PivotGroupDialog.textError": "Այս դաշտը պետք է լինի թվային արժեք", + "SSE.Views.PivotGroupDialog.textGreaterError": "Վերջնական թիվը պետք է մեծ լինի սկզբի համարից", + "SSE.Views.PivotGroupDialog.textHour": "Ժամեր", + "SSE.Views.PivotGroupDialog.textMin": "Րոպե", + "SSE.Views.PivotGroupDialog.textMonth": "ամիսներ", + "SSE.Views.PivotGroupDialog.textNumDays": "Օրերի քանակը", + "SSE.Views.PivotGroupDialog.textQuart": "Քառորդներ", + "SSE.Views.PivotGroupDialog.textSec": "Վայրկյան", + "SSE.Views.PivotGroupDialog.textStart": "Սկսած", + "SSE.Views.PivotGroupDialog.textYear": "Տարիներ", + "SSE.Views.PivotGroupDialog.txtTitle": "Խմբավորում", + "SSE.Views.PivotSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "SSE.Views.PivotSettings.textColumns": "Սյունակներ", + "SSE.Views.PivotSettings.textFields": "Ընտրեք Դաշտեր", + "SSE.Views.PivotSettings.textFilters": "Զտիչներ", + "SSE.Views.PivotSettings.textRows": "Տողեր", + "SSE.Views.PivotSettings.textValues": "Արժեքներ", "SSE.Views.PivotSettings.txtAddColumn": "Դնել սյունակներում", "SSE.Views.PivotSettings.txtAddFilter": "Հավելել զտիչներում", "SSE.Views.PivotSettings.txtAddRow": "Դնել տողերում", "SSE.Views.PivotSettings.txtAddValues": "Հավելել արժեքներում", + "SSE.Views.PivotSettings.txtFieldSettings": "Դաշտի կարգավորումներ", + "SSE.Views.PivotSettings.txtMoveBegin": "Անցնել դեպի սկիզբ", + "SSE.Views.PivotSettings.txtMoveColumn": "Տեղափոխել դեպի սյունակներ", + "SSE.Views.PivotSettings.txtMoveDown": "Իջնել", + "SSE.Views.PivotSettings.txtMoveEnd": "Տեղափոխել դեպի վերջ", + "SSE.Views.PivotSettings.txtMoveFilter": "Տեղափոխել դեպի զտիչներ", + "SSE.Views.PivotSettings.txtMoveRow": "Տեղափոխել դեպի տողեր", + "SSE.Views.PivotSettings.txtMoveUp": "Շարժվել վերև", + "SSE.Views.PivotSettings.txtMoveValues": "Անցնել արժեքներ", + "SSE.Views.PivotSettings.txtRemove": "Հեռացնել դաշտը", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Անունը և դասավորությունը", "SSE.Views.PivotSettingsAdvanced.textAlt": "Այլընտրանքային տեքստ", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Նկարագրություն", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Տեսողական օբյեկտի տեղեկատվության այլընտրանքային տեքստի վրա հիմնված ներկայացում, որը կկարդացվի տեսողության կամ ճանաչողական խանգարումներ ունեցող մարդկանց՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա պատկերի, ինքնաձևի, գծապատկերի կամ աղյուսակի վրա:", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Վերնագիր", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Տվյալների տիրույթ", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Տվյալների աղբյուր", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Ցուցադրել դաշտերը հաշվետվության ֆիլտրի տարածքում", "SSE.Views.PivotSettingsAdvanced.textDown": "Ներքև, հետո վերջ", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Հանրագումարներ", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Դաշտի վերնագրեր", "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.PivotSettingsAdvanced.textOver": "Ավարտ, հետո ներքև", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Ցուցադրել սյունակների համար", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Ցույց տալ դաշտերի վերնագրերը տողերի և սյունակների համար", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Ցուցադրել տողերի համար", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Առանցքային աղյուսակ - Ընդլայնված կարգավորումներ", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Զեկուցեք ֆիլտրի դաշտերը յուրաքանչյուր սյունակի համար", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Հաղորդել զտիչ դաշտերը յուրաքանչյուր տողի համար", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.PivotSettingsAdvanced.txtName": "Անուն", "SSE.Views.PivotTable.capBlankRows": "Դատարկ տողեր", + "SSE.Views.PivotTable.capGrandTotals": "Հանրագումարներ", + "SSE.Views.PivotTable.capLayout": "Հաշվետվության դասավորությունը", + "SSE.Views.PivotTable.capSubtotals": "Ենթագումարներ", + "SSE.Views.PivotTable.mniBottomSubtotals": "Ցույց տալ բոլոր ենթագումարները խմբի ներքևում", + "SSE.Views.PivotTable.mniInsertBlankLine": "Տեղադրեք դատարկ տող յուրաքանչյուր կետից հետո", + "SSE.Views.PivotTable.mniLayoutCompact": "Ցույց տալ կոմպակտ ձևով", "SSE.Views.PivotTable.mniLayoutNoRepeat": "Չկրկնել տարրերի բոլոր մեկնագրերը", + "SSE.Views.PivotTable.mniLayoutOutline": "Ցույց տալ ուրվագծային ձևով", "SSE.Views.PivotTable.mniLayoutRepeat": "Կրկնել տարրերի բոլոր մեկնագրերը", + "SSE.Views.PivotTable.mniLayoutTabular": "Ցույց տալ աղյուսակային ձևով", "SSE.Views.PivotTable.mniNoSubtotals": "Մի ցուցադրեք ենթագումարները", + "SSE.Views.PivotTable.mniOffTotals": "Անջատված է տողերի և սյունակների համար", + "SSE.Views.PivotTable.mniOnColumnsTotals": "Միացված է միայն սյունակների համար", + "SSE.Views.PivotTable.mniOnRowsTotals": "Միացված է միայն տողերի համար", + "SSE.Views.PivotTable.mniOnTotals": "Միացված է տողերի և սյունակների համար", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Հեռացրեք դատարկ տողը յուրաքանչյուր կետից հետո", + "SSE.Views.PivotTable.mniTopSubtotals": "Ցուցադրել բոլոր ենթագումարները խմբի վերևում", "SSE.Views.PivotTable.textColBanded": "Միջարկվող սյունակներ", "SSE.Views.PivotTable.textColHeader": "Սյունակների վերնագրեր", "SSE.Views.PivotTable.textRowBanded": "Միջարկվող տողեր", + "SSE.Views.PivotTable.textRowHeader": "Տողերի վերնագրեր", + "SSE.Views.PivotTable.tipCreatePivot": "Տեղադրել առանցքային աղյուսակը", + "SSE.Views.PivotTable.tipGrandTotals": "Ցույց տալ կամ թաքցնել ընդհանուր գումարները", + "SSE.Views.PivotTable.tipRefresh": "Թարմացրեք տեղեկատվությունը տվյալների աղբյուրից", + "SSE.Views.PivotTable.tipSelect": "Ընտրեք ամբողջ առանցքային աղյուսակը", + "SSE.Views.PivotTable.tipSubtotals": "Ցույց տալ կամ թաքցնել ենթագումարները", + "SSE.Views.PivotTable.txtCreate": "Զետեղել աղյուսակ", + "SSE.Views.PivotTable.txtPivotTable": "Առանցքային աղյուսակ", + "SSE.Views.PivotTable.txtRefresh": "Թարմացնել", + "SSE.Views.PivotTable.txtSelect": "Ընտրել", "SSE.Views.PrintSettings.btnDownload": "Պահպանել և ներբեռնել", "SSE.Views.PrintSettings.btnPrint": "Պահպանել և տպել", "SSE.Views.PrintSettings.strBottom": "Ներքև", + "SSE.Views.PrintSettings.strLandscape": "Հորիզոնական", + "SSE.Views.PrintSettings.strLeft": "Ձախ", + "SSE.Views.PrintSettings.strMargins": "Լուսանցքներ", "SSE.Views.PrintSettings.strPortrait": "Ուղղաձիգ ", + "SSE.Views.PrintSettings.strPrint": "Տպել", + "SSE.Views.PrintSettings.strPrintTitles": "Տպել վերնագրեր", + "SSE.Views.PrintSettings.strRight": "Աջ", + "SSE.Views.PrintSettings.strShow": "Ցույց տալ", "SSE.Views.PrintSettings.strTop": "Վերև", "SSE.Views.PrintSettings.textActualSize": "Իրական չափ", "SSE.Views.PrintSettings.textAllSheets": "Բոլոր թերթեր", "SSE.Views.PrintSettings.textCurrentSheet": "Ընթացիկ թերթիկ", "SSE.Views.PrintSettings.textCustom": "Հարմարեցված", "SSE.Views.PrintSettings.textCustomOptions": "Հարմարեցված ընտրանքներ", + "SSE.Views.PrintSettings.textFitCols": "Տեղադրել բոլոր սյունակները մեկ էջում", + "SSE.Views.PrintSettings.textFitPage": "Տեղավորել թերթը մեկ էջում", + "SSE.Views.PrintSettings.textFitRows": "Տեղավորել բոլոր տողերը մեկ էջում", + "SSE.Views.PrintSettings.textHideDetails": "Թաքցնել մանրամասները", + "SSE.Views.PrintSettings.textIgnore": "Անտեսել տպման տարածքը", "SSE.Views.PrintSettings.textLayout": "Դասավորություն ", + "SSE.Views.PrintSettings.textPageOrientation": "Էջի կողմնորոշում", + "SSE.Views.PrintSettings.textPageScaling": "Սանդղում", + "SSE.Views.PrintSettings.textPageSize": "Էջի չափ", + "SSE.Views.PrintSettings.textPrintGrid": "Տպել ցանցագծերը", + "SSE.Views.PrintSettings.textPrintHeadings": "Տպել տողերի և սյունակների վերնագրերը", + "SSE.Views.PrintSettings.textPrintRange": "Տպման տիրույթ", + "SSE.Views.PrintSettings.textRange": "Ընդգրկույթ", + "SSE.Views.PrintSettings.textRepeat": "Կրկնել...", + "SSE.Views.PrintSettings.textRepeatLeft": "Կրկնել սյունակները ձախ կողմում", + "SSE.Views.PrintSettings.textRepeatTop": "Կրկնել տողերը վերևում", + "SSE.Views.PrintSettings.textSelection": "Ընտրություն", + "SSE.Views.PrintSettings.textSettings": "Թերթի կարգավորումներ", + "SSE.Views.PrintSettings.textShowDetails": "Ցույց տալ մանրամասները", + "SSE.Views.PrintSettings.textShowGrid": "Ցուցադրել Ցանցային գծերը", + "SSE.Views.PrintSettings.textShowHeadings": "Ցույց տալ տողերի և սյունակների վերնագրերը", + "SSE.Views.PrintSettings.textTitle": "Տպման կարգավորումներ", + "SSE.Views.PrintSettings.textTitlePDF": "PDF կարգավորումներ", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Առաջին սյունակ", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Առաջին շարք", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Սառեցված սյուներ", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Սառեցված շարքեր", "SSE.Views.PrintTitlesDialog.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.PrintTitlesDialog.textLeft": "Կրկնել սյունակները ձախ կողմում", "SSE.Views.PrintTitlesDialog.textNoRepeat": "Մի՛ կրկնիր", + "SSE.Views.PrintTitlesDialog.textRepeat": "Կրկնել...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Ընտրեք միջակայքը", + "SSE.Views.PrintTitlesDialog.textTitle": "Տպել վերնագրեր", + "SSE.Views.PrintTitlesDialog.textTop": "Կրկնել տողերը վերևում", "SSE.Views.PrintWithPreview.txtActualSize": "Իրական չափ", "SSE.Views.PrintWithPreview.txtAllSheets": "Բոլոր թերթեր", "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Կիրառեք բոլոր թերթերին", @@ -1071,42 +2816,181 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Ընթացիկ թերթիկ", "SSE.Views.PrintWithPreview.txtCustom": "Հարմարեցված", "SSE.Views.PrintWithPreview.txtCustomOptions": "Հարմարեցված ընտրանքներ", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Տպելու բան չկա, քանի որ աղյուսակը դատարկ է", + "SSE.Views.PrintWithPreview.txtFitCols": "Տեղադրել բոլոր սյունակները մեկ էջում", + "SSE.Views.PrintWithPreview.txtFitPage": "Տեղավորել թերթը մեկ էջում", + "SSE.Views.PrintWithPreview.txtFitRows": "Տեղավորել բոլոր տողերը մեկ էջում", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Ցանցային գծեր և վերնագրեր", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Վերնագրի/ստորատակի կարգավորումներ", + "SSE.Views.PrintWithPreview.txtIgnore": "Անտեսել տպման տարածքը", + "SSE.Views.PrintWithPreview.txtLandscape": "Հորիզոնական", + "SSE.Views.PrintWithPreview.txtLeft": "Ձախ", + "SSE.Views.PrintWithPreview.txtMargins": "Լուսանցքներ", + "SSE.Views.PrintWithPreview.txtOf": "{0}-ից", + "SSE.Views.PrintWithPreview.txtPage": "Էջ", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Էջի համարն անվավեր է", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Էջի կողմնորոշում", + "SSE.Views.PrintWithPreview.txtPageSize": "Էջի չափ", "SSE.Views.PrintWithPreview.txtPortrait": "Ուղղաձիգ ", + "SSE.Views.PrintWithPreview.txtPrint": "Տպել", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Տպել ցանցագծերը", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Տպել տողերի և սյունակների վերնագրերը", + "SSE.Views.PrintWithPreview.txtPrintRange": "Տպման տիրույթ", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Տպել վերնագրեր", + "SSE.Views.PrintWithPreview.txtRepeat": "Կրկնել...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Կրկնել սյունակները ձախ կողմում", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Կրկնել տողերը վերևում", + "SSE.Views.PrintWithPreview.txtRight": "Աջ", + "SSE.Views.PrintWithPreview.txtSave": "Պահպանել", + "SSE.Views.PrintWithPreview.txtScaling": "Սանդղում", + "SSE.Views.PrintWithPreview.txtSelection": "Ընտրություն", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Թերթի պարամետրերը", + "SSE.Views.PrintWithPreview.txtSheet": "Թերթ՝ {0}", "SSE.Views.PrintWithPreview.txtTop": "Վերև", "SSE.Views.ProtectDialog.textExistName": "ՍԽԱԼ. Նման վերնագրով միջակայքն արդեն գոյություն ունի", + "SSE.Views.ProtectDialog.textInvalidName": "Տարածքի վերնագիրը պետք է սկսվի տառով և կարող է պարունակել միայն տառեր, թվեր և բացատներ:", "SSE.Views.ProtectDialog.textInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.ProtectDialog.textSelectData": "Ընտրեք տվյալներ", "SSE.Views.ProtectDialog.txtAllow": "Թույլատրել այս թերթի բոլոր օգտվողներին", + "SSE.Views.ProtectDialog.txtAutofilter": "Օգտագործեք ավտոմատ զտիչ", "SSE.Views.ProtectDialog.txtDelCols": "Ջնջել սյունակները", "SSE.Views.ProtectDialog.txtDelRows": "Ջնջել տողերը", + "SSE.Views.ProtectDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", + "SSE.Views.ProtectDialog.txtFormatCells": "Ձևաչափեք բջիջները", + "SSE.Views.ProtectDialog.txtFormatCols": "Ձևաչափեք սյունակները", + "SSE.Views.ProtectDialog.txtFormatRows": "Ձևաչափեք տողերը", "SSE.Views.ProtectDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ", + "SSE.Views.ProtectDialog.txtInsCols": "Զետեղել սյուներ", + "SSE.Views.ProtectDialog.txtInsHyper": "Տեղադրել հիպերհղում", + "SSE.Views.ProtectDialog.txtInsRows": "Տեղադրել տողեր", "SSE.Views.ProtectDialog.txtObjs": "Խմբագրել օբյեկտները", + "SSE.Views.ProtectDialog.txtOptional": "ընտրովի", + "SSE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ", + "SSE.Views.ProtectDialog.txtPivot": "Օգտագործեք PivotTable և PivotChart", + "SSE.Views.ProtectDialog.txtProtect": "Պաշտպանել", + "SSE.Views.ProtectDialog.txtRange": "Ընդգրկույթ", + "SSE.Views.ProtectDialog.txtRangeName": "Վերնագիր", + "SSE.Views.ProtectDialog.txtRepeat": "Կրկնել գաղտնաբառը", "SSE.Views.ProtectDialog.txtScen": "Խմբագրել սցենարները", + "SSE.Views.ProtectDialog.txtSelLocked": "Ընտրեք կողպված բջիջները", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Ընտրեք ապակողպված բջիջները", + "SSE.Views.ProtectDialog.txtSheetDescription": "Կանխեք ուրիշների կողմից անցանկալի փոփոխությունները՝ սահմանափակելով նրանց խմբագրելու հնարավորությունը:", + "SSE.Views.ProtectDialog.txtSheetTitle": "Պաշտպանել թերթը", + "SSE.Views.ProtectDialog.txtSort": "Տեսակավորել", + "SSE.Views.ProtectDialog.txtWarning": "Զգուշացում․ գաղտնաբառը կորցնելու կամ մոռանալու դեպքում այն ​​չի կարող վերականգնվել։Խնդրում ենք պահել այն ապահով տեղում:", + "SSE.Views.ProtectDialog.txtWBDescription": "Որպեսզի այլ օգտվողներ չդիտեն թաքնված աշխատաթերթերը, ավելացնել, տեղափոխել, ջնջել կամ թաքցնել աշխատաթերթերը և վերանվանել աշխատաթերթերը, կարող եք պաշտպանել ձեր աշխատանքային գրքի կառուցվածքը գաղտնաբառով:", + "SSE.Views.ProtectDialog.txtWBTitle": "Պաշտպանել աշխատագրքի կառուցվածքը", + "SSE.Views.ProtectRangesDlg.guestText": "Հյուր", + "SSE.Views.ProtectRangesDlg.lockText": "Կողպված է", "SSE.Views.ProtectRangesDlg.textDelete": "Ջնջել", "SSE.Views.ProtectRangesDlg.textEdit": "Խմբագրել", + "SSE.Views.ProtectRangesDlg.textEmpty": "Խմբագրման համար տիրույթներ չեն թույլատրվում:", + "SSE.Views.ProtectRangesDlg.textNew": "Նոր", + "SSE.Views.ProtectRangesDlg.textProtect": "Պաշտպանել թերթը", + "SSE.Views.ProtectRangesDlg.textPwd": "Գաղտնաբառ", + "SSE.Views.ProtectRangesDlg.textRange": "Ընդգրկույթ", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Շրջանակներ, որոնք ապակողպված են գաղտնաբառով, երբ թերթը պաշտպանված է (սա աշխատում է միայն կողպված բջիջների համար)", + "SSE.Views.ProtectRangesDlg.textTitle": "Վերնագիր", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", "SSE.Views.ProtectRangesDlg.txtEditRange": "Խմբագրել միջակայքը", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Նոր տեսականի", + "SSE.Views.ProtectRangesDlg.txtNo": "Ոչ", "SSE.Views.ProtectRangesDlg.txtTitle": "Թույլ տվեք օգտվողներին խմբագրել միջակայքերը", + "SSE.Views.ProtectRangesDlg.txtYes": "Այո", "SSE.Views.ProtectRangesDlg.warnDelete": "Իսկապե՞ս ուզում եք ջնջել {0} անունը:", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Սյունակներ", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Կրկնվող արժեքները ջնջելու համար ընտրեք մեկ կամ մի քանի սյունակներ, որոնք պարունակում են կրկնօրինակներ:", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Իմ տվյալները վերնագրեր ունեն", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Ընտրել բոլորը", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Հեռացրեք կրկնօրինակները", "SSE.Views.RightMenu.txtCellSettings": "Բջջային կարգավորումներ", "SSE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ", + "SSE.Views.RightMenu.txtImageSettings": "Նկարի կարգավորումներ", + "SSE.Views.RightMenu.txtParagraphSettings": "Պարբերության կարգավորումներ", + "SSE.Views.RightMenu.txtPivotSettings": "Առանցքային աղյուսակի կարգավորումներ", "SSE.Views.RightMenu.txtSettings": "Ընդհանուր կարգավորումներ", + "SSE.Views.RightMenu.txtShapeSettings": "Պատկերի կարգավորումներ", + "SSE.Views.RightMenu.txtSignatureSettings": "Ստորագրության կարգավորումներ", + "SSE.Views.RightMenu.txtSlicerSettings": "Շերտազտիչ կարգավորումներ", + "SSE.Views.RightMenu.txtSparklineSettings": "կայծգծի կարգավորումներ", + "SSE.Views.RightMenu.txtTableSettings": "Աղյուսակի կարգավորումներ", + "SSE.Views.RightMenu.txtTextArtSettings": "Տեքստարվեստի կարգավորումներ", "SSE.Views.ScaleDialog.textAuto": "Ավտոմատ", + "SSE.Views.ScaleDialog.textError": "Մուտքագրված արժեքը սխալ է:", + "SSE.Views.ScaleDialog.textFewPages": "Էջեր", + "SSE.Views.ScaleDialog.textFitTo": "Տեղավորել ըստ.", + "SSE.Views.ScaleDialog.textHeight": "Բարձրություն", + "SSE.Views.ScaleDialog.textManyPages": "Էջեր", + "SSE.Views.ScaleDialog.textOnePage": "Էջ", + "SSE.Views.ScaleDialog.textScaleTo": "Սանդղակ Դեպի", + "SSE.Views.ScaleDialog.textTitle": "Սանդղակի կարգավորումներ", + "SSE.Views.ScaleDialog.textWidth": "Լայնք", + "SSE.Views.SetValueDialog.txtMaxText": "Այս դաշտի առավելագույն արժեքը {0} է", + "SSE.Views.SetValueDialog.txtMinText": "Այս դաշտի նվազագույն արժեքը {0} է", "SSE.Views.ShapeSettings.strBackground": "Ֆոնի գույն", "SSE.Views.ShapeSettings.strChange": "Փոխել ինքնաձևը", "SSE.Views.ShapeSettings.strColor": "Գույն", + "SSE.Views.ShapeSettings.strFill": "Լցնել", + "SSE.Views.ShapeSettings.strForeground": "Հետնագույն", + "SSE.Views.ShapeSettings.strPattern": "Նախշ", + "SSE.Views.ShapeSettings.strShadow": "Ցուցադրել ստվերը", + "SSE.Views.ShapeSettings.strSize": "Չափ", + "SSE.Views.ShapeSettings.strStroke": "Գիծ", + "SSE.Views.ShapeSettings.strTransparency": "Թափանցիկություն", + "SSE.Views.ShapeSettings.strType": "Տեսակ", + "SSE.Views.ShapeSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "SSE.Views.ShapeSettings.textAngle": "Անկյուն", + "SSE.Views.ShapeSettings.textBorderSizeErr": " Մուտքագրված արժեքը սխալ է: Խնդրում ենք մուտքագրել 0կտ-ից 255կտ թվային արժեք:", "SSE.Views.ShapeSettings.textColor": "Գույնի լցում", "SSE.Views.ShapeSettings.textDirection": "Ուղղություն", + "SSE.Views.ShapeSettings.textEmptyPattern": "Առանց օրինակի", + "SSE.Views.ShapeSettings.textFlip": "Շրջել", "SSE.Views.ShapeSettings.textFromFile": "Նիշքից", + "SSE.Views.ShapeSettings.textFromStorage": "Պահեստից", + "SSE.Views.ShapeSettings.textFromUrl": "URL-ից", + "SSE.Views.ShapeSettings.textGradient": "Սահանցման կետեր", + "SSE.Views.ShapeSettings.textGradientFill": "Սահանցման լցում ", + "SSE.Views.ShapeSettings.textHint270": "Պտտել 90° ժամացույցի սլաքի հակառակ ուղղությամբ", + "SSE.Views.ShapeSettings.textHint90": "Պտտել 90° ժամացույցի սլաքի ուղղությամբ", + "SSE.Views.ShapeSettings.textHintFlipH": "Շրջել հորիզոնական", + "SSE.Views.ShapeSettings.textHintFlipV": "Շրջել ուղղաձիգ", + "SSE.Views.ShapeSettings.textImageTexture": "Նկար կամ կառուցվածք", + "SSE.Views.ShapeSettings.textLinear": "Գծային", + "SSE.Views.ShapeSettings.textNoFill": "Առանց լցման", + "SSE.Views.ShapeSettings.textOriginalSize": "Օրիգինալ չափս", + "SSE.Views.ShapeSettings.textPatternFill": "Նախշ", + "SSE.Views.ShapeSettings.textPosition": "Դիրք", + "SSE.Views.ShapeSettings.textRadial": "Ճառագայթային", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Վերջերս օգտագործված", + "SSE.Views.ShapeSettings.textRotate90": "Պտտել 90°", + "SSE.Views.ShapeSettings.textRotation": "Շրջում ", + "SSE.Views.ShapeSettings.textSelectImage": "Ընտրել նկար", + "SSE.Views.ShapeSettings.textSelectTexture": "Ընտրել", + "SSE.Views.ShapeSettings.textStretch": "Ձգել", + "SSE.Views.ShapeSettings.textStyle": "Ոճ", + "SSE.Views.ShapeSettings.textTexture": "Կառուցվածքից", + "SSE.Views.ShapeSettings.textTile": "Սալիկ", "SSE.Views.ShapeSettings.tipAddGradientPoint": "Ավելացնել սահանցման կետ", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Հեռացնել գրադիենտ կետը", "SSE.Views.ShapeSettings.txtBrownPaper": "Գորշ թուղթ", "SSE.Views.ShapeSettings.txtCanvas": "Կտավ", "SSE.Views.ShapeSettings.txtCarton": "Ստվարաթուղթ", "SSE.Views.ShapeSettings.txtDarkFabric": "Մուգ կտոր", + "SSE.Views.ShapeSettings.txtGrain": "Հատիկավորության", + "SSE.Views.ShapeSettings.txtGranite": "Գրանիտ ", + "SSE.Views.ShapeSettings.txtGreyPaper": "Մոխրագույն թուղթ ", + "SSE.Views.ShapeSettings.txtKnit": "Միացնել ", + "SSE.Views.ShapeSettings.txtLeather": "Կաշի", + "SSE.Views.ShapeSettings.txtNoBorders": "Առանց գծի", + "SSE.Views.ShapeSettings.txtPapyrus": "Պապիրուս ", + "SSE.Views.ShapeSettings.txtWood": "Փայտ", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Սյունակներ", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Տեքստի գունալցում", "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Այլընտրական տեքստ", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Նկարագրություն", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Տեսողական առարկաների այլընտրական տեքստային ներկայացում, որը ընթերցվելու է տեսողության կամ մտավոր խանգարումներով մարդկանց համար՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա նկարի, պատկերի, գծապատկերի կամ աղյուսակի վրա։", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Վերնագիր", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Անկյուն", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Սլաքներ", "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Ինքնահարմարեցում", @@ -1115,13 +2999,45 @@ "SSE.Views.ShapeSettingsAdvanced.textBevel": "Շեղատ", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Ներքև", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Մեծատառի տեսակ", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Սյունակների քանակ", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Վերջնական չափ", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Վերջնական ոճ", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Հարթ", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Շրջված", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "Բարձրություն", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Հորիզոնական ", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Միացման տեսակ", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Պահպանել համաչափությունը", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "Ձախ", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Տողի ոճ", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Բաղադրյալ", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով", "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Թույլ տալ, որ տեքստը լցվի", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Չափափոխել ձևը՝ տեքստին համապատասխանելու համար", + "SSE.Views.ShapeSettingsAdvanced.textRight": "Աջ", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Շրջում ", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Կլոր", + "SSE.Views.ShapeSettingsAdvanced.textSize": "Չափ", "SSE.Views.ShapeSettingsAdvanced.textSnap": "Բջիջների խզում", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Միջսյունային տարածք", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "Քառակուսի", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Գրվածքի տուփ", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Պատկեր - ընդլայնված կարգավորումներ", "SSE.Views.ShapeSettingsAdvanced.textTop": "Վերև", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել բջիջներով", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Ուղղահայաց", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Գծեր և սլաքներ", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "Լայնք", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Զգուշացում", + "SSE.Views.SignatureSettings.strDelete": "Ջնջել ստորագրությունը", + "SSE.Views.SignatureSettings.strDetails": "Ստորագրության մանրամասներ", + "SSE.Views.SignatureSettings.strInvalid": "Անվավեր ստորագրություններ", + "SSE.Views.SignatureSettings.strRequested": "Հայցվող ստորագրություններ", + "SSE.Views.SignatureSettings.strSetup": "Ստորագրության տեղակայում", + "SSE.Views.SignatureSettings.strSign": "Ստորագրել", + "SSE.Views.SignatureSettings.strSignature": "Ստորագրություն", + "SSE.Views.SignatureSettings.strSigner": "Ստորագրող", + "SSE.Views.SignatureSettings.strValid": "Վավեր ստորագրություններ", "SSE.Views.SignatureSettings.txtContinueEditing": "Ամեն դեպքում խմբագրել", "SSE.Views.SignatureSettings.txtEditWarning": "Խմբագրումը կվերացնի աղյուսակաթերթի ստորագրությունները։
Շարունակե՞լ։", "SSE.Views.SignatureSettings.txtRemoveWarning": "Ցանկանու՞մ եք հեռացնել այս ստորագրությունը:
Այն հնարավոր չէ չեղարկել:", @@ -1129,25 +3045,75 @@ "SSE.Views.SignatureSettings.txtSigned": "Աղյուսակաթերթում ավելացվել են վավեր ստորագրություններ։ Աղյուսակաթերթը պաշտպանված է և չի կարող խմբագրվել։", "SSE.Views.SignatureSettings.txtSignedInvalid": "Աղյուսակաթերթի որոշ թվանշային ստորագրություններ անվավեր են կամ չեն կարող ստուգվել։ Աղյուսակաթերթը պաշտպանված է և չի կարող խմբագրվել։", "SSE.Views.SlicerAddDialog.textColumns": "Սյունակներ", + "SSE.Views.SlicerAddDialog.txtTitle": "Զետեղել շերտազտիչներ", + "SSE.Views.SlicerSettings.strHideNoData": "Թաքցնել իրերը առանց տվյալների", + "SSE.Views.SlicerSettings.strIndNoData": "Տեսողականորեն նշեք առանց տվյալների", + "SSE.Views.SlicerSettings.strShowDel": "Ցուցադրել տվյալների աղբյուրից ջնջված տարրերը", + "SSE.Views.SlicerSettings.strShowNoData": "Ցույց տալ առանց տվյալների վերջին տարրերը", + "SSE.Views.SlicerSettings.strSorting": "Տեսակավորում և զտում", + "SSE.Views.SlicerSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "SSE.Views.SlicerSettings.textAsc": "Աճման կարգով", "SSE.Views.SlicerSettings.textAZ": "Ա-ից Ֆ", "SSE.Views.SlicerSettings.textButtons": "Կոճակներ", "SSE.Views.SlicerSettings.textColumns": "Սյունակներ", "SSE.Views.SlicerSettings.textDesc": "Նվազող", + "SSE.Views.SlicerSettings.textHeight": "Բարձրություն", + "SSE.Views.SlicerSettings.textHor": "Հորիզոնական", "SSE.Views.SlicerSettings.textKeepRatio": "Պահպանել համաչափությունը", + "SSE.Views.SlicerSettings.textLargeSmall": "Ամենամեծից ամենափոքրը", "SSE.Views.SlicerSettings.textLock": "Անջատել չափափոխումը կամ տեղափոխումը", + "SSE.Views.SlicerSettings.textNewOld": "ամենանորից ամենահին", + "SSE.Views.SlicerSettings.textOldNew": "ամենահինը նորագույնից", + "SSE.Views.SlicerSettings.textPosition": "Դիրք", + "SSE.Views.SlicerSettings.textSize": "Չափ", + "SSE.Views.SlicerSettings.textSmallLarge": "ամենափոքրից ամենամեծը", + "SSE.Views.SlicerSettings.textStyle": "Ոճ", + "SSE.Views.SlicerSettings.textVert": "Ուղղահայաց", + "SSE.Views.SlicerSettings.textWidth": "Լայնք", + "SSE.Views.SlicerSettings.textZA": "Ֆ-ից Ա", "SSE.Views.SlicerSettingsAdvanced.strButtons": "Կոճակներ", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Սյունակներ", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Բարձրություն", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Թաքցնել իրերը առանց տվյալների", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Տեսողականորեն նշեք առանց տվյալների", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Հղումներ", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Ցուցադրել տվյալների աղբյուրից ջնջված տարրերը", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Ցուցադրել վերնագիրը", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Ցույց տալ առանց տվյալների վերջին տարրերը", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Չափ", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Տեսակավորում և զտում", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Ոճ", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Ոճ և չափս", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Լայնք", "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Մի շարժվեք կամ չափեք բջիջներով", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Այլընտրանքային տեքստ", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Նկարագրություն", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Տեսողական օբյեկտի տեղեկատվության այլընտրանքային տեքստի վրա հիմնված ներկայացում, որը կկարդացվի տեսողության կամ ճանաչողական խանգարումներ ունեցող մարդկանց՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա պատկերի, ինքնաձևի, գծապատկերի կամ աղյուսակի վրա:", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Վերնագիր", "SSE.Views.SlicerSettingsAdvanced.textAsc": "Աճման կարգով", "SSE.Views.SlicerSettingsAdvanced.textAZ": "Ա-ից Ֆ", "SSE.Views.SlicerSettingsAdvanced.textDesc": "Նվազող", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Բանաձևերում օգտագործելու անուն", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Էջագլուխ", "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Պահպանել համաչափությունը", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "Ամենամեծից ամենափոքրը", + "SSE.Views.SlicerSettingsAdvanced.textName": "Անուն", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "ամենանորից ամենահին", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "ամենահինը նորագույնից", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Տեղափոխել, բայց չչափել բջիջներով", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "ամենափոքրից ամենամեծը", "SSE.Views.SlicerSettingsAdvanced.textSnap": "Բջիջների խզում", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Տեսակավորել", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Աղբյուրի անվանումը", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Շերտազտիչ- Ընդլայնված կարգավորումներ", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Տեղափոխել և չափել բջիջներով", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Ֆ-ից Ա", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "SSE.Views.SortDialog.errorEmpty": "Տեսակավորման բոլոր չափանիշերը պետք է պարունակեն հատկորոշված մեկ տող կամ սյունակ: Ստուգեք ընտրված չափանիշը և կրկին փորձեք:", + "SSE.Views.SortDialog.errorMoreOneCol": "Ընտրված է մեկից ավելի սյունակ:", + "SSE.Views.SortDialog.errorMoreOneRow": "Ընտրված է մեկից ավելի տող:", + "SSE.Views.SortDialog.errorNotOriginalCol": "Ձեր ընտրած սյունակը սկզբնական ընտրված տիրույթում չէ:", + "SSE.Views.SortDialog.errorNotOriginalRow": "Ձեր ընտրած տողը բնօրինակ ընտրված տիրույթում չէ:", "SSE.Views.SortDialog.errorSameColumnColor": "{1}-ը տեսակավորված է ըստ նույն գույնի մի քանի անգամ:
Ջնջեք տեսակավորման կրկնօրինակ չափանիշը և կրկին փորձեք:", "SSE.Views.SortDialog.errorSameColumnValue": "1%-ը տեսակավորված է ըստ նույն գույնի մի քանի անգամ:
Ջնջեք տեսակավորման կրկնօրինակ չափանիշը և կրկին փորձեք:", "SSE.Views.SortDialog.textAdd": "Հավելել մակարդակ", @@ -1160,69 +3126,240 @@ "SSE.Views.SortDialog.textCopy": "Պատճենման մակարդակ", "SSE.Views.SortDialog.textDelete": "Ջնջել մակարդակը", "SSE.Views.SortDialog.textDesc": "Նվազող", + "SSE.Views.SortDialog.textDown": "Տեղափոխել մակարդակը ներքև", + "SSE.Views.SortDialog.textFontColor": "Տառատեսակի գույն", + "SSE.Views.SortDialog.textLeft": "Ձախ", "SSE.Views.SortDialog.textMoreCols": "(Ավել սյունակներ...)", "SSE.Views.SortDialog.textMoreRows": "(Ավել տողեր...)", + "SSE.Views.SortDialog.textNone": "Ոչ մեկը", + "SSE.Views.SortDialog.textOptions": "Ընտրանքներ", + "SSE.Views.SortDialog.textOrder": "Պատվեր", + "SSE.Views.SortDialog.textRight": "Աջ", + "SSE.Views.SortDialog.textRow": "Տող", + "SSE.Views.SortDialog.textSort": "Դասավորել", + "SSE.Views.SortDialog.textSortBy": "Տեսակավորում ըստ", + "SSE.Views.SortDialog.textThenBy": "Հետո ըստ", "SSE.Views.SortDialog.textTop": "Վերև", + "SSE.Views.SortDialog.textUp": "Տեղափոխել մակարդակը վերև", + "SSE.Views.SortDialog.textValues": "Արժեքներ", + "SSE.Views.SortDialog.textZA": "Ֆ-ից Ա", + "SSE.Views.SortDialog.txtInvalidRange": "Անվավեր բջիջների ընդգրկույթ:", + "SSE.Views.SortDialog.txtTitle": "Տեսակավորել", "SSE.Views.SortFilterDialog.textAsc": "Աճող Ա-ից Ֆ", "SSE.Views.SortFilterDialog.textDesc": "Նվազող (Ա-ից Ֆ)", + "SSE.Views.SortFilterDialog.txtTitle": "Տեսակավորել", "SSE.Views.SortOptionsDialog.textCase": "Հաշվի առնել տառաշարը", + "SSE.Views.SortOptionsDialog.textHeaders": "Իմ տվյալները վերնագրեր ունեն", + "SSE.Views.SortOptionsDialog.textLeftRight": "Տեսակավորել ձախից աջ", + "SSE.Views.SortOptionsDialog.textOrientation": "Կողմնորոշում", + "SSE.Views.SortOptionsDialog.textTitle": "Տեսակավորման ընտրանքներ", + "SSE.Views.SortOptionsDialog.textTopBottom": "Դասավորել վերևից ներքև", "SSE.Views.SpecialPasteDialog.textAdd": "Հավելել", "SSE.Views.SpecialPasteDialog.textAll": "Բոլորը", + "SSE.Views.SpecialPasteDialog.textBlanks": "Բաց թողեք դատարկ տեղերը", "SSE.Views.SpecialPasteDialog.textColWidth": "Սյունակների լայնությունները", "SSE.Views.SpecialPasteDialog.textComments": "Մեկնաբանություններ", "SSE.Views.SpecialPasteDialog.textDiv": "Բաժանել", + "SSE.Views.SpecialPasteDialog.textFFormat": "Բանաձևեր և ձևաչափում", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Բանաձևեր և թվերի ձևաչափեր", + "SSE.Views.SpecialPasteDialog.textFormats": "Ձևաչափեր", + "SSE.Views.SpecialPasteDialog.textFormulas": "Բանաձևեր", + "SSE.Views.SpecialPasteDialog.textFWidth": "Բանաձևեր և սյունակների լայնություններ", + "SSE.Views.SpecialPasteDialog.textMult": "Բազմապատկել", + "SSE.Views.SpecialPasteDialog.textNone": "Ոչ մեկը", + "SSE.Views.SpecialPasteDialog.textOperation": "Գործողություն", + "SSE.Views.SpecialPasteDialog.textPaste": "Փակցնել", + "SSE.Views.SpecialPasteDialog.textSub": "հանել", + "SSE.Views.SpecialPasteDialog.textTitle": "Կպցնել հատուկ", + "SSE.Views.SpecialPasteDialog.textTranspose": "Փոխադրել", + "SSE.Views.SpecialPasteDialog.textValues": "Արժեքներ", + "SSE.Views.SpecialPasteDialog.textVFormat": "Արժեքներ և ձևավորում", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Արժեքներ և թվերի ձևաչափեր", "SSE.Views.SpecialPasteDialog.textWBorders": "Բոլորը, բացի սահմաններից", + "SSE.Views.Spellcheck.noSuggestions": "Ուղղագրական առաջարկներ չկան", "SSE.Views.Spellcheck.textChange": "Փոխել", "SSE.Views.Spellcheck.textChangeAll": "Փոխել բոլորը", + "SSE.Views.Spellcheck.textIgnore": "Անտեսել", + "SSE.Views.Spellcheck.textIgnoreAll": "Անտեսել բոլորը", "SSE.Views.Spellcheck.txtAddToDictionary": "Հավելել բառարանում", "SSE.Views.Spellcheck.txtClosePanel": "Փակել ուղղագրությունը", + "SSE.Views.Spellcheck.txtComplete": "Ուղղագրության ստուգումն ավարտված է", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Բառարանի լեզու", + "SSE.Views.Spellcheck.txtNextTip": "Անցնել հաջորդ բառին", + "SSE.Views.Spellcheck.txtSpelling": "Ուղղագրություն", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Պատճենել վերջում)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Տեղափոխել վերջ)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Կպցնել թերթից առաջ", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Տեղափոխել թերթից առաջ", "SSE.Views.Statusbar.filteredRecordsText": "{0} գրառումից զտվել է {1}-ը", + "SSE.Views.Statusbar.filteredText": "Զտման ռեժիմ", "SSE.Views.Statusbar.itemAverage": "ՄԻՋԻՆ", "SSE.Views.Statusbar.itemCopy": "Պատճենել", "SSE.Views.Statusbar.itemCount": "Հաշվել", "SSE.Views.Statusbar.itemDelete": "Ջնջել", + "SSE.Views.Statusbar.itemHidden": "Թաքնված", + "SSE.Views.Statusbar.itemHide": "Թաքցնել", + "SSE.Views.Statusbar.itemInsert": "Զետեղել", + "SSE.Views.Statusbar.itemMaximum": "Առավելագույն", + "SSE.Views.Statusbar.itemMinimum": "Նվազագույն", + "SSE.Views.Statusbar.itemMove": "Տեղափոխել", + "SSE.Views.Statusbar.itemProtect": "Պաշտպանել", + "SSE.Views.Statusbar.itemRename": "Վերանվանել", + "SSE.Views.Statusbar.itemStatus": "Պահպանում է կարգավիճակը", + "SSE.Views.Statusbar.itemSum": "Գումար", + "SSE.Views.Statusbar.itemTabColor": "Սյունատի գույն", + "SSE.Views.Statusbar.itemUnProtect": "Չպաշտպանել", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Նման անունով աշխատանքային թերթիկ արդեն գոյություն ունի:", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Թերթի անունը չպիտի պարունակի հետևյալ գրանշանները՝ \\/*?[]. ", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Թերթի անվանում", + "SSE.Views.Statusbar.selectAllSheets": "Ընտրեք Բոլոր թերթերը", + "SSE.Views.Statusbar.sheetIndexText": "Թերթ {0} {1}-ից", "SSE.Views.Statusbar.textAverage": "ՄԻՋԻՆ", "SSE.Views.Statusbar.textCount": "Հաշվել", + "SSE.Views.Statusbar.textMax": "Մաքս", + "SSE.Views.Statusbar.textMin": "Նվազ.", "SSE.Views.Statusbar.textNewColor": "Հավելել նոր հարմարեցված գույն", + "SSE.Views.Statusbar.textNoColor": "Առանց գույն", + "SSE.Views.Statusbar.textSum": "Գումար", "SSE.Views.Statusbar.tipAddTab": "Հավելել թերթ", + "SSE.Views.Statusbar.tipFirst": "Ոլորեք դեպի առաջին թերթիկը", + "SSE.Views.Statusbar.tipLast": "Ոլորեք մինչև վերջին թերթիկը", + "SSE.Views.Statusbar.tipListOfSheets": "Թերթերի ցուցակ", + "SSE.Views.Statusbar.tipNext": "Ոլորեք թերթերի ցանկը աջ", + "SSE.Views.Statusbar.tipPrev": "Ոլորեք թերթերի ցանկը ձախ", + "SSE.Views.Statusbar.tipZoomFactor": "Խոշորացնել", + "SSE.Views.Statusbar.tipZoomIn": "Մեծացնել", + "SSE.Views.Statusbar.tipZoomOut": "Փոքրացնել", + "SSE.Views.Statusbar.ungroupSheets": "Ապախմբավորել թերթերը", + "SSE.Views.Statusbar.zoomText": "Խոշորացնել {0}%", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Ընտրված վանդակների համար հնարավոր չեղավ կատարել գործողությունը։
Ընտրրեք տվյալների միատեսակ ընդգրկույթ, որը եղածից տարբեր է, և նորից փորձեք։", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Գործողությունը չի կարող ավարտվել ընտրված բջիջների տիրույթի համար:
Ընտրեք ընդգրկույթ, որպեսզի աղյուսակի առաջին տողը լինի նույն տողում
և արդյունքում աղյուսակը համընկնի ընթացիկի հետ:", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Գործողությունը չի կարող ավարտվել ընտրված բջիջների տիրույթի համար:
Ընտրեք ընդգրկույթ, որը չի ներառում այլ աղյուսակներ:", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Զանգվածի բազմավանդակ բանաձևերը թույլատրված չեն աղյուսակներում։", + "SSE.Views.TableOptionsDialog.txtEmpty": "Պահանջվում է լրացնել այս դաշտը:", "SSE.Views.TableOptionsDialog.txtFormat": "Ստեղծել աղյուսակ", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ՍԽԱԼ. վանդակների անթույլատրելի ընդգրկույթ", + "SSE.Views.TableOptionsDialog.txtNote": "Վերնագրերը պետք է մնան նույն շարքում, և արդյունքում ստացված աղյուսակի միջակայքը պետք է համընկնի սկզբնական աղյուսակի միջակայքի հետ:", + "SSE.Views.TableOptionsDialog.txtTitle": "Վերնագիր", "SSE.Views.TableSettings.deleteColumnText": "Ջնջել սյունակը", "SSE.Views.TableSettings.deleteRowText": "Ջնջել տողը", "SSE.Views.TableSettings.deleteTableText": "Ջնջել աղյուսակը", + "SSE.Views.TableSettings.insertColumnLeftText": "Զետեղել սյունակ ձախից", + "SSE.Views.TableSettings.insertColumnRightText": "Զետեղել սյունակ աջից", + "SSE.Views.TableSettings.insertRowAboveText": "Զետեղել տող վերևում", + "SSE.Views.TableSettings.insertRowBelowText": "Զետեղել տող ներքևից", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Զգուշացում", + "SSE.Views.TableSettings.selectColumnText": "Ընտրեք Ամբողջ սյունակը", + "SSE.Views.TableSettings.selectDataText": "Ընտրեք սյունակի տվյալները", + "SSE.Views.TableSettings.selectRowText": "Ընտրել տող", + "SSE.Views.TableSettings.selectTableText": "Ընտրել աղյուսակ", + "SSE.Views.TableSettings.textActions": "Սեղանի գործողություններ", + "SSE.Views.TableSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", "SSE.Views.TableSettings.textBanded": "Միջարկվող", "SSE.Views.TableSettings.textColumns": "Սյունակներ", "SSE.Views.TableSettings.textConvertRange": "Փոխակերպել տիրույթի", + "SSE.Views.TableSettings.textEdit": "Տողեր և սյունակներ", + "SSE.Views.TableSettings.textEmptyTemplate": "Ձևանմուշները բացակայում են", "SSE.Views.TableSettings.textExistName": "ՍԽԱԼ! Նման անունով տիրույթ արդեն գոյություն ունի", + "SSE.Views.TableSettings.textFilter": "Զտիչ կոճակ", + "SSE.Views.TableSettings.textFirst": "Առաջին", + "SSE.Views.TableSettings.textHeader": "Էջագլուխ", "SSE.Views.TableSettings.textInvalidName": "ՍԽԱԼ. Սեղանի անվավեր անուն", + "SSE.Views.TableSettings.textIsLocked": "Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", + "SSE.Views.TableSettings.textLast": "Վերջին", + "SSE.Views.TableSettings.textLongOperation": "Երկարատև գործողություն", + "SSE.Views.TableSettings.textPivot": "Տեղադրել առանցքային աղյուսակը", + "SSE.Views.TableSettings.textRemDuplicates": "Հեռացրեք կրկնօրինակները", + "SSE.Views.TableSettings.textReservedName": "Անունը, որը դուք փորձում եք օգտագործել, արդեն նշված է բջջային բանաձևերում: Խնդրում ենք օգտագործել այլ անուն:", + "SSE.Views.TableSettings.textResize": "Չափափոխել աղյուսակը", + "SSE.Views.TableSettings.textRows": "Տողեր", + "SSE.Views.TableSettings.textSelectData": "Ընտրեք տվյալներ", + "SSE.Views.TableSettings.textSlicer": "Տեղադրել կտրիչ", + "SSE.Views.TableSettings.textTableName": "Սեղանի անվանումը", + "SSE.Views.TableSettings.textTemplate": "Ընտրել ձևանմուշից", + "SSE.Views.TableSettings.textTotal": "Ընդամենը", + "SSE.Views.TableSettings.warnLongOperation": "Գործողությունը, որը պատրաստվում եք կատարել, կարող է բավականին շատ ժամանակ պահանջել ավարտելու համար:
Իսկապե՞ս ուզում եք շարունակել:", "SSE.Views.TableSettingsAdvanced.textAlt": "Այլընտրական տեքստ", "SSE.Views.TableSettingsAdvanced.textAltDescription": "Նկարագրություն", + "SSE.Views.TableSettingsAdvanced.textAltTip": "Տեսողական օբյեկտի տեղեկատվության այլընտրանքային տեքստի վրա հիմնված ներկայացում, որը կկարդացվի տեսողության կամ ճանաչողական խանգարումներ ունեցող մարդկանց՝ օգնելու նրանց ավելի լավ հասկանալ, թե ինչ տեղեկատվություն կա պատկերի, ինքնաձևի, գծապատկերի կամ աղյուսակի վրա:", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Վերնագիր", + "SSE.Views.TableSettingsAdvanced.textTitle": "Աղյուսակ - լրացուցիչ կարգավորումներ", "SSE.Views.TextArtSettings.strBackground": "Ֆոնի գույն", "SSE.Views.TextArtSettings.strColor": "Գույն", + "SSE.Views.TextArtSettings.strFill": "Լցնել", + "SSE.Views.TextArtSettings.strForeground": "Հետնագույն", + "SSE.Views.TextArtSettings.strPattern": "Նախշ", + "SSE.Views.TextArtSettings.strSize": "Չափ", + "SSE.Views.TextArtSettings.strStroke": "Գիծ", + "SSE.Views.TextArtSettings.strTransparency": "Թափանցիկություն", + "SSE.Views.TextArtSettings.strType": "Տեսակ", "SSE.Views.TextArtSettings.textAngle": "Անկյուն", + "SSE.Views.TextArtSettings.textBorderSizeErr": " Մուտքագրված արժեքը սխալ է: Խնդրում ենք մուտքագրել 0կտ-ից 255կտ թվային արժեք:", "SSE.Views.TextArtSettings.textColor": "Գույնի լցում", "SSE.Views.TextArtSettings.textDirection": "Ուղղություն", + "SSE.Views.TextArtSettings.textEmptyPattern": "Առանց Նախշի", "SSE.Views.TextArtSettings.textFromFile": "Նիշքից", + "SSE.Views.TextArtSettings.textFromUrl": "URL-ից", + "SSE.Views.TextArtSettings.textGradient": "Սահանցման կետեր", + "SSE.Views.TextArtSettings.textGradientFill": "Սահանցման լցում ", + "SSE.Views.TextArtSettings.textImageTexture": "Նկար կամ կառուցվածք", + "SSE.Views.TextArtSettings.textLinear": "Գծային", + "SSE.Views.TextArtSettings.textNoFill": "Առանց լցման", + "SSE.Views.TextArtSettings.textPatternFill": "Նախշ", + "SSE.Views.TextArtSettings.textPosition": "Դիրք", + "SSE.Views.TextArtSettings.textRadial": "Ճառագայթային", + "SSE.Views.TextArtSettings.textSelectTexture": "Ընտրել", + "SSE.Views.TextArtSettings.textStretch": "Ձգել", + "SSE.Views.TextArtSettings.textStyle": "Ոճ", + "SSE.Views.TextArtSettings.textTemplate": "Ձևանմուշ", + "SSE.Views.TextArtSettings.textTexture": "Կառուցվածքից", + "SSE.Views.TextArtSettings.textTile": "Սալիկ", + "SSE.Views.TextArtSettings.textTransform": "Փոխակերպել", "SSE.Views.TextArtSettings.tipAddGradientPoint": "Ավելացնել սահանցման կետ", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Հեռացնել գրադիենտ կետը", "SSE.Views.TextArtSettings.txtBrownPaper": "Գորշ թուղթ", "SSE.Views.TextArtSettings.txtCanvas": "Կտավ", "SSE.Views.TextArtSettings.txtCarton": "Ստվարաթուղթ", "SSE.Views.TextArtSettings.txtDarkFabric": "Մուգ կտոր", + "SSE.Views.TextArtSettings.txtGrain": "Հատիկավորության", + "SSE.Views.TextArtSettings.txtGranite": "Գրանիտ ", + "SSE.Views.TextArtSettings.txtGreyPaper": "Մոխրագույն թուղթ ", + "SSE.Views.TextArtSettings.txtKnit": "Միացնել ", + "SSE.Views.TextArtSettings.txtLeather": "Կաշի", + "SSE.Views.TextArtSettings.txtNoBorders": "Առանց գծի", + "SSE.Views.TextArtSettings.txtPapyrus": "Պապիրուս ", + "SSE.Views.TextArtSettings.txtWood": "Փայտ", "SSE.Views.Toolbar.capBtnAddComment": "Ավելացնել մեկնաբանություն", "SSE.Views.Toolbar.capBtnColorSchemas": "Գունային սխեման", "SSE.Views.Toolbar.capBtnComment": "Մեկնաբանություն", + "SSE.Views.Toolbar.capBtnInsHeader": "էջագլուխ/էջատակ", + "SSE.Views.Toolbar.capBtnInsSlicer": "Շերտազտիչ", + "SSE.Views.Toolbar.capBtnInsSymbol": "Նշան", + "SSE.Views.Toolbar.capBtnMargins": "Լուսանցքներ", + "SSE.Views.Toolbar.capBtnPageOrient": "Կողմնորոշում", + "SSE.Views.Toolbar.capBtnPageSize": "Չափ", + "SSE.Views.Toolbar.capBtnPrintArea": "Տպման տարածք", + "SSE.Views.Toolbar.capBtnPrintTitles": "Տպել վերնագրեր", + "SSE.Views.Toolbar.capBtnScale": "Հարմարեցնել՝ սանդղելով", "SSE.Views.Toolbar.capImgAlign": "Հավասարեցում", + "SSE.Views.Toolbar.capImgBackward": "ՈՒղարկել հետ", "SSE.Views.Toolbar.capImgForward": "Բերել առաջ", + "SSE.Views.Toolbar.capImgGroup": "Խումբ", "SSE.Views.Toolbar.capInsertChart": "Գծապատկեր", "SSE.Views.Toolbar.capInsertEquation": "Հավասարում", + "SSE.Views.Toolbar.capInsertHyperlink": "Գերհղում", + "SSE.Views.Toolbar.capInsertImage": "Նկար", + "SSE.Views.Toolbar.capInsertShape": "Պատկեր", + "SSE.Views.Toolbar.capInsertSpark": "կայծգիծ", + "SSE.Views.Toolbar.capInsertTable": "Աղյուսակ", + "SSE.Views.Toolbar.capInsertText": "Գրվածքի տուփ", "SSE.Views.Toolbar.mniImageFromFile": "Նկար նիշքից", + "SSE.Views.Toolbar.mniImageFromStorage": "Պատկեր պահեստից", + "SSE.Views.Toolbar.mniImageFromUrl": "Պատկերը URL-ից", "SSE.Views.Toolbar.textAddPrintArea": "Դնել տպման տարածքում", "SSE.Views.Toolbar.textAlignBottom": "Հավասարեցնել ներքևից", "SSE.Views.Toolbar.textAlignCenter": "Հավասարեցնել կենտրոնով", + "SSE.Views.Toolbar.textAlignJust": "Լայնությամբ", "SSE.Views.Toolbar.textAlignLeft": "Հավասարեցնել ձախից", "SSE.Views.Toolbar.textAlignMiddle": "Հավասարեցնել մեջտեղով", "SSE.Views.Toolbar.textAlignRight": "Հավասարեցնել աջից", @@ -1235,37 +3372,91 @@ "SSE.Views.Toolbar.textBordersStyle": "Եզրագծի ոճ", "SSE.Views.Toolbar.textBottom": "Ներքև՝", "SSE.Views.Toolbar.textBottomBorders": "Ներքևի սահմաններ", + "SSE.Views.Toolbar.textCenterBorders": "Ուղղահայաց սահմանների ներսում", "SSE.Views.Toolbar.textClearPrintArea": "Մաքրել տպման տարածքը", "SSE.Views.Toolbar.textClearRule": "Հստակ կանոններ", "SSE.Views.Toolbar.textClockwise": "Ժամասլաքի ուղղությամբ", "SSE.Views.Toolbar.textColorScales": "Գունավոր կշեռքներ", "SSE.Views.Toolbar.textCounterCw": "Ժամասլաքի հակառակ ուղղությամբ", "SSE.Views.Toolbar.textDataBars": "Տվյալների բարեր", + "SSE.Views.Toolbar.textDelLeft": "Տեղափոխեք վանդակները ձախ", + "SSE.Views.Toolbar.textDelUp": "Տեղափոխեք բջիջները վերև", "SSE.Views.Toolbar.textDiagDownBorder": "Անկյունագծային իջնող եզրագիծ", "SSE.Views.Toolbar.textDiagUpBorder": "Անկյունագծային բարձրացող եզրագիծ", "SSE.Views.Toolbar.textDone": "Պատրաստ է", "SSE.Views.Toolbar.textEditVA": "Խմբագրել տեսանելի տարածքը", "SSE.Views.Toolbar.textEntireCol": "Ամբողջ սյունակը", "SSE.Views.Toolbar.textEntireRow": "Ամբողջ շարքը", + "SSE.Views.Toolbar.textFewPages": "Էջեր", + "SSE.Views.Toolbar.textHeight": "Բարձրություն", + "SSE.Views.Toolbar.textHideVA": "Թաքցնել տեսանելի տարածքը", + "SSE.Views.Toolbar.textHorizontal": "Հորիզոնական տեքստ", + "SSE.Views.Toolbar.textInsDown": "Տեղափոխեք բջիջները ներքև", + "SSE.Views.Toolbar.textInsideBorders": "Ներքին եզրագծեր", + "SSE.Views.Toolbar.textInsRight": "Տեղափոխեք բջիջները աջ", "SSE.Views.Toolbar.textItalic": "Շեղատառ", + "SSE.Views.Toolbar.textItems": "Նյութեր", + "SSE.Views.Toolbar.textLandscape": "Հորիզոնական", + "SSE.Views.Toolbar.textLeft": "Ձախ:", + "SSE.Views.Toolbar.textLeftBorders": "Ձախ սահմաններ", + "SSE.Views.Toolbar.textManageRule": "Կառավարել Կանոնները", + "SSE.Views.Toolbar.textManyPages": "Էջեր", + "SSE.Views.Toolbar.textMarginsLast": "Վերջին օգտագործումը", + "SSE.Views.Toolbar.textMarginsNarrow": "Նեղ", + "SSE.Views.Toolbar.textMarginsNormal": "Սովորական", + "SSE.Views.Toolbar.textMarginsWide": "Լայն", + "SSE.Views.Toolbar.textMiddleBorders": "Հորիզոնական սահմանների ներսում", + "SSE.Views.Toolbar.textMoreFormats": "Ավելի շատ ձևաչափեր", + "SSE.Views.Toolbar.textMorePages": "Ավելի շատ էջեր", "SSE.Views.Toolbar.textNewColor": "Հավելել նոր հարմարեցված գույն", + "SSE.Views.Toolbar.textNewRule": "Նոր կանոն", + "SSE.Views.Toolbar.textNoBorders": "Առանց եզրագծերի", + "SSE.Views.Toolbar.textOnePage": "Էջ", + "SSE.Views.Toolbar.textOutBorders": "Արտաքին Եզրագծեր", "SSE.Views.Toolbar.textPageMarginsCustom": "Հարմարեցրած լուսանցքներ", "SSE.Views.Toolbar.textPortrait": "Ուղղաձիգ ", + "SSE.Views.Toolbar.textPrint": "Տպել", + "SSE.Views.Toolbar.textPrintGridlines": "Տպել ցանցագծերը", + "SSE.Views.Toolbar.textPrintHeadings": "Տպել վերնագրեր", + "SSE.Views.Toolbar.textPrintOptions": "Տպման կարգավորումներ", + "SSE.Views.Toolbar.textRight": "Աջ․", + "SSE.Views.Toolbar.textRightBorders": "Աջ սահմաններ", + "SSE.Views.Toolbar.textRotateDown": "Տեքստը պտտել ներքև", + "SSE.Views.Toolbar.textRotateUp": "Տեքստը պտտել վեր", + "SSE.Views.Toolbar.textScale": "Սանդղակ", "SSE.Views.Toolbar.textScaleCustom": "Հարմարեցված", + "SSE.Views.Toolbar.textSelection": "Ընթացիկ ընտրությունից", + "SSE.Views.Toolbar.textSetPrintArea": "Սահմանել տպման տարածքը", "SSE.Views.Toolbar.textStrikeout": "Վրագծում", "SSE.Views.Toolbar.textSubscript": "Վարգիր", + "SSE.Views.Toolbar.textSubSuperscript": "Բաժանորդագրություն/Վերածանց", "SSE.Views.Toolbar.textSuperscript": "Վերգիր", "SSE.Views.Toolbar.textTabCollaboration": "Համագործակցություն", "SSE.Views.Toolbar.textTabData": "Տվյալներ", "SSE.Views.Toolbar.textTabFile": "Նիշք", + "SSE.Views.Toolbar.textTabFormula": "Բանաձև ", + "SSE.Views.Toolbar.textTabHome": "Գլխավոր", + "SSE.Views.Toolbar.textTabInsert": "Զետեղել", "SSE.Views.Toolbar.textTabLayout": "Դասավորություն ", + "SSE.Views.Toolbar.textTabProtect": "Պաշտպանություն", + "SSE.Views.Toolbar.textTabView": "Դիտել", + "SSE.Views.Toolbar.textThisPivot": "Այս առանցքից", + "SSE.Views.Toolbar.textThisSheet": "Այս աշխատանքային թերթիկից", + "SSE.Views.Toolbar.textThisTable": "Այս աղյուսակից", + "SSE.Views.Toolbar.textTop": "Վերև․", + "SSE.Views.Toolbar.textTopBorders": "Վերևի սահմանները", "SSE.Views.Toolbar.textUnderline": "Ընդգծված", + "SSE.Views.Toolbar.textVertical": "Ուղղահայաց տեքստ", + "SSE.Views.Toolbar.textWidth": "Լայնք", + "SSE.Views.Toolbar.textZoom": "Խոշորացնել", "SSE.Views.Toolbar.tipAlignBottom": "Հավասարեցնել ներքևից", "SSE.Views.Toolbar.tipAlignCenter": "Հավասարեցնել կենտրոնով", + "SSE.Views.Toolbar.tipAlignJust": "Լայնությամբ", "SSE.Views.Toolbar.tipAlignLeft": "Հավասարեցնել ձախից", "SSE.Views.Toolbar.tipAlignMiddle": "Հավասարեցնել մեջտեղով", "SSE.Views.Toolbar.tipAlignRight": "Հավասարեցնել աջից", "SSE.Views.Toolbar.tipAlignTop": "Հավասարեցնել վերևից", + "SSE.Views.Toolbar.tipAutofilter": "Տեսակավորում և զտում", "SSE.Views.Toolbar.tipBack": "Հետ", "SSE.Views.Toolbar.tipBorders": "Եզրագծեր", "SSE.Views.Toolbar.tipCellStyle": "Վանդակի ոճ", @@ -1280,21 +3471,65 @@ "SSE.Views.Toolbar.tipDeleteOpt": "Ջնջել վանդակներ", "SSE.Views.Toolbar.tipDigStyleAccounting": "Հաշվապահական ոճ", "SSE.Views.Toolbar.tipDigStyleCurrency": "Արժույթի ոճը", + "SSE.Views.Toolbar.tipDigStylePercent": "Տոկոսային ոճ", "SSE.Views.Toolbar.tipEditChart": "Խմբագրել գծապատկերը", + "SSE.Views.Toolbar.tipEditChartData": "Ընտրեք տվյալներ", "SSE.Views.Toolbar.tipEditChartType": "Փոխել գծապատկերի տեսակը", "SSE.Views.Toolbar.tipEditHeader": "Խմբագրել էջագլուխը կամ էջատակը", + "SSE.Views.Toolbar.tipFontColor": "Տառատեսակի գույն", + "SSE.Views.Toolbar.tipFontName": "Տառատեսակ ", + "SSE.Views.Toolbar.tipFontSize": "Տառատեսակի չափ", "SSE.Views.Toolbar.tipImgAlign": "Հավասարեցնել առարկաները", + "SSE.Views.Toolbar.tipImgGroup": "Խմբավորել օբյեկտները", + "SSE.Views.Toolbar.tipIncDecimal": "Մեծացնել տասնորդական", + "SSE.Views.Toolbar.tipIncFont": "Մեծացնել տառատեսակի չափը", + "SSE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր", + "SSE.Views.Toolbar.tipInsertChartSpark": "Զետեղել գծապատկեր", + "SSE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում", "SSE.Views.Toolbar.tipInsertHyperlink": "Դնել գերհղում", + "SSE.Views.Toolbar.tipInsertImage": "Զետեղել նկար", + "SSE.Views.Toolbar.tipInsertOpt": "Տեղադրեք բջիջներ", + "SSE.Views.Toolbar.tipInsertShape": "Զետեղել ինքնաձև", + "SSE.Views.Toolbar.tipInsertSlicer": "Տեղադրել կտրիչ", + "SSE.Views.Toolbar.tipInsertSpark": "Զետեղել կայծագիծը", + "SSE.Views.Toolbar.tipInsertSymbol": "Զետեղել նշան", + "SSE.Views.Toolbar.tipInsertTable": "Զետեղել աղյուսակ", + "SSE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ", + "SSE.Views.Toolbar.tipInsertTextart": "Դնել տեքստարվեստից", + "SSE.Views.Toolbar.tipMerge": "Միաձուլել և կենտրոնացնել", + "SSE.Views.Toolbar.tipNone": "Ոչ մեկը", + "SSE.Views.Toolbar.tipNumFormat": "Թվերի ձևաչափ", + "SSE.Views.Toolbar.tipPageMargins": "էջի լուսանցքներ", + "SSE.Views.Toolbar.tipPageOrient": "Էջի կողմնորոշում", + "SSE.Views.Toolbar.tipPageSize": "Էջի չափ", + "SSE.Views.Toolbar.tipPaste": "Փակցնել", + "SSE.Views.Toolbar.tipPrColor": "Լցման գույն", + "SSE.Views.Toolbar.tipPrint": "Տպել", + "SSE.Views.Toolbar.tipPrintArea": "Տպման տարածք", + "SSE.Views.Toolbar.tipPrintTitles": "Տպել վերնագրեր", + "SSE.Views.Toolbar.tipRedo": "Վերարկել", "SSE.Views.Toolbar.tipSave": "Պահպանել", "SSE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։", + "SSE.Views.Toolbar.tipScale": "Հարմարեցնել՝ սանդղելով", + "SSE.Views.Toolbar.tipSendBackward": "ՈՒղարկել հետ", "SSE.Views.Toolbar.tipSendForward": "Բերել առաջ", "SSE.Views.Toolbar.tipSynchronize": "Փաստաթուղթն այլ օգտատիրոջ կողմից փոփոխվել է։ Սեղմեք, որ պահպանեք Ձեր փոփոխումները և բեռնեք թարմացումները։", + "SSE.Views.Toolbar.tipTextFormatting": "Տեքստի ձևաչափման ավելի շատ գործիքներ", + "SSE.Views.Toolbar.tipTextOrientation": "Կողմնորոշում", + "SSE.Views.Toolbar.tipUndo": "Հետարկել", + "SSE.Views.Toolbar.tipVisibleArea": "Տեսանելի տարածք", + "SSE.Views.Toolbar.tipWrap": "Տեքստի ծալում", "SSE.Views.Toolbar.txtAccounting": "Հաշվապահություն", "SSE.Views.Toolbar.txtAdditional": "Հավելյալ", "SSE.Views.Toolbar.txtAscending": "Աճման կարգով", + "SSE.Views.Toolbar.txtAutosumTip": "Ամփոփում", "SSE.Views.Toolbar.txtClearAll": "Բոլորը", "SSE.Views.Toolbar.txtClearComments": "Մեկնաբանություններ", "SSE.Views.Toolbar.txtClearFilter": "Մաքրել զտիչը", + "SSE.Views.Toolbar.txtClearFormat": "Ձևաչափ", + "SSE.Views.Toolbar.txtClearFormula": "Ֆունկցիա", + "SSE.Views.Toolbar.txtClearHyper": "Հիպերհղումներ", + "SSE.Views.Toolbar.txtClearText": "Տեքստ", "SSE.Views.Toolbar.txtCurrency": "Տարադրամ", "SSE.Views.Toolbar.txtCustom": "Հարմարեցված", "SSE.Views.Toolbar.txtDate": "Ամիս-ամսաթիվ", @@ -1303,19 +3538,67 @@ "SSE.Views.Toolbar.txtDollar": "$ Դոլար", "SSE.Views.Toolbar.txtEuro": "€ Եվրո", "SSE.Views.Toolbar.txtExp": "Էքսպոնենցիալ", + "SSE.Views.Toolbar.txtFilter": "Զտիչ", + "SSE.Views.Toolbar.txtFormula": "Տեղադրել գործառույթը", + "SSE.Views.Toolbar.txtFraction": "Կոտորակ", "SSE.Views.Toolbar.txtFranc": "CHF շվեյցարական ֆրանկ", + "SSE.Views.Toolbar.txtGeneral": "Ընդհանուր", + "SSE.Views.Toolbar.txtInteger": "Ամբողջ թիվ", + "SSE.Views.Toolbar.txtManageRange": "Անվան կառավարիչ", + "SSE.Views.Toolbar.txtMergeAcross": "Միաձուլել ամբողջը", + "SSE.Views.Toolbar.txtMergeCells": "Միաձուլել վանդակները", + "SSE.Views.Toolbar.txtMergeCenter": "Միաձուլել և կենտրոնացնել", + "SSE.Views.Toolbar.txtNamedRange": "Անվանված միջակայքեր", "SSE.Views.Toolbar.txtNewRange": "Սահմանել անունը", + "SSE.Views.Toolbar.txtNoBorders": "Առանց եզրագծերի", + "SSE.Views.Toolbar.txtNumber": "Թվային", + "SSE.Views.Toolbar.txtPasteRange": "Paste Name", + "SSE.Views.Toolbar.txtPercentage": "Տոկոսային", "SSE.Views.Toolbar.txtPound": "£ Ֆունտ", "SSE.Views.Toolbar.txtRouble": "₽ Ռուբլի", + "SSE.Views.Toolbar.txtScheme1": "Գրասենյակ", + "SSE.Views.Toolbar.txtScheme10": "Կենտրոնային", + "SSE.Views.Toolbar.txtScheme11": "Մետրո ", + "SSE.Views.Toolbar.txtScheme12": "Մոդուլ ", + "SSE.Views.Toolbar.txtScheme13": "Վառ", + "SSE.Views.Toolbar.txtScheme14": "Արևելաոճ", + "SSE.Views.Toolbar.txtScheme15": "Սկզբնաղբյուր", + "SSE.Views.Toolbar.txtScheme16": "Թուղթ", + "SSE.Views.Toolbar.txtScheme17": "Խավարում", + "SSE.Views.Toolbar.txtScheme18": "Տեխնիկական", + "SSE.Views.Toolbar.txtScheme19": "Ուղի", + "SSE.Views.Toolbar.txtScheme2": "Գորշասանդղակ", + "SSE.Views.Toolbar.txtScheme20": "Քաղաքաոճ", + "SSE.Views.Toolbar.txtScheme21": "Գունեղ", + "SSE.Views.Toolbar.txtScheme22": "Նոր գրասենյակ", "SSE.Views.Toolbar.txtScheme3": "Գագաթ", "SSE.Views.Toolbar.txtScheme4": "Հարաբերություն", "SSE.Views.Toolbar.txtScheme5": "Քաղաքացիական", "SSE.Views.Toolbar.txtScheme6": "Համագումար ", "SSE.Views.Toolbar.txtScheme7": "Սեփական կապիտալ", + "SSE.Views.Toolbar.txtScheme8": "Հոսք", + "SSE.Views.Toolbar.txtScheme9": "Հրատարակիչ", + "SSE.Views.Toolbar.txtScientific": "Գիտական", + "SSE.Views.Toolbar.txtSearch": "Որոնել", + "SSE.Views.Toolbar.txtSort": "Տեսակավորել", + "SSE.Views.Toolbar.txtSortAZ": "Տեսակավորել աճման կարգով", + "SSE.Views.Toolbar.txtSortZA": "Տեսակավորել նվազման կարգով", + "SSE.Views.Toolbar.txtSpecial": "Հատուկ", + "SSE.Views.Toolbar.txtTableTemplate": "Ձևաչափեք որպես աղյուսակի ձևանմուշ", + "SSE.Views.Toolbar.txtText": "Տեքստ", + "SSE.Views.Toolbar.txtTime": "Ժամանակ", + "SSE.Views.Toolbar.txtUnmerge": "Անջատել բջիջները", "SSE.Views.Toolbar.txtYen": "¥ Իեն", + "SSE.Views.Top10FilterDialog.textType": "Ցույց տալ", "SSE.Views.Top10FilterDialog.txtBottom": "Ներքև", "SSE.Views.Top10FilterDialog.txtBy": "Ըստ", + "SSE.Views.Top10FilterDialog.txtItems": "Նյութ", + "SSE.Views.Top10FilterDialog.txtPercent": "Տոկոսային", + "SSE.Views.Top10FilterDialog.txtSum": "Գումար", + "SSE.Views.Top10FilterDialog.txtTitle": "Լավագույն 10 ավտոմատ զտիչ", "SSE.Views.Top10FilterDialog.txtTop": "Վերև", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Լավագույն 10 զտիչ", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Արժեքի դաշտի կարգավորումներ", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "ՄԻՋԻՆ", "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Հիմնական դաշտ", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Հիմնական տարր", @@ -1323,18 +3606,76 @@ "SSE.Views.ValueFieldSettingsDialog.txtCount": "Հաշվել", "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Հաշվել թվեր", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Մուտքագրել հարմարեցված անուն", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Տարբերությունը", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Ցուցանիշ", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Մաքս", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Նվազ.", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Ոչ մի հաշվարկ", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "տոկոսը", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Տոկոսային տարբերությունը", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Սյունակի տոկոսը", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Ընդամենը տոկոս", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Շարքի տոկոսը", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Արտադրանք ", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Գումարի աշխատեցում հետևյալում...", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Ցույց տալ արժեքները որպես", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Աղբյուրի անվանումը․", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Գումար", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Ամփոփել արժեքի դաշտը ըստ", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Տրբ", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Տրբհմխ", "SSE.Views.ViewManagerDlg.closeButtonText": "Փակել", + "SSE.Views.ViewManagerDlg.guestText": "Հյուր", + "SSE.Views.ViewManagerDlg.lockText": "Կողպված է", "SSE.Views.ViewManagerDlg.textDelete": "Ջնջել", "SSE.Views.ViewManagerDlg.textDuplicate": "Կրկնօրինակել", + "SSE.Views.ViewManagerDlg.textEmpty": "Դիտումներ դեռ չեն ստեղծվել։", + "SSE.Views.ViewManagerDlg.textGoTo": "Գնալ դիտելու համար", "SSE.Views.ViewManagerDlg.textLongName": "Մուտքագրել անուն՝ 128 նիշից պակաս:", + "SSE.Views.ViewManagerDlg.textNew": "Նոր", + "SSE.Views.ViewManagerDlg.textRename": "Վերանվանել", + "SSE.Views.ViewManagerDlg.textRenameError": "Դիտման անունը չպետք է դատարկ լինի:", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Վերանվանել տեսքը", + "SSE.Views.ViewManagerDlg.textViews": "Թերթի դիտումներ", + "SSE.Views.ViewManagerDlg.tipIsLocked": "Այս տարրը խմբագրվում է մեկ այլ օգտվողի կողմից:", + "SSE.Views.ViewManagerDlg.txtTitle": "Թերթի դիտման կառավարիչ", + "SSE.Views.ViewManagerDlg.warnDeleteView": "Դուք փորձում եք ջնջել «%1» ներկայումս միացված տեսքը:
Փակե՞լ այս տեսքը և ջնջե՞լ այն:", + "SSE.Views.ViewTab.capBtnFreeze": "Փեղկերի սառեցում", + "SSE.Views.ViewTab.capBtnSheetView": "Թերթի տեսք", "SSE.Views.ViewTab.textAlwaysShowToolbar": "Միշտ ցուցադրել գործիքագոտին", "SSE.Views.ViewTab.textClose": "Փակել", "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Միավորել թերթիկը և կարգավիճակի գծերը", + "SSE.Views.ViewTab.textCreate": "Նոր", "SSE.Views.ViewTab.textDefault": "Կանխադրված", + "SSE.Views.ViewTab.textFormula": "Բանաձևերի գոտի", + "SSE.Views.ViewTab.textFreezeCol": "Սառեցնել առաջին սյունակը", + "SSE.Views.ViewTab.textFreezeRow": "Սառեցնել վերին տողը", + "SSE.Views.ViewTab.textGridlines": "Ցանցագծեր", + "SSE.Views.ViewTab.textHeadings": "Վերնագրեր", + "SSE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի թեմա", + "SSE.Views.ViewTab.textManager": "Դիտել կառավարիչը", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Ցույց տալ սառեցված ապակիների ստվերը", + "SSE.Views.ViewTab.textUnFreeze": "Ապասառեցնել փեղկերը", + "SSE.Views.ViewTab.textZeros": "Ցույց տալ զրոները", + "SSE.Views.ViewTab.textZoom": "Խոշորացնել", "SSE.Views.ViewTab.tipClose": "Փակել թերթի տեսքը", "SSE.Views.ViewTab.tipCreate": "Ստեղծել թերթիկի տեսք", + "SSE.Views.ViewTab.tipFreeze": "Փեղկերի սառեցում", + "SSE.Views.ViewTab.tipSheetView": "Թերթի տեսք", "SSE.Views.WBProtection.hintAllowRanges": "Թույլատրել խմբագրել ընդգրկույթները", + "SSE.Views.WBProtection.hintProtectSheet": "Պաշտպանել թերթը", + "SSE.Views.WBProtection.hintProtectWB": "Պաշտպանել աշխատագիրքը", "SSE.Views.WBProtection.txtAllowRanges": "Թույլատրել խմբագրել ընդգրկույթները", + "SSE.Views.WBProtection.txtHiddenFormula": "Թաքնված բանաձևեր", + "SSE.Views.WBProtection.txtLockedCell": "Կողպված Բջջ", + "SSE.Views.WBProtection.txtLockedShape": "Ձևը կողպված է", + "SSE.Views.WBProtection.txtLockedText": "Կողպեք տեքստը", + "SSE.Views.WBProtection.txtProtectSheet": "Պաշտպանել թերթը", + "SSE.Views.WBProtection.txtProtectWB": "Պաշտպանել աշխատագիրքը", "SSE.Views.WBProtection.txtSheetUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ թերթը չպաշտպանելու համար", - "SSE.Views.WBProtection.txtWBUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ աշխատանքային գրքույկը պաշտպանելու համար" + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Չպաշտպանել թերթիկը", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ աշխատանքային գրքույկը պաշտպանելու համար", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Չպաշտպանել աշխատանքային գրքույկը" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 7b9bc1370..03944eb56 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -116,6 +116,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Nessun colore", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Nascondi password", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostra password", + "Common.UI.SearchBar.textFind": "Ricerca", + "Common.UI.SearchBar.tipCloseSearch": "Chiudere la ricerca", + "Common.UI.SearchBar.tipNextResult": "Risultato successivo", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Aprire le impostazioni avanzate", + "Common.UI.SearchBar.tipPreviousResult": "Risultato precedente", "Common.UI.SearchDialog.textHighlight": "Evidenzia risultati", "Common.UI.SearchDialog.textMatchCase": "Sensibile al maiuscolo/minuscolo", "Common.UI.SearchDialog.textReplaceDef": "Inserisci testo sostitutivo", @@ -128,11 +133,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Sostituisci tutto", "Common.UI.SynchronizeTip.textDontShow": "Non mostrare più questo messaggio", "Common.UI.SynchronizeTip.textSynchronize": "Il documento è stato modificato da un altro utente.
Clicca per salvare le modifiche e ricaricare gli aggiornamenti.", + "Common.UI.ThemeColorPalette.textRecentColors": "Colori recenti", "Common.UI.ThemeColorPalette.textStandartColors": "Colori standard", "Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema", "Common.UI.Themes.txtThemeClassicLight": "Luce chiara", "Common.UI.Themes.txtThemeDark": "Scuro", "Common.UI.Themes.txtThemeLight": "Chiaro", + "Common.UI.Themes.txtThemeSystem": "Uguale al sistema", "Common.UI.Window.cancelButtonText": "Annulla", "Common.UI.Window.closeButtonText": "Chiudi", "Common.UI.Window.noButtonText": "No", @@ -202,6 +209,7 @@ "Common.Views.Comments.textResolved": "Risolto", "Common.Views.Comments.textSort": "Ordinare commenti", "Common.Views.Comments.textViewResolved": "Non sei autorizzato a riaprire il commento", + "Common.Views.Comments.txtEmpty": "Non ci sono commenti nel foglio.", "Common.Views.CopyWarningDialog.textDontShow": "Non mostrare più questo messaggio", "Common.Views.CopyWarningDialog.textMsg": "Le azioni di copia, taglia e incolla utilizzando i pulsanti della barra degli strumenti dell'editor e le azioni del menu di scelta rapida verranno eseguite solo all'interno di questa scheda dell'editor.

Per copiare o incollare in o da applicazioni esterne alla scheda dell'editor, utilizzare le seguenti combinazioni di tasti:", "Common.Views.CopyWarningDialog.textTitle": "Funzioni copia/taglia/incolla", @@ -224,6 +232,7 @@ "Common.Views.Header.textSaveChanged": "Modificato", "Common.Views.Header.textSaveEnd": "Tutte le modifiche sono state salvate", "Common.Views.Header.textSaveExpander": "Tutte le modifiche sono state salvate", + "Common.Views.Header.textShare": "Condividere", "Common.Views.Header.textZoom": "Zoom", "Common.Views.Header.tipAccessRights": "Gestisci i diritti di accesso al documento", "Common.Views.Header.tipDownload": "Scarica file", @@ -231,8 +240,10 @@ "Common.Views.Header.tipPrint": "Stampa file", "Common.Views.Header.tipRedo": "Ripristina", "Common.Views.Header.tipSave": "Salva", + "Common.Views.Header.tipSearch": "Ricerca", "Common.Views.Header.tipUndo": "Annulla", "Common.Views.Header.tipUndock": "Sgancia in una finestra separata", + "Common.Views.Header.tipUsers": "Visualizzare gli utenti", "Common.Views.Header.tipViewSettings": "Mostra impostazioni", "Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento", "Common.Views.Header.txtAccessRights": "Modifica diritti di accesso", @@ -290,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "Caricamento", "Common.Views.Plugins.groupCaption": "Plugin", "Common.Views.Plugins.strPlugins": "Plugin", + "Common.Views.Plugins.textClosePanel": "Chiudere plugin", "Common.Views.Plugins.textLoading": "Caricamento", "Common.Views.Plugins.textStart": "Avvio", "Common.Views.Plugins.textStop": "Termina", @@ -374,6 +386,38 @@ "Common.Views.ReviewPopover.txtEditTip": "Modificare", "Common.Views.SaveAsDlg.textLoading": "Caricamento", "Common.Views.SaveAsDlg.textTitle": "Cartella di salvataggio", + "Common.Views.SearchPanel.textByColumns": "Per colonne", + "Common.Views.SearchPanel.textByRows": "Per righe", + "Common.Views.SearchPanel.textCaseSensitive": "Sensibile alle maiuscole", + "Common.Views.SearchPanel.textCell": "Cella", + "Common.Views.SearchPanel.textCloseSearch": "Chiudere la ricerca", + "Common.Views.SearchPanel.textFind": "Ricerca", + "Common.Views.SearchPanel.textFindAndReplace": "Trovare e sostituire", + "Common.Views.SearchPanel.textFormula": "Formula", + "Common.Views.SearchPanel.textFormulas": "Formule", + "Common.Views.SearchPanel.textItemEntireCell": "Intero contenuto della cella", + "Common.Views.SearchPanel.textLookIn": "Cercare in", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Corrispondenza usando espressioni regolari", + "Common.Views.SearchPanel.textName": "Nome", + "Common.Views.SearchPanel.textNoMatches": "Nessuna corrispondenza", + "Common.Views.SearchPanel.textNoSearchResults": "Nessun risultato di ricerca", + "Common.Views.SearchPanel.textReplace": "Sostituire", + "Common.Views.SearchPanel.textReplaceAll": "Sostituire tutto", + "Common.Views.SearchPanel.textReplaceWith": "Sostituire con", + "Common.Views.SearchPanel.textSearch": "Ricerca", + "Common.Views.SearchPanel.textSearchOptions": "Opzioni di ricerca", + "Common.Views.SearchPanel.textSearchResults": "Risultati della ricerca: {0}/{1}", + "Common.Views.SearchPanel.textSelectDataRange": "Selezionare intervallo di dati", + "Common.Views.SearchPanel.textSheet": "Foglio", + "Common.Views.SearchPanel.textSpecificRange": "Intervallo specifico", + "Common.Views.SearchPanel.textTooManyResults": "Ci sono troppi risultati per essere mostrati qui", + "Common.Views.SearchPanel.textValue": "Valore", + "Common.Views.SearchPanel.textValues": "Valori", + "Common.Views.SearchPanel.textWholeWords": "Solo parole intere", + "Common.Views.SearchPanel.textWithin": "Entro", + "Common.Views.SearchPanel.textWorkbook": "Cartella di lavoro", + "Common.Views.SearchPanel.tipNextResult": "Risultato successivo", + "Common.Views.SearchPanel.tipPreviousResult": "Risultato precedente", "Common.Views.SelectFileDlg.textLoading": "Caricamento", "Common.Views.SelectFileDlg.textTitle": "Seleziona sorgente Dati", "Common.Views.SignDialog.textBold": "Grassetto", @@ -667,8 +711,8 @@ "SSE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Stai tentando di eliminare una colonna che contiene una cella bloccata. Le celle bloccate non possono essere eliminate se il foglio di calcolo è protetto.
Per eliminare una cella bloccata, devi rimuovere la protezione del foglio. Potrebbe esserti richiesto di inserire una password.", "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Stai tentando di eliminare una riga che contiene una cella bloccata. Le celle bloccate non possono essere eliminate se il foglio di calcolo è protetto.
Per eliminare una cella bloccata, devi rimuovere la protezione del foglio. Potrebbe esserti richiesto di inserire una password.", - "SSE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", - "SSE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Salva come ...' per salvare la copia di backup del file sul disco rigido del computer.", + "SSE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizza l'opzione 'Scaricare come ...' per salvare la copia di backup del file sul disco rigido del computer.", + "SSE.Controllers.Main.errorEditingSaveas": "Si è verificato un errore durante il lavoro con il documento.
Utilizza l'opzione 'Salvare come ...' per salvare la copia di backup del file sul disco rigido del computer.", "SSE.Controllers.Main.errorEditView": "La vista del foglio esistente non possono essere modificati, e quelli nuovi non possono essere creati al momento poiché alcuni di essi sono in fase di modifica.", "SSE.Controllers.Main.errorEmailClient": "Non è stato trovato nessun client di posta elettronica.", "SSE.Controllers.Main.errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", @@ -676,7 +720,7 @@ "SSE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document Server.", "SSE.Controllers.Main.errorFileVKey": "Errore esterno.
Chiave di sicurezza scorretta. Si prega di contattare l'assistenza nel caso in cui l'errore persista.", "SSE.Controllers.Main.errorFillRange": "Impossibile riempire l'intervallo di celle selezionato.
Tutte le celle unite devono avere le stesse dimensioni.", - "SSE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", + "SSE.Controllers.Main.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizza l'opzione 'Scaricare come' per salvare il file sul disco rigido del computer o riprova più tardi.", "SSE.Controllers.Main.errorFormulaName": "Un errore nella formula inserita.
È stato usato un nome errato per la formula.", "SSE.Controllers.Main.errorFormulaParsing": "Si è verificato un errore durante l'analisi della formula.", "SSE.Controllers.Main.errorFrmlMaxLength": "La lunghezza della formula supera il limite di 8192 caratteri.
Modificala e riprova.", @@ -783,8 +827,10 @@ "SSE.Controllers.Main.textPleaseWait": "L'operazione può richiedere più tempo. Per favore, attendi...", "SSE.Controllers.Main.textReconnect": "Connessione ripristinata", "SSE.Controllers.Main.textRemember": "Ricorda la mia scelta per tutti i file", + "SSE.Controllers.Main.textRememberMacros": "Ricordare la mia scelta per tutte le macro", "SSE.Controllers.Main.textRenameError": "Il nome utente non può essere vuoto.", "SSE.Controllers.Main.textRenameLabel": "Immettere un nome da utilizzare per la collaborazione", + "SSE.Controllers.Main.textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?", "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modalità Rigorosa", "SSE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.
Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.", @@ -1070,6 +1116,10 @@ "SSE.Controllers.Print.textWarning": "Avviso", "SSE.Controllers.Print.txtCustom": "Personalizzato", "SSE.Controllers.Print.warnCheckMargings": "Margini non corretti", + "SSE.Controllers.Search.textInvalidRange": "ERRORE! Intervallo di celle non valido", + "SSE.Controllers.Search.textNoTextFound": "Impossibile trovare i dati che stavi cercando. Ti preghiamo di modificare le opzioni di ricerca.", + "SSE.Controllers.Search.textReplaceSkipped": "La sostituzione è stata effettuata. {0} occorrenze sono state saltate.", + "SSE.Controllers.Search.textReplaceSuccess": "La ricerca è stata effettuata. {0} occorrenze sono state sostituite", "SSE.Controllers.Statusbar.errorLastSheet": "La cartella di lavoro deve contenere almeno un foglio di lavoro visibile.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Impossibile eliminare il foglio di lavoro.", "SSE.Controllers.Statusbar.strSheet": "Foglio", @@ -1576,6 +1626,7 @@ "SSE.Views.ChartDataRangeDialog.txtValues": "Valori", "SSE.Views.ChartDataRangeDialog.txtXValues": "Valori X", "SSE.Views.ChartDataRangeDialog.txtYValues": "Valori Y", + "SSE.Views.ChartSettings.errorMaxRows": "Il numero massimo di serie di dati per grafico è 255.", "SSE.Views.ChartSettings.strLineWeight": "Lunghezza linea", "SSE.Views.ChartSettings.strSparkColor": "Colore", "SSE.Views.ChartSettings.strTemplate": "Modello", @@ -1597,6 +1648,7 @@ "SSE.Views.ChartSettings.textShow": "Visualizza", "SSE.Views.ChartSettings.textSize": "Dimensione", "SSE.Views.ChartSettings.textStyle": "Stile", + "SSE.Views.ChartSettings.textSwitch": "Cambiare riga/colonna", "SSE.Views.ChartSettings.textType": "Tipo", "SSE.Views.ChartSettings.textWidth": "Larghezza", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERRORE! Il numero massimo di punti in serie per grafico è 4096.", @@ -1614,6 +1666,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "Posizione asse", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Impostazioni asse", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Titolo", + "SSE.Views.ChartSettingsDlg.textBase": "Base", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tra segni di spunta", "SSE.Views.ChartSettingsDlg.textBillions": "Miliardi", "SSE.Views.ChartSettingsDlg.textBottom": "In basso", @@ -1662,6 +1715,7 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "In alto", "SSE.Views.ChartSettingsDlg.textLines": "Linee", "SSE.Views.ChartSettingsDlg.textLocationRange": "Campo di ubicazione", + "SSE.Views.ChartSettingsDlg.textLogScale": "Scala logaritmica", "SSE.Views.ChartSettingsDlg.textLow": "In basso", "SSE.Views.ChartSettingsDlg.textMajor": "Principali", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Principali o secondarie", @@ -1853,7 +1907,9 @@ "SSE.Views.DocumentHolder.bottomCellText": "Allinea in basso", "SSE.Views.DocumentHolder.bulletsText": "Elenchi puntati e numerati", "SSE.Views.DocumentHolder.centerCellText": "Allinea in mezzo", + "SSE.Views.DocumentHolder.chartDataText": "Selezionare i dati del grafico", "SSE.Views.DocumentHolder.chartText": "Impostazioni avanzate grafico", + "SSE.Views.DocumentHolder.chartTypeText": "Cambiare tipo di grafico", "SSE.Views.DocumentHolder.deleteColumnText": "Colonna", "SSE.Views.DocumentHolder.deleteRowText": "Riga", "SSE.Views.DocumentHolder.deleteTableText": "Tabella", @@ -2026,7 +2082,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Chiudi menù", "SSE.Views.FileMenu.btnCreateNewCaption": "Crea una nuova didascalia", "SSE.Views.FileMenu.btnDownloadCaption": "Scarica come...", - "SSE.Views.FileMenu.btnExitCaption": "Uscire", + "SSE.Views.FileMenu.btnExitCaption": "Chiudere", "SSE.Views.FileMenu.btnFileOpenCaption": "Aprire...", "SSE.Views.FileMenu.btnHelpCaption": "Guida...", "SSE.Views.FileMenu.btnHistoryCaption": "Cronologia delle versioni", @@ -2065,16 +2121,22 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Applica", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modalità di co-editing", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separatore decimale", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Lingua del dizionario", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Suggerimento per i caratteri", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "‎Aggiungere la versione all'archivio dopo aver fatto clic su Salva o CTRL+S‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Lingua della Formula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Esempio: SOMMA; MINIMO; MASSIMO; CONTEGGIO", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignorare le parole in MAIUSCOLO", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignorare le parole con i numeri", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Impostazioni macro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Taglia, copia e incolla", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostra il pulsante opzioni Incolla quando il contenuto viene incollato", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Stile di riferimento R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Impostazioni Regionali", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Esempio: ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Mostrare commenti nel foglio", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Mostrare i commenti risolti", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Rigorosa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema dell'interfaccia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separatore delle migliaia", @@ -2091,17 +2153,21 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salvare versioni intermedie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Ogni minuto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Stile di riferimento", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Opzioni di correzione automatica ...", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bielorusso", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgaro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Modalità cache predefinita", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimetro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Collaborazione", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Ceco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Tedesco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Modifica e salvataggio", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "‎Greco‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Inglese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spagnolo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Co-editing in tempo reale. Tutte le modifiche vengono salvate automaticamente", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finlandese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "‎Ungherese‎", @@ -2117,9 +2183,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norvegese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Olandese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polacco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Correzione", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portoghese (Brasile)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portoghese (Portogallo)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Regione", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumeno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Abilita tutto", @@ -2128,13 +2196,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Sloveno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Disabilita tutto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Disabilita tutte le macro senza notifica", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Utilizza il pulsante \"Salvare\" per sincronizzare le modifiche apportate da te e da altri", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Svedese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraino", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Utilizzare il tasto Alt per navigare nell'interfaccia utente usando la tastiera", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Utilizzare il tasto Opzione per navigare nell'interfaccia utente usando la tastiera", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamita", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostra notifica", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "come su Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Spazio di lavoro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Cinese", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "con Password", @@ -2454,6 +2526,7 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Controllo ortografico", "SSE.Views.LeftMenu.tipSupport": "Feedback & Supporto", "SSE.Views.LeftMenu.txtDeveloper": "MODALITÀ SVILUPPATORE", + "SSE.Views.LeftMenu.txtEditor": "Editor di fogli di calcolo", "SSE.Views.LeftMenu.txtLimit": "‎Limita accesso‎", "SSE.Views.LeftMenu.txtTrial": "Modalità di prova", "SSE.Views.LeftMenu.txtTrialDev": "Prova Modalità sviluppatore", @@ -3109,6 +3182,7 @@ "SSE.Views.Spellcheck.textIgnore": "Ignora", "SSE.Views.Spellcheck.textIgnoreAll": "Ignora tutto", "SSE.Views.Spellcheck.txtAddToDictionary": "Aggiungi al dizionario", + "SSE.Views.Spellcheck.txtClosePanel": "Chiudere il correttore ortografico", "SSE.Views.Spellcheck.txtComplete": "Il controllo ortografico è stato completato", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Lingua del dizionario", "SSE.Views.Spellcheck.txtNextTip": "Vai alla prossima parola", @@ -3309,10 +3383,13 @@ "SSE.Views.Toolbar.textDelUp": "Sposta celle in alto", "SSE.Views.Toolbar.textDiagDownBorder": "Bordo diagonale inferiore", "SSE.Views.Toolbar.textDiagUpBorder": "Bordo diagonale superiore", + "SSE.Views.Toolbar.textDone": "Fatto", + "SSE.Views.Toolbar.textEditVA": "Modificare area visibile", "SSE.Views.Toolbar.textEntireCol": "Colonna intera", "SSE.Views.Toolbar.textEntireRow": "Riga intera", "SSE.Views.Toolbar.textFewPages": "Pagine", "SSE.Views.Toolbar.textHeight": "Altezza", + "SSE.Views.Toolbar.textHideVA": "Nascondere area visibile", "SSE.Views.Toolbar.textHorizontal": "Testo orizzontale", "SSE.Views.Toolbar.textInsDown": "Sposta celle in basso", "SSE.Views.Toolbar.textInsideBorders": "Bordi interni", @@ -3437,8 +3514,10 @@ "SSE.Views.Toolbar.tipSendBackward": "Porta indietro", "SSE.Views.Toolbar.tipSendForward": "Porta avanti", "SSE.Views.Toolbar.tipSynchronize": "Il documento è stato modificato da un altro utente. Clicca per salvare le modifiche e ricaricare gli aggiornamenti.", + "SSE.Views.Toolbar.tipTextFormatting": "Più strumenti per la formattazione del testo", "SSE.Views.Toolbar.tipTextOrientation": "Orientamento", "SSE.Views.Toolbar.tipUndo": "Annulla", + "SSE.Views.Toolbar.tipVisibleArea": "Area visibile", "SSE.Views.Toolbar.tipWrap": "Disponi testo", "SSE.Views.Toolbar.txtAccounting": "Contabilità", "SSE.Views.Toolbar.txtAdditional": "Ulteriori", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index f9a764ee7..bfc6d95ab 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -114,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nieuw", "Common.UI.ExtendedColorDialog.textRGBErr": "De ingevoerde waarde is onjuist.
Voer een numerieke waarde tussen 0 en 255 in.", "Common.UI.HSBColorPicker.textNoColor": "Geen kleur", + "Common.UI.SearchBar.textFind": "Zoeken", + "Common.UI.SearchBar.tipCloseSearch": "Zoekopdracht sluiten", "Common.UI.SearchDialog.textHighlight": "Resultaten markeren", "Common.UI.SearchDialog.textMatchCase": "Hoofdlettergevoelig", "Common.UI.SearchDialog.textReplaceDef": "Voer de vervangende tekst in", @@ -178,12 +180,14 @@ "Common.Views.Comments.mniAuthorDesc": "Auteur Z tot A", "Common.Views.Comments.mniDateAsc": "Oudste", "Common.Views.Comments.mniDateDesc": "Nieuwste", + "Common.Views.Comments.mniFilterGroups": "Filter per groep", "Common.Views.Comments.mniPositionAsc": "Van bovenkant", "Common.Views.Comments.mniPositionDesc": "Van onderkant", "Common.Views.Comments.textAdd": "Toevoegen", "Common.Views.Comments.textAddComment": "Opmerking toevoegen", "Common.Views.Comments.textAddCommentToDoc": "Opmerking toevoegen aan document", "Common.Views.Comments.textAddReply": "Antwoord toevoegen", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gast", "Common.Views.Comments.textCancel": "Annuleren", "Common.Views.Comments.textClose": "Sluiten", @@ -232,7 +236,7 @@ "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", "Common.Views.Header.txtRename": "Hernoemen", - "Common.Views.History.textCloseHistory": "Sluit geschiedenis", + "Common.Views.History.textCloseHistory": "Geschiedenis sluiten", "Common.Views.History.textHide": "Samenvouwen", "Common.Views.History.textHideAll": "Uitgebreide wijzigingen verbergen", "Common.Views.History.textRestore": "Herstel", @@ -285,6 +289,7 @@ "Common.Views.PluginDlg.textLoading": "Laden", "Common.Views.Plugins.groupCaption": "Plug-ins", "Common.Views.Plugins.strPlugins": "Plug-ins", + "Common.Views.Plugins.textClosePanel": "Plugin sluiten", "Common.Views.Plugins.textLoading": "Laden", "Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStop": "Stoppen", @@ -368,6 +373,16 @@ "Common.Views.ReviewPopover.txtEditTip": "Bewerken", "Common.Views.SaveAsDlg.textLoading": "Laden", "Common.Views.SaveAsDlg.textTitle": "Map voor opslaan", + "Common.Views.SearchPanel.textByColumns": "Op kolommen", + "Common.Views.SearchPanel.textByRows": "Op rijen", + "Common.Views.SearchPanel.textCaseSensitive": "Hoofdlettergevoelig", + "Common.Views.SearchPanel.textCell": "Cel", + "Common.Views.SearchPanel.textCloseSearch": "Zoekopdracht sluiten", + "Common.Views.SearchPanel.textFind": "Zoeken", + "Common.Views.SearchPanel.textFindAndReplace": "Zoeken en vervangen", + "Common.Views.SearchPanel.textFormula": "Formule", + "Common.Views.SearchPanel.textFormulas": "Formules", + "Common.Views.SearchPanel.textItemEntireCell": "Gehele celinhoud", "Common.Views.SelectFileDlg.textLoading": "Laden", "Common.Views.SelectFileDlg.textTitle": "Gegevensbron selecteren", "Common.Views.SignDialog.textBold": "Vet", @@ -584,6 +599,7 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Sorteren", "SSE.Controllers.DocumentHolder.txtSortSelected": "Geselecteerde sorteren", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Vierkante haken uitrekken", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Kies alleen deze rij van de geselecteerde kolom", "SSE.Controllers.DocumentHolder.txtTop": "Boven", "SSE.Controllers.DocumentHolder.txtUnderbar": "Staaf onder tekst", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Tabel autouitbreiding ongedaan maken", @@ -769,9 +785,11 @@ "SSE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", "SSE.Controllers.Main.textPaidFeature": "Betaalde optie", "SSE.Controllers.Main.textPleaseWait": "De bewerking kan meer tijd dan verwacht in beslag nemen. Even geduld...", + "SSE.Controllers.Main.textReconnect": "Verbinding is hersteld", "SSE.Controllers.Main.textRemember": "Voorkeur onthouden voor alle bestanden", "SSE.Controllers.Main.textRenameError": "Gebruikersnaam mag niet leeg zijn. ", "SSE.Controllers.Main.textRenameLabel": "Voer een naam in die voor samenwerking moet worden gebruikt ", + "SSE.Controllers.Main.textRequestMacros": "Een macro maakt een verzoek naar een URL. Wil je dit verzoek naar %1 toestaan?", "SSE.Controllers.Main.textShape": "Vorm", "SSE.Controllers.Main.textStrict": "Strikte modus", "SSE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", @@ -1057,9 +1075,11 @@ "SSE.Controllers.Print.textWarning": "Waarschuwing", "SSE.Controllers.Print.txtCustom": "Aangepast", "SSE.Controllers.Print.warnCheckMargings": "Marges zijn onjuist", + "SSE.Controllers.Search.textInvalidRange": "FOUT! Ongeldig celbereik", "SSE.Controllers.Statusbar.errorLastSheet": "Werkmap moet ten minste één zichtbaar werkblad bevatten.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Werkblad kan niet worden verwijderd.", "SSE.Controllers.Statusbar.strSheet": "Blad", + "SSE.Controllers.Statusbar.textDisconnect": "Verbinding verbroken
Proberen opnieuw te verbinden. Controleer de netwerkinstellingen.", "SSE.Controllers.Statusbar.textSheetViewTip": "U bevindt zich in bladweergave modus. Filters en sortering zijn alleen zichtbaar voor u en degenen die zich nog in deze weergave bevinden.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "U bevindt zich in de modus Veldweergave. Filters zijn alleen zichtbaar voor u en degenen die zich nog in deze weergave bevinden.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Het geselecteerde werkblad bevat mogelijk gegevens. Wilt u doorgaan?", @@ -1427,6 +1447,7 @@ "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Duizenden scheidingsteken", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Instellingen die worden gebruikt om numerieke gegevens te herkennen", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Geavanceerde instellingen", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(geen)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Aangepast filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Huidige selectie toevoegen aan filter", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Leeg}", @@ -1597,6 +1618,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "Aspositie", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Asinstellingen", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Titel", + "SSE.Views.ChartSettingsDlg.textBase": "Basis", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tussen maatstreepjes", "SSE.Views.ChartSettingsDlg.textBillions": "Miljarden", "SSE.Views.ChartSettingsDlg.textBottom": "Onder", @@ -1837,6 +1859,7 @@ "SSE.Views.DocumentHolder.bulletsText": "Opsommingstekens en nummering", "SSE.Views.DocumentHolder.centerCellText": "Midden uitlijnen", "SSE.Views.DocumentHolder.chartText": "Geavanceerde grafiekinstellingen", + "SSE.Views.DocumentHolder.chartTypeText": "Grafiektype wijzigen", "SSE.Views.DocumentHolder.deleteColumnText": "Kolom", "SSE.Views.DocumentHolder.deleteRowText": "Rij", "SSE.Views.DocumentHolder.deleteTableText": "Tabel", @@ -1872,6 +1895,7 @@ "SSE.Views.DocumentHolder.textCrop": "Uitsnijden", "SSE.Views.DocumentHolder.textCropFill": "Vullen", "SSE.Views.DocumentHolder.textCropFit": "Aanpassen", + "SSE.Views.DocumentHolder.textEditPoints": "Punten bewerken", "SSE.Views.DocumentHolder.textEntriesList": "Selecteren uit de vervolgkeuzelijst", "SSE.Views.DocumentHolder.textFlipH": "Horizontaal omdraaien", "SSE.Views.DocumentHolder.textFlipV": "Verticaal omdraaien", @@ -1902,6 +1926,12 @@ "SSE.Views.DocumentHolder.textUndo": "Ongedaan maken", "SSE.Views.DocumentHolder.textUnFreezePanes": "Blokkering deelvensters opheffen", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Pijlopsommingstekens", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Vinkopsommingstekens", + "SSE.Views.DocumentHolder.tipMarkersDash": "Streepopsommingstekens", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Opgevulde ruitopsommingstekens", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Opgevulde ronde opsommingstekens", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Opgevulde vierkante opsommingstekens", "SSE.Views.DocumentHolder.topCellText": "Boven uitlijnen", "SSE.Views.DocumentHolder.txtAccounting": "Boekhouding", "SSE.Views.DocumentHolder.txtAddComment": "Opmerking toevoegen", @@ -2000,7 +2030,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Menu sluiten", "SSE.Views.FileMenu.btnCreateNewCaption": "Nieuw maken", "SSE.Views.FileMenu.btnDownloadCaption": "Downloaden als...", - "SSE.Views.FileMenu.btnExitCaption": "Afsluiten", + "SSE.Views.FileMenu.btnExitCaption": "Sluiten", "SSE.Views.FileMenu.btnFileOpenCaption": "Openen...", "SSE.Views.FileMenu.btnHelpCaption": "Help...", "SSE.Views.FileMenu.btnHistoryCaption": "Versiehistorie", @@ -2039,6 +2069,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Toepassen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Modus Gezamenlijk bewerken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaalscheidingsteken", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Woordenboek taal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hints voor lettertype", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Altijd op de server opslaan in plaats van bij het sluiten van het document", @@ -2065,14 +2096,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Tussenliggende versies bewaren", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Elke minuut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referentie stijl", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Opties voor AutoCorrect", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Wit-Russisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgaars", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "standaard cache modus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Samenwerking", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Tsjechisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Deens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Duits", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Bewerken en opslaan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grieks", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Engels", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spaans", @@ -2355,7 +2389,7 @@ "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript", "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript", "SSE.Views.HeaderFooterDialog.textTime": "Tijd", - "SSE.Views.HeaderFooterDialog.textTitle": "Kop- en Voettekst instellingen", + "SSE.Views.HeaderFooterDialog.textTitle": "Kop- en voettekstinstellingen", "SSE.Views.HeaderFooterDialog.textUnderline": "Onderstreept", "SSE.Views.HeaderFooterDialog.tipFontName": "Lettertype", "SSE.Views.HeaderFooterDialog.tipFontSize": "Tekengrootte", @@ -2384,6 +2418,7 @@ "SSE.Views.ImageSettings.textCrop": "Uitsnijden", "SSE.Views.ImageSettings.textCropFill": "Vullen", "SSE.Views.ImageSettings.textCropFit": "Aanpassen", + "SSE.Views.ImageSettings.textCropToShape": "Bijsnijden naar vorm", "SSE.Views.ImageSettings.textEdit": "Bewerken", "SSE.Views.ImageSettings.textEditObject": "Object bewerken", "SSE.Views.ImageSettings.textFlip": "Draaien", @@ -2706,6 +2741,18 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "Selecteer bereik", "SSE.Views.PrintTitlesDialog.textTitle": "Titels afdrukken", "SSE.Views.PrintTitlesDialog.textTop": "Herhaal rijen bovenaan", + "SSE.Views.PrintWithPreview.txtActualSize": "Ware grootte", + "SSE.Views.PrintWithPreview.txtAllSheets": "Alle werkbladen", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Toepassen op alle werkbladen", + "SSE.Views.PrintWithPreview.txtBottom": "Onderkant", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Huidig blad", + "SSE.Views.PrintWithPreview.txtCustom": "Aangepast", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Aangepaste opties", + "SSE.Views.PrintWithPreview.txtFitCols": "Alle kolommen passend maken voor één pagina", + "SSE.Views.PrintWithPreview.txtFitPage": "Blad passend maken voor één pagina", + "SSE.Views.PrintWithPreview.txtFitRows": "Alle rijen passend maken voor één pagina", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Rasterlijnen en koppen", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Kop- en voettekstinstellingen", "SSE.Views.ProtectDialog.textExistName": "FOUT! Er bestaat reeds een bereik met dezelfde titel", "SSE.Views.ProtectDialog.textInvalidName": "Het bereik moet beginnen met een letter en mag alleen letters, cijfers en spaties bevatten. ", "SSE.Views.ProtectDialog.textInvalidRange": "FOUT! Ongeldig celbereik", @@ -3039,6 +3086,7 @@ "SSE.Views.Spellcheck.textIgnore": "Negeren", "SSE.Views.Spellcheck.textIgnoreAll": "Alles negeren", "SSE.Views.Spellcheck.txtAddToDictionary": "Toevoegen aan woordenboek", + "SSE.Views.Spellcheck.txtClosePanel": "Spelling sluiten", "SSE.Views.Spellcheck.txtComplete": "De spellingcontrole is voltooid", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Woordenboek taal", "SSE.Views.Spellcheck.txtNextTip": "Ga naar het volgende woord", @@ -3238,6 +3286,8 @@ "SSE.Views.Toolbar.textDelUp": "Cellen naar boven verplaatsen", "SSE.Views.Toolbar.textDiagDownBorder": "Diagonale rand naar onder", "SSE.Views.Toolbar.textDiagUpBorder": "Diagonale rand naar boven", + "SSE.Views.Toolbar.textDone": "Klaar", + "SSE.Views.Toolbar.textEditVA": "Zichtbaar gebied bewerken", "SSE.Views.Toolbar.textEntireCol": "Hele kolom", "SSE.Views.Toolbar.textEntireRow": "Hele rij", "SSE.Views.Toolbar.textFewPages": "Pagina's", @@ -3490,7 +3540,9 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "U probeert de momenteel ingeschakelde weergave '%1' te verwijderen.
Deze weergave sluiten en verwijderen?", "SSE.Views.ViewTab.capBtnFreeze": "Deelvensters blokkeren", "SSE.Views.ViewTab.capBtnSheetView": "Bladweergave", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Werkbalk altijd weergeven", "SSE.Views.ViewTab.textClose": "Sluiten", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Blad- en statusbalken samenvoegen", "SSE.Views.ViewTab.textCreate": "Nieuw", "SSE.Views.ViewTab.textDefault": "Standaard", "SSE.Views.ViewTab.textFormula": "Formule balk", diff --git a/apps/spreadsheeteditor/main/locale/pt-PT.json b/apps/spreadsheeteditor/main/locale/pt-PT.json index ecc2c3490..9fd2f0dc4 100644 --- a/apps/spreadsheeteditor/main/locale/pt-PT.json +++ b/apps/spreadsheeteditor/main/locale/pt-PT.json @@ -64,7 +64,7 @@ "Common.define.conditionalData.textBetween": "Entre", "Common.define.conditionalData.textBlank": "Branco", "Common.define.conditionalData.textBlanks": "Contém espaços em branco", - "Common.define.conditionalData.textBottom": "Inferior", + "Common.define.conditionalData.textBottom": "Baixo", "Common.define.conditionalData.textContains": "Contém", "Common.define.conditionalData.textDataBar": "Barra de dados", "Common.define.conditionalData.textDate": "Data", @@ -117,6 +117,10 @@ "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-passe", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar palavra-passe", "Common.UI.SearchBar.textFind": "Localizar", + "Common.UI.SearchBar.tipCloseSearch": "Fechar pesquisa", + "Common.UI.SearchBar.tipNextResult": "Resultado seguinte", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Abrir opções avançadas", + "Common.UI.SearchBar.tipPreviousResult": "Resultado anterior", "Common.UI.SearchDialog.textHighlight": "Destacar resultados", "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", @@ -129,11 +133,13 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo", "Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente", "Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro utilizador.
Clique para guardar as suas alterações e recarregar o documento.", + "Common.UI.ThemeColorPalette.textRecentColors": "Cores recentes", "Common.UI.ThemeColorPalette.textStandartColors": "Cores padrão", "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", "Common.UI.Themes.txtThemeDark": "Escuro", "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Themes.txtThemeSystem": "O mesmo que o sistema", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Fechar", "Common.UI.Window.noButtonText": "Não", @@ -226,6 +232,7 @@ "Common.Views.Header.textSaveChanged": "Modificado", "Common.Views.Header.textSaveEnd": "Todas as alterações foram guardadas", "Common.Views.Header.textSaveExpander": "Todas as alterações foram guardadas", + "Common.Views.Header.textShare": "Partilhar", "Common.Views.Header.textZoom": "Ampliação", "Common.Views.Header.tipAccessRights": "Gerir direitos de acesso ao documento", "Common.Views.Header.tipDownload": "Descarregar ficheiro", @@ -233,12 +240,14 @@ "Common.Views.Header.tipPrint": "Imprimir ficheiro", "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Salvar", + "Common.Views.Header.tipSearch": "Pesquisar", "Common.Views.Header.tipUndo": "Desfazer", "Common.Views.Header.tipUndock": "Desacoplar em janela separada", + "Common.Views.Header.tipUsers": "Ver utilizadores", "Common.Views.Header.tipViewSettings": "Definições de visualização", "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", - "Common.Views.Header.txtRename": "Renomear", + "Common.Views.Header.txtRename": "Mudar nome", "Common.Views.History.textCloseHistory": "Fechar histórico", "Common.Views.History.textHide": "Recolher", "Common.Views.History.textHideAll": "Ocultar alterações detalhadas", @@ -292,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "Carregamento", "Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Fechar plugin", "Common.Views.Plugins.textLoading": "Carregamento", "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Parar", @@ -376,10 +386,38 @@ "Common.Views.ReviewPopover.txtEditTip": "Editar", "Common.Views.SaveAsDlg.textLoading": "Carregamento", "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", + "Common.Views.SearchPanel.textByColumns": "Por colunas", + "Common.Views.SearchPanel.textByRows": "Por linhas", + "Common.Views.SearchPanel.textCaseSensitive": "Diferenciar maiúsculas de minúsculas", + "Common.Views.SearchPanel.textCell": "Célula", + "Common.Views.SearchPanel.textCloseSearch": "Fechar pesquisa", "Common.Views.SearchPanel.textFind": "Localizar", "Common.Views.SearchPanel.textFindAndReplace": "Localizar e substituir", "Common.Views.SearchPanel.textFormula": "Fórmula", "Common.Views.SearchPanel.textFormulas": "Fórmulas", + "Common.Views.SearchPanel.textItemEntireCell": "Conteúdo inteiro da célula", + "Common.Views.SearchPanel.textLookIn": "Procurar em", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Correspondência ao usar expressões regulares", + "Common.Views.SearchPanel.textName": "Nome", + "Common.Views.SearchPanel.textNoMatches": "Sem correspondência", + "Common.Views.SearchPanel.textNoSearchResults": "Sem resultados de pesquisa", + "Common.Views.SearchPanel.textReplace": "Substituir", + "Common.Views.SearchPanel.textReplaceAll": "Substituir tudo", + "Common.Views.SearchPanel.textReplaceWith": "Substituir com", + "Common.Views.SearchPanel.textSearch": "Pesquisar", + "Common.Views.SearchPanel.textSearchOptions": "Opções de pesquisa", + "Common.Views.SearchPanel.textSearchResults": "Resultados da pesquisa: {0}/{1}", + "Common.Views.SearchPanel.textSelectDataRange": "Selecionar intervalo de dados", + "Common.Views.SearchPanel.textSheet": "Folha", + "Common.Views.SearchPanel.textSpecificRange": "Intervalo específico", + "Common.Views.SearchPanel.textTooManyResults": "Existem demasiados resultados para poderem ser mostrados aqui", + "Common.Views.SearchPanel.textValue": "Valor", + "Common.Views.SearchPanel.textValues": "Valores", + "Common.Views.SearchPanel.textWholeWords": "Palavras inteiras apenas", + "Common.Views.SearchPanel.textWithin": "Dentro", + "Common.Views.SearchPanel.textWorkbook": "Livro de trabalho", + "Common.Views.SearchPanel.tipNextResult": "Resultado seguinte", + "Common.Views.SearchPanel.tipPreviousResult": "Resultado anterior", "Common.Views.SelectFileDlg.textLoading": "Carregamento", "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", "Common.Views.SignDialog.textBold": "Negrito", @@ -469,7 +507,7 @@ "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Altura da linha {0} pontos ({1} pixels)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Clique na ligação para a abrir ou clique e prima o botão do rato para selecionar a célula.", "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", - "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", + "SSE.Controllers.DocumentHolder.textInsertTop": "Inserir em cima", "SSE.Controllers.DocumentHolder.textPasteSpecial": "Colar especial", "SSE.Controllers.DocumentHolder.textStopExpand": "Parar de expandir automaticamente as tabelas", "SSE.Controllers.DocumentHolder.textSym": "Sim.", @@ -522,7 +560,7 @@ "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Carácter sob texto", "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Devolve os cabeçalhos das colunas para a tabela ou colunas de tabela especificadas", "SSE.Controllers.DocumentHolder.txtHeight": "Altura", - "SSE.Controllers.DocumentHolder.txtHideBottom": "Ocultar borda inferior", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Ocultar contorno inferior", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Ocultar limite inferior", "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Ocultar o parêntesis de fecho", "SSE.Controllers.DocumentHolder.txtHideDegree": "Ocultar grau", @@ -595,7 +633,7 @@ "SSE.Controllers.DocumentHolder.txtShowDegree": "Exibir grau", "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Mostrar chaveta de abertura", "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Exibir espaço reservado", - "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Exibir limite superior", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Mostrar limite superior", "SSE.Controllers.DocumentHolder.txtSorting": "A Ordenar", "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordenar o que está selecionado", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Esticar colchetes", @@ -673,8 +711,8 @@ "SSE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Está a tentar apagar uma coluna que contém uma célula protegida. As células protegidas não podem ser apagadas enquanto a folha de cálculo estiver protegida.
Para apagar uma célula bloqueada, desproteja a folha. É possível ter que introduzir uma palavra-passe.", "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Está a tentar apagar uma linha que contém uma célula protegida. As células protegidas não podem ser apagadas enquanto a folha de cálculo estiver protegida.
Para apagar uma célula bloqueada, desproteja a folha. É possível ter que introduzir uma palavra-passe.", - "SSE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.", - "SSE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "SSE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar a cópia de segurança do ficheiro numa unidade.", + "SSE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar a cópia de segurança do ficheiro numa unidade.", "SSE.Controllers.Main.errorEditView": "A vista de folha existente não pode ser editada e as novas também não podem ser editadas porque algumas delas estão a ser editadas.", "SSE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.", "SSE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", @@ -682,7 +720,7 @@ "SSE.Controllers.Main.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", "SSE.Controllers.Main.errorFileVKey": "Erro externo.
Chave de segurança inválida. Se este erro se mantiver, deve contactar o suporte.", "SSE.Controllers.Main.errorFillRange": "Não foi possível preencher o intervalo de células.
Todas as células unidas têm que ter o mesmo tamanho.", - "SSE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.", + "SSE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro para uma unidade ou tente novamente mais tarde.", "SSE.Controllers.Main.errorFormulaName": "Existe um erro na fórmula.
Utilizou um nome de fórmula inválido.", "SSE.Controllers.Main.errorFormulaParsing": "Erro interno ao analisar a fórmula.", "SSE.Controllers.Main.errorFrmlMaxLength": "O comprimento da sua fórmula excede o limite de 8192 caracteres.
Por favor, edite-a e tente novamente.", @@ -789,8 +827,10 @@ "SSE.Controllers.Main.textPleaseWait": "A operação pode demorar mais tempo do que o esperado. Aguarde...", "SSE.Controllers.Main.textReconnect": "A ligação foi reposta", "SSE.Controllers.Main.textRemember": "Memorizar a minha escolha", + "SSE.Controllers.Main.textRememberMacros": "Memorizar escolha para todas as macros", "SSE.Controllers.Main.textRenameError": "O nome de utilizador não pode estar em branco.", "SSE.Controllers.Main.textRenameLabel": "Introduza um nome a ser usado para colaboração", + "SSE.Controllers.Main.textRequestMacros": "Uma macro faz um pedido de URL. Quer permitir o pedido à %1?", "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modo estrito", "SSE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.
Clique no botão 'Modo estrito' para ativar este modo de edição e editar o ficheiro sem ser incomodado por outros utilizadores enviando apenas as suas alterações assim que terminar e guardar. Pode alternar entre modos de co-edição através das definições avançadas.", @@ -1049,10 +1089,10 @@ "SSE.Controllers.Main.uploadDocFileCountMessage": "Nenhum documento foi carregado.", "SSE.Controllers.Main.uploadDocSizeMessage": "Excedeu o limite de tamanho para o documento.", "SSE.Controllers.Main.uploadImageExtMessage": "Formato desconhecido.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", "SSE.Controllers.Main.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", - "SSE.Controllers.Main.uploadImageTextText": "A enviar imagem...", - "SSE.Controllers.Main.uploadImageTitleText": "A enviar imagem", + "SSE.Controllers.Main.uploadImageTextText": "A carregar imagem...", + "SSE.Controllers.Main.uploadImageTitleText": "A carregar imagem", "SSE.Controllers.Main.waitText": "Por favor, aguarde...", "SSE.Controllers.Main.warnBrowserIE9": "A aplicação não funciona corretamente com IE9. Deve utilizar IE10 ou superior", "SSE.Controllers.Main.warnBrowserZoom": "A definição 'zoom' do seu navegador não é totalmente suportada. Prima Ctrl+0 para repor o valor padrão.", @@ -1076,6 +1116,10 @@ "SSE.Controllers.Print.textWarning": "Aviso", "SSE.Controllers.Print.txtCustom": "Personalizado", "SSE.Controllers.Print.warnCheckMargings": "Margens estão incorretas", + "SSE.Controllers.Search.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Controllers.Search.textNoTextFound": "Não foi possível localizar os dados procurados. Ajuste as opções de pesquisa.", + "SSE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "SSE.Controllers.Search.textReplaceSuccess": "A pesquisa foi concluída. {0} ocorrências foram substituídas", "SSE.Controllers.Statusbar.errorLastSheet": "Pasta de trabalho deve ter no mínimo uma planilha visível.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Não é possível excluir uma planilha.", "SSE.Controllers.Statusbar.strSheet": "Folha", @@ -1533,19 +1577,19 @@ "SSE.Views.CellSettings.textThisSheet": "A partir desta folha de cálculo", "SSE.Views.CellSettings.textThisTable": "A partir deste pivot", "SSE.Views.CellSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", - "SSE.Views.CellSettings.tipAll": "Definir borda externa e todas as linhas internas", - "SSE.Views.CellSettings.tipBottom": "Definir apenas borda inferior externa", + "SSE.Views.CellSettings.tipAll": "Definir contorno externo e todas as linhas internas", + "SSE.Views.CellSettings.tipBottom": "Definir apenas contorno inferior externo", "SSE.Views.CellSettings.tipDiagD": "Definir Limite Diagonal Inferior", "SSE.Views.CellSettings.tipDiagU": "Definir Limite Diagonal Superior", "SSE.Views.CellSettings.tipInner": "Definir apenas linhas internas", "SSE.Views.CellSettings.tipInnerHor": "Definir apenas linhas internas horizontais", "SSE.Views.CellSettings.tipInnerVert": "Definir apenas linhas internas verticais", - "SSE.Views.CellSettings.tipLeft": "Definir apenas borda esquerda externa", + "SSE.Views.CellSettings.tipLeft": "Definir apenas contorno esquerdo externo", "SSE.Views.CellSettings.tipNone": "Definir sem bordas", - "SSE.Views.CellSettings.tipOuter": "Definir apenas borda externa", + "SSE.Views.CellSettings.tipOuter": "Definir apenas contorno externo", "SSE.Views.CellSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", - "SSE.Views.CellSettings.tipRight": "Definir apenas borda direita externa", - "SSE.Views.CellSettings.tipTop": "Definir apenas borda superior externa", + "SSE.Views.CellSettings.tipRight": "Definir apenas contorno direito externo", + "SSE.Views.CellSettings.tipTop": "Definir apenas contorno superior externo", "SSE.Views.ChartDataDialog.errorInFormula": "Há um erro na fórmula que introduziu.", "SSE.Views.ChartDataDialog.errorInvalidReference": "A referência não é válida. A referência tem de ser uma folha de cálculo aberta.", "SSE.Views.ChartDataDialog.errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", @@ -1582,6 +1626,7 @@ "SSE.Views.ChartDataRangeDialog.txtValues": "Valores", "SSE.Views.ChartDataRangeDialog.txtXValues": "Valores do X", "SSE.Views.ChartDataRangeDialog.txtYValues": "Valores do Y", + "SSE.Views.ChartSettings.errorMaxRows": "O número máximo de séries de dados, por gráfico, é 255.", "SSE.Views.ChartSettings.strLineWeight": "Espessura da linha", "SSE.Views.ChartSettings.strSparkColor": "Cor", "SSE.Views.ChartSettings.strTemplate": "Modelo", @@ -1603,6 +1648,7 @@ "SSE.Views.ChartSettings.textShow": "Mostrar", "SSE.Views.ChartSettings.textSize": "Tamanho", "SSE.Views.ChartSettings.textStyle": "Estilo", + "SSE.Views.ChartSettings.textSwitch": "Trocar Linha/Coluna", "SSE.Views.ChartSettings.textType": "Tipo", "SSE.Views.ChartSettings.textWidth": "Largura", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", @@ -1653,7 +1699,7 @@ "SSE.Views.ChartSettingsDlg.textHundredThousands": "100.000 ", "SSE.Views.ChartSettingsDlg.textIn": "Em", "SSE.Views.ChartSettingsDlg.textInnerBottom": "Parte inferior interna", - "SSE.Views.ChartSettingsDlg.textInnerTop": "Parte superior interna", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Superior interna", "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERRO! Intervalo de células inválido", "SSE.Views.ChartSettingsDlg.textLabelDist": "Distância da etiqueta de eixos", "SSE.Views.ChartSettingsDlg.textLabelInterval": "Intervalo entre Etiquetas", @@ -1662,7 +1708,7 @@ "SSE.Views.ChartSettingsDlg.textLayout": "Disposição", "SSE.Views.ChartSettingsDlg.textLeft": "Esquerda", "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Sobreposição esquerda", - "SSE.Views.ChartSettingsDlg.textLegendBottom": "Inferior", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Baixo", "SSE.Views.ChartSettingsDlg.textLegendLeft": "Esquerda", "SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda", "SSE.Views.ChartSettingsDlg.textLegendRight": "Direita", @@ -1688,7 +1734,7 @@ "SSE.Views.ChartSettingsDlg.textOneCell": "Mover mas não redimensionar células", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Nas marcas de escala", "SSE.Views.ChartSettingsDlg.textOut": "Fora", - "SSE.Views.ChartSettingsDlg.textOuterTop": "Fora do topo", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Superior externa", "SSE.Views.ChartSettingsDlg.textOverlay": "Sobreposição", "SSE.Views.ChartSettingsDlg.textReverse": "Valores na ordem reversa", "SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordem Inversa", @@ -1787,7 +1833,7 @@ "SSE.Views.DataValidationDialog.errorNotNumeric": "O campo \"{0}\" deve ser um valor numérico, expressão numérica, ou referir-se a uma célula contendo um valor numérico.", "SSE.Views.DataValidationDialog.strError": "Alerta de Erro", "SSE.Views.DataValidationDialog.strInput": "Mensagem de Entrada", - "SSE.Views.DataValidationDialog.strSettings": "Configurações", + "SSE.Views.DataValidationDialog.strSettings": "Definições", "SSE.Views.DataValidationDialog.textAlert": "Alerta", "SSE.Views.DataValidationDialog.textAllow": "Permitir", "SSE.Views.DataValidationDialog.textApply": "Aplicar estas alterações a todas células com as mesmas definições", @@ -1858,10 +1904,12 @@ "SSE.Views.DocumentHolder.advancedImgText": "Definições avançadas de imagem", "SSE.Views.DocumentHolder.advancedShapeText": "Definições avançadas de forma", "SSE.Views.DocumentHolder.advancedSlicerText": "Definições avançadas de 'slicer'", - "SSE.Views.DocumentHolder.bottomCellText": "Alinhar à parte inferior", + "SSE.Views.DocumentHolder.bottomCellText": "Alinhar em baixo", "SSE.Views.DocumentHolder.bulletsText": "Marcadores e numeração", "SSE.Views.DocumentHolder.centerCellText": "Alinhar ao centro", + "SSE.Views.DocumentHolder.chartDataText": "Selecionar dados do gráfico", "SSE.Views.DocumentHolder.chartText": "Definições avançadas de gráfico", + "SSE.Views.DocumentHolder.chartTypeText": "Alterar tipo de gráfico", "SSE.Views.DocumentHolder.deleteColumnText": "Coluna", "SSE.Views.DocumentHolder.deleteRowText": "Linha", "SSE.Views.DocumentHolder.deleteTableText": "Tabela", @@ -1936,7 +1984,7 @@ "SSE.Views.DocumentHolder.tipMarkersFSquare": "Listas Quadradas Preenchidas", "SSE.Views.DocumentHolder.tipMarkersHRound": "Marcas de lista redondas vazias", "SSE.Views.DocumentHolder.tipMarkersStar": "Marcas em estrela", - "SSE.Views.DocumentHolder.topCellText": "Alinhar à parte superior", + "SSE.Views.DocumentHolder.topCellText": "Alinhar em cima", "SSE.Views.DocumentHolder.txtAccounting": "Contabilidade", "SSE.Views.DocumentHolder.txtAddComment": "Adicionar comentário", "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", @@ -1994,8 +2042,8 @@ "SSE.Views.DocumentHolder.txtShow": "Mostrar", "SSE.Views.DocumentHolder.txtShowComment": "Mostrar Comentário", "SSE.Views.DocumentHolder.txtSort": "Classificar", - "SSE.Views.DocumentHolder.txtSortCellColor": "Cor da Célula Selecionada Em Cima", - "SSE.Views.DocumentHolder.txtSortFontColor": "Cor do Tipo de Letra Selecionada Em Cima", + "SSE.Views.DocumentHolder.txtSortCellColor": "Cor da célula selecionada em cima", + "SSE.Views.DocumentHolder.txtSortFontColor": "Cor do tipo de letra selecionada em cima", "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Тexto", "SSE.Views.DocumentHolder.txtTextAdvanced": "Configurações avançadas de parágrafo", @@ -2042,7 +2090,7 @@ "SSE.Views.FileMenu.btnPrintCaption": "Imprimir", "SSE.Views.FileMenu.btnProtectCaption": "Proteger", "SSE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", - "SSE.Views.FileMenu.btnRenameCaption": "Renomear...", + "SSE.Views.FileMenu.btnRenameCaption": "Mudar nome...", "SSE.Views.FileMenu.btnReturnCaption": "Voltar para Folha de Cálculo", "SSE.Views.FileMenu.btnRightsCaption": "Direitos de Acesso...", "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", @@ -2073,17 +2121,22 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Idioma do Dicionário", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rápido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Dicas de fonte", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Adicionar versão ao armazenamento após clicar em Guardar ou Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignorar palavras em MAÍSCULAS", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignorar palavras com números", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Definições de macros", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar e colar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Estilo de referência R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Definições regionais", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Mostrar comentários na folha", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Mostrar comentários resolvidos", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema da interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de milhares", @@ -2100,6 +2153,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salvar para servidor", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "A cada minuto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Estilo de Referência", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Opções de correção automática...", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bielorrusso", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Búlgaro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalão", @@ -2109,9 +2163,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Checo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Dinamarquês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Deutsch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Editar e Guardar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grego", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Espanhol", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Co-edição em tempo real. Todas as alterações são guardadas automaticamente", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finlandês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Húngaro", @@ -2127,9 +2183,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norueguês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Neerlandês", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polaco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Correção", "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.txtRegion": "Região", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romeno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Ativar tudo", @@ -2138,13 +2196,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Esloveno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Desativar tudo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Desativar todas as macros sem uma notificação", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Utilize o botão \"Guardar\" para sincronizar as alterações efetuadas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Sueco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraniano", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Utilize a tecla 'Alt' para navegar na interface através do teclado", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Utilize a tecla 'Opção' para navegar na interface através do teclado", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamita", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostrar notificação", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Área de trabalho", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinês", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe", @@ -2171,7 +2233,7 @@ "SSE.Views.FormatRulesEditDlg.textBorder": "Borda", "SSE.Views.FormatRulesEditDlg.textBordersColor": "Cor das bordas", "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Estilo de borda", - "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bordas inferiores", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Contornos inferiores", "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Não foi possível adicionar a formatação condicional.", "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Ponto intermédio da célula", "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Bordas verticais interiores", @@ -2471,11 +2533,11 @@ "SSE.Views.MacroDialog.textMacro": "Nome da Macro", "SSE.Views.MacroDialog.textTitle": "Atribuir Macro", "SSE.Views.MainSettingsPrint.okButtonText": "Salvar", - "SSE.Views.MainSettingsPrint.strBottom": "Inferior", - "SSE.Views.MainSettingsPrint.strLandscape": "Paisagem", + "SSE.Views.MainSettingsPrint.strBottom": "Baixo", + "SSE.Views.MainSettingsPrint.strLandscape": "Horizontal", "SSE.Views.MainSettingsPrint.strLeft": "Esquerda", "SSE.Views.MainSettingsPrint.strMargins": "Margens", - "SSE.Views.MainSettingsPrint.strPortrait": "Retrato", + "SSE.Views.MainSettingsPrint.strPortrait": "Vertical", "SSE.Views.MainSettingsPrint.strPrint": "Imprimir", "SSE.Views.MainSettingsPrint.strPrintTitles": "Imprimir títulos", "SSE.Views.MainSettingsPrint.strRight": "Direita", @@ -2490,7 +2552,7 @@ "SSE.Views.MainSettingsPrint.textPageScaling": "A ajustar", "SSE.Views.MainSettingsPrint.textPageSize": "Tamanho da página", "SSE.Views.MainSettingsPrint.textPrintGrid": "Imprimir linhas de grade", - "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimir cabeçalho de linhas e de colunas", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimir títulos de linhas e de colunas", "SSE.Views.MainSettingsPrint.textRepeat": "Repetir…", "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repetir colunas à esquerda", "SSE.Views.MainSettingsPrint.textRepeatTop": "Repetir linhas no topo", @@ -2669,7 +2731,7 @@ "SSE.Views.PivotTable.capGrandTotals": "Totais Gerais", "SSE.Views.PivotTable.capLayout": "Disposição do relatório", "SSE.Views.PivotTable.capSubtotals": "Subtotais", - "SSE.Views.PivotTable.mniBottomSubtotals": "Mostrar todos os Subtotais no Fundo do Grupo", + "SSE.Views.PivotTable.mniBottomSubtotals": "Mostrar todos os subtotais no fundo do grupo", "SSE.Views.PivotTable.mniInsertBlankLine": "Inserir Linha em Branco depois de Cada Item", "SSE.Views.PivotTable.mniLayoutCompact": "Mostrar em Formato Compacto", "SSE.Views.PivotTable.mniLayoutNoRepeat": "Não Repetir Todos os Rótulos dos Itens", @@ -2682,7 +2744,7 @@ "SSE.Views.PivotTable.mniOnRowsTotals": "Ativado apenas para Linhas ", "SSE.Views.PivotTable.mniOnTotals": "Ativado para Linhas e Colunas", "SSE.Views.PivotTable.mniRemoveBlankLine": "Remover a Linha Branca a Seguir a Cada Item", - "SSE.Views.PivotTable.mniTopSubtotals": "Mostrar todos os Subtotais no Topo do Grupo", + "SSE.Views.PivotTable.mniTopSubtotals": "Mostrar todos os subtotais no topo do grupo", "SSE.Views.PivotTable.textColBanded": "Colunas em bandas", "SSE.Views.PivotTable.textColHeader": "Cabeçalhos de coluna", "SSE.Views.PivotTable.textRowBanded": "Linhas em bandas", @@ -2698,11 +2760,11 @@ "SSE.Views.PivotTable.txtSelect": "Selecionar", "SSE.Views.PrintSettings.btnDownload": "Guardar e Descarregar", "SSE.Views.PrintSettings.btnPrint": "Salvar e Imprimir", - "SSE.Views.PrintSettings.strBottom": "Inferior", - "SSE.Views.PrintSettings.strLandscape": "Paisagem", + "SSE.Views.PrintSettings.strBottom": "Baixo", + "SSE.Views.PrintSettings.strLandscape": "Horizontal", "SSE.Views.PrintSettings.strLeft": "Esquerda", "SSE.Views.PrintSettings.strMargins": "Margens", - "SSE.Views.PrintSettings.strPortrait": "Retrato", + "SSE.Views.PrintSettings.strPortrait": "Vertical", "SSE.Views.PrintSettings.strPrint": "Imprimir", "SSE.Views.PrintSettings.strPrintTitles": "Imprimir títulos", "SSE.Views.PrintSettings.strRight": "Direita", @@ -2723,7 +2785,7 @@ "SSE.Views.PrintSettings.textPageScaling": "A ajustar", "SSE.Views.PrintSettings.textPageSize": "Tamanho da página", "SSE.Views.PrintSettings.textPrintGrid": "Imprimir linhas de grade", - "SSE.Views.PrintSettings.textPrintHeadings": "Imprimir cabeçalho de linhas e de colunas", + "SSE.Views.PrintSettings.textPrintHeadings": "Imprimir títulos de linhas e de colunas", "SSE.Views.PrintSettings.textPrintRange": "Imprimir intervalo", "SSE.Views.PrintSettings.textRange": "Intervalo", "SSE.Views.PrintSettings.textRepeat": "Repetir…", @@ -2733,7 +2795,7 @@ "SSE.Views.PrintSettings.textSettings": "Definições de folha", "SSE.Views.PrintSettings.textShowDetails": "Exibir detalhes", "SSE.Views.PrintSettings.textShowGrid": "Mostrar Linhas de Grelha", - "SSE.Views.PrintSettings.textShowHeadings": "Mostrar cabeçalho de linhas e de colunas", + "SSE.Views.PrintSettings.textShowHeadings": "Mostrar títulos de linhas e de colunas", "SSE.Views.PrintSettings.textTitle": "Definições de impressão", "SSE.Views.PrintSettings.textTitlePDF": "Definições de PDF", "SSE.Views.PrintTitlesDialog.textFirstCol": "Primeira coluna", @@ -2758,10 +2820,10 @@ "SSE.Views.PrintWithPreview.txtFitCols": "Ajustar colunas a uma página", "SSE.Views.PrintWithPreview.txtFitPage": "Ajustar folha a uma página", "SSE.Views.PrintWithPreview.txtFitRows": "Ajustar linhas a uma página", - "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Linhas de Grelha e cabeçalhos", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Linhas de grelha e títulos", "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Definições de cabeçalho/rodapé", "SSE.Views.PrintWithPreview.txtIgnore": "Ignorar Área de Impressão", - "SSE.Views.PrintWithPreview.txtLandscape": "Paisagem", + "SSE.Views.PrintWithPreview.txtLandscape": "Horizontal", "SSE.Views.PrintWithPreview.txtLeft": "Esquerda", "SSE.Views.PrintWithPreview.txtMargins": "Margens", "SSE.Views.PrintWithPreview.txtOf": "de {0}", @@ -2769,10 +2831,10 @@ "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Número da página inválido", "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientação da página", "SSE.Views.PrintWithPreview.txtPageSize": "Tamanho da página", - "SSE.Views.PrintWithPreview.txtPortrait": "Retrato", + "SSE.Views.PrintWithPreview.txtPortrait": "Vertical", "SSE.Views.PrintWithPreview.txtPrint": "Imprimir", "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimir linhas de grade", - "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimir cabeçalho de linhas e de colunas", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimir títulos de linhas e de colunas", "SSE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo", "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimir títulos", "SSE.Views.PrintWithPreview.txtRepeat": "Repetir…", @@ -2935,7 +2997,7 @@ "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamanho inicial", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bisel", - "SSE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Baixo", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Tipo de letra", "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Número de colunas", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Tamanho final", @@ -3142,7 +3204,7 @@ "SSE.Views.Statusbar.itemMinimum": "Mínimo", "SSE.Views.Statusbar.itemMove": "Mover", "SSE.Views.Statusbar.itemProtect": "Proteger", - "SSE.Views.Statusbar.itemRename": "Renomear", + "SSE.Views.Statusbar.itemRename": "Mudar nome", "SSE.Views.Statusbar.itemStatus": "A guardar estado", "SSE.Views.Statusbar.itemSum": "Soma", "SSE.Views.Statusbar.itemTabColor": "Cor do separador", @@ -3295,13 +3357,13 @@ "SSE.Views.Toolbar.mniImageFromStorage": "Imagem de um armazenamento", "SSE.Views.Toolbar.mniImageFromUrl": "Imagem de um URL", "SSE.Views.Toolbar.textAddPrintArea": "Adicionar à área de impressão", - "SSE.Views.Toolbar.textAlignBottom": "Alinhar à parte inferior", + "SSE.Views.Toolbar.textAlignBottom": "Alinhar em baixo", "SSE.Views.Toolbar.textAlignCenter": "Alinhar ao centro", "SSE.Views.Toolbar.textAlignJust": "Justificado", "SSE.Views.Toolbar.textAlignLeft": "Alinhar à esquerda", "SSE.Views.Toolbar.textAlignMiddle": "Alinhar ao meio", "SSE.Views.Toolbar.textAlignRight": "Alinhar à direita", - "SSE.Views.Toolbar.textAlignTop": "Alinhar à parte superior", + "SSE.Views.Toolbar.textAlignTop": "Alinhar em cima", "SSE.Views.Toolbar.textAllBorders": "Todas as bordas", "SSE.Views.Toolbar.textAuto": "Automático", "SSE.Views.Toolbar.textAutoColor": "Automático", @@ -3309,7 +3371,7 @@ "SSE.Views.Toolbar.textBordersColor": "Cor do contorno", "SSE.Views.Toolbar.textBordersStyle": "Estilo do contorno", "SSE.Views.Toolbar.textBottom": "Baixo:", - "SSE.Views.Toolbar.textBottomBorders": "Bordas inferiores", + "SSE.Views.Toolbar.textBottomBorders": "Contornos inferiores", "SSE.Views.Toolbar.textCenterBorders": "Bordas verticais interiores", "SSE.Views.Toolbar.textClearPrintArea": "Limpar Área de Impressão", "SSE.Views.Toolbar.textClearRule": "Limpar regras", @@ -3322,6 +3384,7 @@ "SSE.Views.Toolbar.textDiagDownBorder": "Borda inferior diagonal", "SSE.Views.Toolbar.textDiagUpBorder": "Borda superior diagonal", "SSE.Views.Toolbar.textDone": "Concluido", + "SSE.Views.Toolbar.textEditVA": "Editar área visível", "SSE.Views.Toolbar.textEntireCol": "Coluna inteira", "SSE.Views.Toolbar.textEntireRow": "Linha inteira", "SSE.Views.Toolbar.textFewPages": "páginas", @@ -3333,7 +3396,7 @@ "SSE.Views.Toolbar.textInsRight": "Deslocar células para a direita", "SSE.Views.Toolbar.textItalic": "Itálico", "SSE.Views.Toolbar.textItems": "Itens", - "SSE.Views.Toolbar.textLandscape": "Paisagem", + "SSE.Views.Toolbar.textLandscape": "Horizontal", "SSE.Views.Toolbar.textLeft": "Esquerda:", "SSE.Views.Toolbar.textLeftBorders": "Bordas esquerdas", "SSE.Views.Toolbar.textManageRule": "Gerir Regras", @@ -3351,10 +3414,10 @@ "SSE.Views.Toolbar.textOnePage": "página", "SSE.Views.Toolbar.textOutBorders": "Bordas externas", "SSE.Views.Toolbar.textPageMarginsCustom": "Margens personalizadas", - "SSE.Views.Toolbar.textPortrait": "Retrato", + "SSE.Views.Toolbar.textPortrait": "Vertical", "SSE.Views.Toolbar.textPrint": "Imprimir", "SSE.Views.Toolbar.textPrintGridlines": "Imprimir linhas de grade", - "SSE.Views.Toolbar.textPrintHeadings": "Imprimir Cabeçalhos", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimir títulos", "SSE.Views.Toolbar.textPrintOptions": "Definições de impressão", "SSE.Views.Toolbar.textRight": "Direita:", "SSE.Views.Toolbar.textRightBorders": "Bordas direitas", @@ -3386,13 +3449,13 @@ "SSE.Views.Toolbar.textVertical": "Texto vertical", "SSE.Views.Toolbar.textWidth": "Largura", "SSE.Views.Toolbar.textZoom": "Zoom", - "SSE.Views.Toolbar.tipAlignBottom": "Alinhar à parte inferior", + "SSE.Views.Toolbar.tipAlignBottom": "Alinhar em baixo", "SSE.Views.Toolbar.tipAlignCenter": "Alinhar ao centro", "SSE.Views.Toolbar.tipAlignJust": "Justificado", "SSE.Views.Toolbar.tipAlignLeft": "Alinhar à esquerda", "SSE.Views.Toolbar.tipAlignMiddle": "Alinhar ao meio", "SSE.Views.Toolbar.tipAlignRight": "Alinhar à direita", - "SSE.Views.Toolbar.tipAlignTop": "Alinhar à parte superior", + "SSE.Views.Toolbar.tipAlignTop": "Alinhar em cima", "SSE.Views.Toolbar.tipAutofilter": "Classificar e Filtrar", "SSE.Views.Toolbar.tipBack": "Voltar", "SSE.Views.Toolbar.tipBorders": "Bordas", @@ -3451,8 +3514,10 @@ "SSE.Views.Toolbar.tipSendBackward": "Enviar para trás", "SSE.Views.Toolbar.tipSendForward": "Trazer para a frente", "SSE.Views.Toolbar.tipSynchronize": "O documento foi alterado por outro utilizador. Clique para guardar as suas alterações e recarregar o documento.", + "SSE.Views.Toolbar.tipTextFormatting": "Mais ferramentas de formatação de texto", "SSE.Views.Toolbar.tipTextOrientation": "Orientação", "SSE.Views.Toolbar.tipUndo": "Desfazer", + "SSE.Views.Toolbar.tipVisibleArea": "Área visível", "SSE.Views.Toolbar.tipWrap": "Moldar texto", "SSE.Views.Toolbar.txtAccounting": "Contabilidade", "SSE.Views.Toolbar.txtAdditional": "Adicional", @@ -3570,9 +3635,9 @@ "SSE.Views.ViewManagerDlg.textGoTo": "Ir para a vista", "SSE.Views.ViewManagerDlg.textLongName": "Introduza um nome com menos de 128 caracteres.", "SSE.Views.ViewManagerDlg.textNew": "Novo", - "SSE.Views.ViewManagerDlg.textRename": "Renomear", + "SSE.Views.ViewManagerDlg.textRename": "Mudar nome", "SSE.Views.ViewManagerDlg.textRenameError": "O nome da vista não pode estar vazio.", - "SSE.Views.ViewManagerDlg.textRenameLabel": "Renomear vista", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Mudar nome da vista", "SSE.Views.ViewManagerDlg.textViews": "Vistas de folhas", "SSE.Views.ViewManagerDlg.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", "SSE.Views.ViewManagerDlg.txtTitle": "Mostrar gestor de vistas", @@ -3586,7 +3651,7 @@ "SSE.Views.ViewTab.textDefault": "Padrão", "SSE.Views.ViewTab.textFormula": "Barra de Fórmulas", "SSE.Views.ViewTab.textFreezeCol": "Fixar a Primeira Coluna", - "SSE.Views.ViewTab.textFreezeRow": "Fixar a Primeira Linha", + "SSE.Views.ViewTab.textFreezeRow": "Fixar primeira linha", "SSE.Views.ViewTab.textGridlines": "Linhas da grelha", "SSE.Views.ViewTab.textHeadings": "Títulos", "SSE.Views.ViewTab.textInterfaceTheme": "Tema da interface", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 0e3852cf5..77a3ea54a 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -534,6 +534,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Coloană", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alinierea coloanei", "SSE.Controllers.DocumentHolder.txtContains": "conține", + "SSE.Controllers.DocumentHolder.txtCopySuccess": "Link-ul copiat în clipboard", "SSE.Controllers.DocumentHolder.txtDataTableHint": "Returnează celule de date dintr-un tabel sau colonele selectate într-un tabel", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Reducere argument dimensiune", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Eliminare argument", @@ -2022,6 +2023,7 @@ "SSE.Views.DocumentHolder.txtFormula": "Inserare funcție", "SSE.Views.DocumentHolder.txtFraction": "Fracție", "SSE.Views.DocumentHolder.txtGeneral": "General", + "SSE.Views.DocumentHolder.txtGetLink": "Obțineți link-ul către această zonă", "SSE.Views.DocumentHolder.txtGroup": "Grupare", "SSE.Views.DocumentHolder.txtHide": "Ascunde", "SSE.Views.DocumentHolder.txtInsert": "Inserare", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index b284af0d7..e2ef9474d 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -534,6 +534,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Столбец", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Выравнивание столбца", "SSE.Controllers.DocumentHolder.txtContains": "Содержит", + "SSE.Controllers.DocumentHolder.txtCopySuccess": "Ссылка скопирована в буфер обмена", "SSE.Controllers.DocumentHolder.txtDataTableHint": "Возвращает ячейки данных из таблицы или указанных столбцов таблицы", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Уменьшить размер аргумента", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Удалить аргумент", @@ -2022,6 +2023,7 @@ "SSE.Views.DocumentHolder.txtFormula": "Вставить функцию", "SSE.Views.DocumentHolder.txtFraction": "Дробный", "SSE.Views.DocumentHolder.txtGeneral": "Общий", + "SSE.Views.DocumentHolder.txtGetLink": "Получить ссылку на этот диапазон", "SSE.Views.DocumentHolder.txtGroup": "Сгруппировать", "SSE.Views.DocumentHolder.txtHide": "Скрыть", "SSE.Views.DocumentHolder.txtInsert": "Добавить", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 743cf2d5d..380ba126a 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -301,6 +301,7 @@ "Common.Views.PluginDlg.textLoading": "载入中", "Common.Views.Plugins.groupCaption": "插件", "Common.Views.Plugins.strPlugins": "插件", + "Common.Views.Plugins.textClosePanel": "关闭插件", "Common.Views.Plugins.textLoading": "载入中", "Common.Views.Plugins.textStart": "开始", "Common.Views.Plugins.textStop": "停止", From 81ee3235a600928443d0a3d5111c5cace13fde6f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 24 Jun 2022 13:45:26 +0300 Subject: [PATCH 015/285] [Mobile] Update translation --- apps/documenteditor/mobile/locale/ca.json | 4 +- apps/documenteditor/mobile/locale/cs.json | 108 +++--- apps/documenteditor/mobile/locale/fr.json | 4 +- apps/documenteditor/mobile/locale/it.json | 120 +++---- apps/documenteditor/mobile/locale/pt-PT.json | 304 ++++++++-------- apps/documenteditor/mobile/locale/ro.json | 2 +- apps/documenteditor/mobile/locale/ru.json | 2 +- apps/presentationeditor/mobile/locale/cs.json | 20 +- apps/presentationeditor/mobile/locale/en.json | 2 +- apps/presentationeditor/mobile/locale/es.json | 2 +- apps/presentationeditor/mobile/locale/fr.json | 4 +- apps/presentationeditor/mobile/locale/it.json | 20 +- .../mobile/locale/pt-PT.json | 240 ++++++------- apps/presentationeditor/mobile/locale/ro.json | 4 +- apps/presentationeditor/mobile/locale/ru.json | 4 +- apps/presentationeditor/mobile/locale/sl.json | 2 +- apps/presentationeditor/mobile/locale/uk.json | 2 +- apps/presentationeditor/mobile/locale/zh.json | 6 +- apps/spreadsheeteditor/mobile/locale/be.json | 4 +- apps/spreadsheeteditor/mobile/locale/cs.json | 30 +- apps/spreadsheeteditor/mobile/locale/en.json | 4 +- apps/spreadsheeteditor/mobile/locale/fr.json | 4 +- apps/spreadsheeteditor/mobile/locale/it.json | 44 +-- .../mobile/locale/pt-PT.json | 340 +++++++++--------- apps/spreadsheeteditor/mobile/locale/ro.json | 6 +- apps/spreadsheeteditor/mobile/locale/ru.json | 4 +- apps/spreadsheeteditor/mobile/locale/uk.json | 4 +- 27 files changed, 645 insertions(+), 645 deletions(-) diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 0a9e9f17f..0321f8e47 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -70,9 +70,9 @@ "textAcceptAllChanges": "Accepta tots els canvis", "textAddComment": "Afegeix un comentari", "textAddReply": "Afegeix una resposta", - "textAllChangesAcceptedPreview": "S'han acceptat tots els canvis (Previsualitzar)", + "textAllChangesAcceptedPreview": "S'han acceptat tots el canvis (Visualització prèvia)", "textAllChangesEditing": "Tots els canvis (Edició)", - "textAllChangesRejectedPreview": "S'han rebutjat tots els canvis (Previsualitzar)", + "textAllChangesRejectedPreview": "S'han rebutjat tots els canvis (Visualització prèvia)", "textAtLeast": "pel cap baix", "textAuto": "automàtic", "textBack": "Enrere", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index e8ab65893..3e7119eb9 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -3,11 +3,11 @@ "textAbout": "O aplikaci", "textAddress": "Adresa", "textBack": "Zpět", + "textEditor": "Editor dokumentů", "textEmail": "Email", "textPoweredBy": "Poháněno", "textTel": "Telefon", - "textVersion": "Verze", - "textEditor": "Document Editor" + "textVersion": "Verze" }, "Add": { "notcriticalErrorTitle": "Varování", @@ -57,11 +57,11 @@ "textShape": "Obrazec", "textStartAt": "Začít na", "textTable": "Tabulka", + "textTableContents": "Obsah", "textTableSize": "Velikost tabulky", - "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "textTableContents": "Table of Contents", - "textWithBlueLinks": "With Blue Links", - "textWithPageNumbers": "With Page Numbers" + "textWithBlueLinks": "s modrými odkazy", + "textWithPageNumbers": "s číslováním stránek", + "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -197,9 +197,9 @@ "textDoNotShowAgain": "Nezobrazovat znovu", "textNumberingValue": "Hodnota číslování", "textOk": "OK", + "textRefreshEntireTable": "Obnovit celou tabulku", + "textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek", "textRows": "Řádky", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Edit": { @@ -215,6 +215,7 @@ "textAlign": "Zarovnání", "textAllCaps": "Všechno velkými", "textAllowOverlap": "Povolit překrývání", + "textAmountOfLevels": "Počet úrovní", "textApril": "duben", "textAugust": "srpen", "textAuto": "Automaticky", @@ -229,11 +230,16 @@ "textBringToForeground": "Přenést do popředí", "textBullets": "Odrážky", "textBulletsAndNumbers": "Odrážky & Číslování", + "textCancel": "Zrušit", "textCellMargins": "Okraje buňky", + "textCentered": "Vycentrováno", "textChart": "Graf", + "textClassic": "Klasické", "textClose": "Zavřít", "textColor": "Barva", "textContinueFromPreviousSection": "Pokračovat od předchozí sekce", + "textCreateTextStyle": "Vytvořit nový styl textu", + "textCurrent": "Aktuální", "textCustomColor": "Vlastní barva", "textDecember": "prosinec", "textDesign": "Vzhled", @@ -241,11 +247,14 @@ "textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky", "textDisplay": "Zobrazit", "textDistanceFromText": "Vzdálenost od textu", + "textDistinctive": "Odlišný", + "textDone": "Hotovo", "textDoubleStrikethrough": "Dvojité přeškrtnutí", "textEditLink": "Upravit odkaz", "textEffects": "Efekty", "textEmpty": "prázdné", "textEmptyImgUrl": "Musíte upřesnit URL obrázku.", + "textEnterTitleNewStyle": "Vložte název nového stylu", "textFebruary": "únor", "textFill": "Výplň", "textFirstColumn": "První sloupec", @@ -255,6 +264,7 @@ "textFontColors": "Barvy písma", "textFonts": "Styly", "textFooter": "Zápatí", + "textFormal": "Formální", "textFr": "pá", "textHeader": "Záhlaví", "textHeaderRow": "Záhlaví řádků", @@ -270,7 +280,9 @@ "textKeepLinesTogether": "Držet řádky pohromadě", "textKeepWithNext": "Svázat s následujícím", "textLastColumn": "Poslední sloupec", + "textLeader": "Vodítko", "textLetterSpacing": "Mezery mezi písmeny", + "textLevels": "Stupně", "textLineSpacing": "Řádkování", "textLink": "Odkaz", "textLinkSettings": "Nastavení odkazů", @@ -278,9 +290,11 @@ "textMarch": "březen", "textMay": "květen", "textMo": "po", + "textModern": "Moderní", "textMoveBackward": "Jít zpět", "textMoveForward": "Posunout vpřed", "textMoveWithText": "Přesunout s textem", + "textNextParagraphStyle": "Styl následujícího odstavce", "textNone": "Žádné", "textNoStyles": "Žádné styly pro tento typ grafů.", "textNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", @@ -288,84 +302,70 @@ "textNumbers": "Čísla", "textOctober": "říjen", "textOk": "OK", + "textOnline": "Online", "textOpacity": "Průhlednost", "textOptions": "Možnosti", "textOrphanControl": "Kontrola osamocených řádků", "textPageBreakBefore": "Konec stránky před", "textPageNumbering": "Číslování stránek", + "textPageNumbers": "Číslování stránek", "textParagraph": "Odstavec", + "textParagraphStyle": "Styl odstavce", "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", "textPt": "pt", + "textRefresh": "Načíst znovu", + "textRefreshEntireTable": "Obnovit celou tabulku", + "textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek", "textRemoveChart": "Odstranit graf", "textRemoveImage": "Odstranit obrázek", "textRemoveLink": "Odstranit odkaz", "textRemoveShape": "Odstranit obrazec", "textRemoveTable": "Odstranit tabulku", + "textRemoveTableContent": "Odebrat obsah", "textReorder": "Změnit řazení", "textRepeatAsHeaderRow": "Opakujte jako řádek záhlaví", "textReplace": "Nahradit", "textReplaceImage": "Nahradit obrázek", "textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu", + "textRightAlign": "Zarovnat vpravo", "textSa": "so", + "textSameCreatedNewStyle": "Stejné jako vytvořený nový styl", "textScreenTip": "Nápověda", "textSelectObjectToEdit": "Vyberte objekt pro úpravu", "textSendToBackground": "Přesunout do pozadí", "textSeptember": "září", "textSettings": "Nastavení", "textShape": "Obrazec", + "textSimple": "Jednoduché", "textSize": "Velikost", "textSmallCaps": "Malá písmena", "textSpaceBetweenParagraphs": "Mezera mezi odstavci", "textSquare": "Čtvercové", + "textStandard": "Standardní", "textStartAt": "Začít na", "textStrikethrough": "Přeškrtnuté", + "textStructure": "Struktura", "textStyle": "Styl", "textStyleOptions": "Možnosti stylu", + "textStyles": "Styly", "textSu": "ne", "textSubscript": "Dolní index", "textSuperscript": "Horní index", "textTable": "Tabulka", + "textTableOfCont": "Obsah", "textTableOptions": "Možnosti tabulky", "textText": "Text", "textTh": "čt", "textThrough": "Skrz", "textTight": "Těsné", + "textTitle": "Název", "textTopAndBottom": "Nahoře a dole", "textTotalRow": "Součtový řádek", "textTu": "út", "textType": "Typ", "textWe": "st", - "textWrap": "Obtékání", - "textAmountOfLevels": "Amount of Levels", - "textCancel": "Cancel", - "textCentered": "Centered", - "textClassic": "Classic", - "textCreateTextStyle": "Create new text style", - "textCurrent": "Current", - "textDistinctive": "Distinctive", - "textDone": "Done", - "textEnterTitleNewStyle": "Enter title of a new style", - "textFormal": "Formal", - "textLeader": "Leader", - "textLevels": "Levels", - "textModern": "Modern", - "textNextParagraphStyle": "Next paragraph style", - "textOnline": "Online", - "textPageNumbers": "Page Numbers", - "textParagraphStyle": "Paragraph Style", - "textRefresh": "Refresh", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRemoveTableContent": "Remove table of contents", - "textRightAlign": "Right Align", - "textSameCreatedNewStyle": "Same as created new style", - "textSimple": "Simple", - "textStandard": "Standard", - "textStructure": "Structure", - "textStyles": "Styles", - "textTableOfCont": "TOC", - "textTitle": "Title" + "textWrap": "Obtékání" }, "Error": { "convertationTimeoutText": "Vypršel čas konverze.", @@ -380,6 +380,7 @@ "errorDataRange": "Nesprávný datový rozsah.", "errorDefaultMessage": "Kód chyby: %1", "errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Stáhněte dokument pro vytvoření lokální zálohy souboru.", + "errorEmptyTOC": "Začít vytvářet obsah aplikováním stylů pro nadpisy na vybraný text. ", "errorFilePassProtect": "Soubor je zabezpečen heslem a nemůže být otevřen.", "errorFileSizeExceed": "Velikost souboru je větší než limit serveru.
Prosím kontaktujte Vašeho správce.", "errorKeyEncrypt": "Neznámý popisovač klíče", @@ -387,6 +388,7 @@ "errorLoadingFont": "Styly nejsou načteny.
Prosím kontaktujte Vašeho administrátora dokumentových serverů.", "errorMailMergeLoadFile": "Načítání selhalo", "errorMailMergeSaveFile": "Sloučení se nezdařilo.", + "errorNoTOC": "Chybí obsah k aktualizaci. Obsah můžete vložit pomocí záložky Odkazy.", "errorSessionAbsolute": "Platnost relace upravování dokumentu skončila. Načtete stránku znovu.", "errorSessionIdle": "Poslední úprava dokumentu proběhla před dlouhou dobou. Prosím obnovte stránku.", "errorSessionToken": "Připojení k serveru bylo přerušeno. Načtěte prosím stránku znovu.", @@ -405,9 +407,7 @@ "unknownErrorText": "Neznámá chyba.", "uploadImageExtMessage": "Neznámý formát obrázku.", "uploadImageFileCountMessage": "Nenahrány žádné obrázky.", - "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", - "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB." }, "LongActions": { "applyChangesTextText": "Načítání dat...", @@ -529,6 +529,7 @@ "textRemember": "Zapamatovat moji volbu", "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", + "textRequestMacros": "Makro vytváří požadavek na URL. Chcete povolit požadavek k přístupu na %1?", "textYes": "Ano", "titleLicenseExp": "Platnost licence vypršela", "titleServerVersion": "Editor byl aktualizován", @@ -540,8 +541,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." }, "Settings": { "advDRMOptions": "Zabezpečený soubor", @@ -554,6 +554,7 @@ "textApplicationSettings": "Nastavení aplikace", "textAuthor": "Autor", "textBack": "Zpět", + "textBeginningDocument": "Začátek dokumentu", "textBottom": "Dole", "textCancel": "Zrušit", "textCaseSensitive": "Rozlišovat malá a velká písmena", @@ -567,6 +568,7 @@ "textCommentsDisplay": "Zobrazování komentářů", "textCreated": "Vytvořeno", "textCustomSize": "Vlastní velikost", + "textDirection": "Směr", "textDisableAll": "Vypnout vše", "textDisableAllMacrosWithNotification": "Vypnout všechna makra s notifikacemi", "textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez notifikací", @@ -578,10 +580,13 @@ "textDownloadAs": "Stáhnout jako", "textDownloadRtf": "V případě, že soubor uložíte v tomto formátu může dojít ke ztrátě formátování. Opravdu chcete pokračovat?", "textDownloadTxt": "V případě, že soubor uložíte v tomto formátu všechny funkce až na text budou ztraceny. Opravdu chcete pokračovat?", + "textEmptyHeading": "Prázdné záhlaví", + "textEmptyScreens": "V dokumentu nebyly nalezeny žádné nadpisy. Použijte na text styly pro nadpisy, aby se objevily v tabulce obsahu.", "textEnableAll": "Zapnout vše", "textEnableAllMacrosWithoutNotification": "Povolit všechna makra bez notifikací", "textEncoding": "Kódování", "textFastWV": "Rychlé zobrazení stránky", + "textFeedback": "Zpětná vazba a technická podpora", "textFind": "Najít", "textFindAndReplace": "Najít a nahradit", "textFindAndReplaceAll": "Najít a nahradit vše", @@ -594,12 +599,14 @@ "textLastModified": "Naposledy upraveno", "textLastModifiedBy": "Naposledy upravil(a)", "textLeft": "Vlevo", + "textLeftToRight": "Zleva doprava", "textLoading": "Načítání...", "textLocation": "Umístění", "textMacrosSettings": "Nastavení maker", "textMargins": "Okraje", "textMarginsH": "Horní a spodní okraj je příliš velký vzhledem k dané výšce stránky", "textMarginsW": "Okraje vlevo a vpravo jsou příliš velké vzhledem k šířce stránky", + "textNavigation": "Navigace", "textNo": "Ne", "textNoCharacters": "Netisknutelné znaky", "textNoTextFound": "Text nebyl nalezen", @@ -610,6 +617,7 @@ "textPages": "Stránky", "textPageSize": "Velikost stránky", "textParagraphs": "Odstavce", + "textPdfProducer": "Nástroj pro tvorbu PDF", "textPdfTagged": "Označené PDF", "textPdfVer": "Verze PDF", "textPoint": "Bod", @@ -619,7 +627,9 @@ "textReplace": "Nahradit", "textReplaceAll": "Nahradit vše", "textResolvedComments": "Vyřešené komentáře", + "textRestartApplication": "Pro provedení změn restartujete aplikaci", "textRight": "Vpravo", + "textRightToLeft": "Zprava doleva", "textSearch": "Hledat", "textSettings": "Nastavení", "textShowNotification": "Zobrazit notifikace", @@ -659,17 +669,7 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", - "txtScheme9": "Slévárna", - "textBeginningDocument": "Beginning of document", - "textDirection": "Direction", - "textEmptyHeading": "Empty Heading", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", - "textFeedback": "Feedback & Support", - "textLeftToRight": "Left To Right", - "textNavigation": "Navigation", - "textPdfProducer": "PDF Producer", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRightToLeft": "Right To Left" + "txtScheme9": "Slévárna" }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce'. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index ac6060e32..e17fba7c1 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -3,11 +3,11 @@ "textAbout": "À propos", "textAddress": "Adresse", "textBack": "Retour", + "textEditor": "Éditeur de Documents", "textEmail": "E-mail", "textPoweredBy": "Réalisation", "textTel": "Tél.", - "textVersion": "Version", - "textEditor": "Document Editor" + "textVersion": "Version" }, "Add": { "notcriticalErrorTitle": "Avertissement", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 707a87f5d..73e09d377 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -3,11 +3,11 @@ "textAbout": "In riguardo a", "textAddress": "Indirizzo", "textBack": "Indietro", + "textEditor": "Document Editor", "textEmail": "Email", "textPoweredBy": "Sviluppato da", "textTel": "Tel", - "textVersion": "Versione", - "textEditor": "Document Editor" + "textVersion": "Versione" }, "Add": { "notcriticalErrorTitle": "Avvertimento", @@ -57,11 +57,11 @@ "textShape": "Forma", "textStartAt": "Iniziare da", "textTable": "Tabella", + "textTableContents": "Sommario", "textTableSize": "Dimensione di tabella", - "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", - "textTableContents": "Table of Contents", - "textWithBlueLinks": "With Blue Links", - "textWithPageNumbers": "With Page Numbers" + "textWithBlueLinks": "Con link blu", + "textWithPageNumbers": "Con numeri di pagina", + "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -197,9 +197,9 @@ "textDoNotShowAgain": "Non mostrare di nuovo", "textNumberingValue": "Valore di numerazione", "textOk": "OK", + "textRefreshEntireTable": "Aggiorna intera tabella", + "textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina", "textRows": "Righe", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Edit": { @@ -215,6 +215,7 @@ "textAlign": "Allineare", "textAllCaps": "Tutto maiuscolo", "textAllowOverlap": "Consentire sovrapposizione", + "textAmountOfLevels": "Numero di livelli", "textApril": "Aprile", "textAugust": "Agosto", "textAuto": "Auto", @@ -229,11 +230,16 @@ "textBringToForeground": "Portare in primo piano", "textBullets": "Elenchi puntati", "textBulletsAndNumbers": "Puntato e numerato", + "textCancel": "Annulla", "textCellMargins": "Margini di cella", + "textCentered": "Centrato", "textChart": "Grafico", + "textClassic": "Classico", "textClose": "Chiudere", "textColor": "Colore", "textContinueFromPreviousSection": "Continuare dalla sezione precedente", + "textCreateTextStyle": "Crea nuovo stile testo", + "textCurrent": "Attuale", "textCustomColor": "Colore personalizzato", "textDecember": "Dicembre", "textDesign": "Design", @@ -241,11 +247,14 @@ "textDifferentOddAndEvenPages": "Pagine pari e dispari diverse", "textDisplay": "Visualizzare", "textDistanceFromText": "Distanza dal testo", + "textDistinctive": "Distintivo", + "textDone": "Fatto", "textDoubleStrikethrough": "Barrato doppio", "textEditLink": "Modificare link", "textEffects": "Effetti", "textEmpty": "Vuoto", "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", + "textEnterTitleNewStyle": "Inserisci nome di nuovo stile", "textFebruary": "Febbraio", "textFill": "Riempire", "textFirstColumn": "Prima colonna", @@ -255,6 +264,7 @@ "textFontColors": "Colori di carattere", "textFonts": "Caratteri", "textFooter": "Piè di pagina", + "textFormal": "Formale", "textFr": "Ven", "textHeader": "Intestazione", "textHeaderRow": "Riga di intestazione", @@ -270,7 +280,9 @@ "textKeepLinesTogether": "Mantenere le linee insieme", "textKeepWithNext": "Mantenere con il successivo", "textLastColumn": "Ultima colonna", + "textLeader": "Leader", "textLetterSpacing": "Spaziatura delle lettere", + "textLevels": "Livelli", "textLineSpacing": "Interlinea", "textLink": "Collegamento", "textLinkSettings": "Impostazioni di collegamento", @@ -278,9 +290,11 @@ "textMarch": "Marzo", "textMay": "Maggio", "textMo": "Lun", + "textModern": "Moderno", "textMoveBackward": "Spostare indietro", "textMoveForward": "Spostare avanti", "textMoveWithText": "Spostare con testo", + "textNextParagraphStyle": "Stile paragrafo successivo", "textNone": "Nessuno", "textNoStyles": "Nessun stile per questo tipo di grafico.", "textNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", @@ -288,84 +302,70 @@ "textNumbers": "Numeri", "textOctober": "Ottobre", "textOk": "OK", + "textOnline": "In linea", "textOpacity": "Opacità", "textOptions": "Opzioni", "textOrphanControl": "Controllo orfano", "textPageBreakBefore": "Interruzione di pagina davanti", "textPageNumbering": "Numerazione di pagine", + "textPageNumbers": "Numeri di pagina", "textParagraph": "Paragrafo", + "textParagraphStyle": "Stile paragrafo", "textPictureFromLibrary": "Immagine dalla libreria", "textPictureFromURL": "Immagine dall'URL", "textPt": "pt", + "textRefresh": "Aggiorna", + "textRefreshEntireTable": "Aggiorna intera tabella", + "textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina", "textRemoveChart": "Eliminare il grafico", "textRemoveImage": "Eliminare immagine", "textRemoveLink": "Eliminare link", "textRemoveShape": "Eliminare forma", "textRemoveTable": "Eliminare tabella", + "textRemoveTableContent": "Elimina sommario", "textReorder": "Riordinare", "textRepeatAsHeaderRow": "Ripetere come riga di intestazione", "textReplace": "Sostituire", "textReplaceImage": "Sostituire l'immagine", "textResizeToFitContent": "Ridimensionare per adattare il contenuto", + "textRightAlign": "Allinea a destra", "textSa": "Sab", + "textSameCreatedNewStyle": "Come il nuovo stile creato", "textScreenTip": "Suggerimento su schermo", "textSelectObjectToEdit": "Selezionare un oggetto per modificare", "textSendToBackground": "Spostare in secondo piano", "textSeptember": "Settembre", "textSettings": "Impostazioni", "textShape": "Forma", + "textSimple": "Semplice", "textSize": "Dimensione", "textSmallCaps": "Maiuscoletto", "textSpaceBetweenParagraphs": "Spazio tra paragrafi", "textSquare": "Quadrato", + "textStandard": "Standard", "textStartAt": "Iniziare da", "textStrikethrough": "Barrato", + "textStructure": "Struttura", "textStyle": "Stile", "textStyleOptions": "Opzioni di stile", + "textStyles": "Stili", "textSu": "Dom", "textSubscript": "Pedice", "textSuperscript": "Apice", "textTable": "Tabella", + "textTableOfCont": "Indice", "textTableOptions": "Opzioni di tabella", "textText": "Testo", "textTh": "Gio", "textThrough": "Attraverso", "textTight": "Stretto", + "textTitle": "Titolo", "textTopAndBottom": "Sopra e sotto", "textTotalRow": "Riga totale", "textTu": "Mar", "textType": "Tipo", "textWe": "Mer", - "textWrap": "Avvolgere", - "textAmountOfLevels": "Amount of Levels", - "textCancel": "Cancel", - "textCentered": "Centered", - "textClassic": "Classic", - "textCreateTextStyle": "Create new text style", - "textCurrent": "Current", - "textDistinctive": "Distinctive", - "textDone": "Done", - "textEnterTitleNewStyle": "Enter title of a new style", - "textFormal": "Formal", - "textLeader": "Leader", - "textLevels": "Levels", - "textModern": "Modern", - "textNextParagraphStyle": "Next paragraph style", - "textOnline": "Online", - "textPageNumbers": "Page Numbers", - "textParagraphStyle": "Paragraph Style", - "textRefresh": "Refresh", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRemoveTableContent": "Remove table of contents", - "textRightAlign": "Right Align", - "textSameCreatedNewStyle": "Same as created new style", - "textSimple": "Simple", - "textStandard": "Standard", - "textStructure": "Structure", - "textStyles": "Styles", - "textTableOfCont": "TOC", - "textTitle": "Title" + "textWrap": "Avvolgere" }, "Error": { "convertationTimeoutText": "È stato superato il tempo massimo della conversione.", @@ -380,6 +380,7 @@ "errorDataRange": "Intervallo di dati non corretto.", "errorDefaultMessage": "Codice errore: %1", "errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Scarica il documento per salvare il backup del file localmente.", + "errorEmptyTOC": "Inizia a creare un sommario applicando uno stile di intestazione dalla galleria Stili al testo selezionato.", "errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", "errorFileSizeExceed": "La dimensione del file supera il limite del tuo server.
Ti preghiamo di contattare il tuo amministratore.", "errorKeyEncrypt": "Descrittore della chiave sconosciuto", @@ -387,6 +388,7 @@ "errorLoadingFont": "I caratteri non sono stati caricati.
Si prega di contattare l'amministratore di Document Server.", "errorMailMergeLoadFile": "Caricamento fallito", "errorMailMergeSaveFile": "Fusione fallita.", + "errorNoTOC": "Non è presente alcun indice da aggiornare. Puoi inserirne uno dalla scheda Riferimenti.", "errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Ti preghiamo di ricaricare la pagina.", "errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.", "errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.", @@ -405,9 +407,7 @@ "unknownErrorText": "Errore sconosciuto.", "uploadImageExtMessage": "Formato d'immagine sconosciuto.", "uploadImageFileCountMessage": "Nessuna immagine caricata.", - "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", - "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB." }, "LongActions": { "applyChangesTextText": "Caricamento di dati...", @@ -529,6 +529,7 @@ "textRemember": "Ricordare la mia scelta", "textReplaceSkipped": "La sostituzione è stata effettuata. {0} casi sono stati saltati.", "textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}", + "textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?", "textYes": "Sì", "titleLicenseExp": "La licenza è scaduta", "titleServerVersion": "L'editor è stato aggiornato", @@ -540,8 +541,7 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare questo file.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Non hai il permesso di modificare questo file." }, "Settings": { "advDRMOptions": "File protetto", @@ -554,6 +554,7 @@ "textApplicationSettings": "Impostazioni dell'applicazione", "textAuthor": "Autore", "textBack": "Indietro", + "textBeginningDocument": "Inizio del documento", "textBottom": "In basso", "textCancel": "Annullare", "textCaseSensitive": "Sensibile al maiuscolo/minuscolo", @@ -567,6 +568,7 @@ "textCommentsDisplay": "Visualizzazione di commenti", "textCreated": "Creato", "textCustomSize": "Dimensione personalizzata", + "textDirection": "Direzione", "textDisableAll": "Disabilitare tutto", "textDisableAllMacrosWithNotification": "Disattivare tutte le macro con notifica", "textDisableAllMacrosWithoutNotification": "Disattivare tutte le macro senza notifica", @@ -578,9 +580,13 @@ "textDownloadAs": "Scaricare come", "textDownloadRtf": "Se continui a salvare in questo formato, alcune delle formattazioni potrebbero essere persi. Sei sicuro che vuoi proseguire?", "textDownloadTxt": "Se continui a salvare in questo formato, tutte le funzionalità tranne il testo saranno perse. Sei sicuro che vuoi proseguire?", + "textEmptyHeading": "Intestazione vuota", + "textEmptyScreens": "Non ci sono titoli nel documento. Applica uno stile di intestazione al testo in modo che appaia nel sommario.", "textEnableAll": "Attivare tutto", "textEnableAllMacrosWithoutNotification": "Attivare tutte le macro senza notifica", "textEncoding": "Codificazione", + "textFastWV": "Visualizzazione Web veloce", + "textFeedback": "Feedback & Supporto", "textFind": "Trovare", "textFindAndReplace": "Trovare e sostituire", "textFindAndReplaceAll": "Trovare e sostituire tutto", @@ -593,12 +599,15 @@ "textLastModified": "Ultima modifica", "textLastModifiedBy": "Ultima modifica da", "textLeft": "A sinistra", + "textLeftToRight": "Da sinistra a destra", "textLoading": "Caricamento...", "textLocation": "Posizione", "textMacrosSettings": "Impostazioni macro", "textMargins": "Margini", "textMarginsH": "I margini superiore e inferiore sono troppo alti per una determinata altezza di pagina", "textMarginsW": "I margini sinistro e destro sono troppo larghi per una determinata larghezza di pagina", + "textNavigation": "Navigazione", + "textNo": "No", "textNoCharacters": "Caratteri non stampabili", "textNoTextFound": "Testo non trovato", "textOk": "OK", @@ -606,7 +615,11 @@ "textOrientation": "Orientamento", "textOwner": "Proprietario", "textPages": "Pagine", + "textPageSize": "Dimensione pagina", "textParagraphs": "Paragrafi", + "textPdfProducer": "Produttore PDF", + "textPdfTagged": "PDF con tag", + "textPdfVer": "‎Versione PDF‎", "textPoint": "Punto", "textPortrait": "Verticale", "textPrint": "Stampa", @@ -614,7 +627,9 @@ "textReplace": "Sostituire", "textReplaceAll": "Sostituire tutto", "textResolvedComments": "Commenti risolti", + "textRestartApplication": "Riavvia l'applicazione per rendere effettive le modifiche", "textRight": "A destra", + "textRightToLeft": "Da destra a sinistra", "textSearch": "Cercare", "textSettings": "Impostazioni", "textShowNotification": "Mostrare notifica", @@ -628,6 +643,7 @@ "textUnitOfMeasurement": "Unità di misura", "textUploaded": "Caricato", "textWords": "Parole", + "textYes": "Sì", "txtDownloadTxt": "Scaricare TXT", "txtIncorrectPwd": "Password non corretta", "txtOk": "OK", @@ -653,23 +669,7 @@ "txtScheme6": "Concorso", "txtScheme7": "Equità", "txtScheme8": "Flusso", - "txtScheme9": "Fonderia", - "textBeginningDocument": "Beginning of document", - "textDirection": "Direction", - "textEmptyHeading": "Empty Heading", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", - "textFastWV": "Fast Web View", - "textFeedback": "Feedback & Support", - "textLeftToRight": "Left To Right", - "textNavigation": "Navigation", - "textNo": "No", - "textPageSize": "Page Size", - "textPdfProducer": "PDF Producer", - "textPdfTagged": "Tagged PDF", - "textPdfVer": "PDF Version", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRightToLeft": "Right To Left", - "textYes": "Yes" + "txtScheme9": "Fonderia" }, "Toolbar": { "dlgLeaveMsgText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", diff --git a/apps/documenteditor/mobile/locale/pt-PT.json b/apps/documenteditor/mobile/locale/pt-PT.json index cbff81b49..469cd8e68 100644 --- a/apps/documenteditor/mobile/locale/pt-PT.json +++ b/apps/documenteditor/mobile/locale/pt-PT.json @@ -3,11 +3,11 @@ "textAbout": "Acerca", "textAddress": "Endereço", "textBack": "Recuar", + "textEditor": "Editor de documentos", "textEmail": "E-mail", - "textPoweredBy": "Desenvolvido por", + "textPoweredBy": "Disponibilizado por", "textTel": "Tel", - "textVersion": "Versão", - "textEditor": "Document Editor" + "textVersion": "Versão" }, "Add": { "notcriticalErrorTitle": "Aviso", @@ -26,7 +26,7 @@ "textContinuousPage": "Página contínua", "textCurrentPosition": "Posição atual", "textDisplay": "Exibição", - "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", + "textEmptyImgUrl": "Tem que especificar o URL da imagem.", "textEvenPage": "Página par", "textFootnote": "Nota de rodapé", "textFormat": "Formato", @@ -38,11 +38,11 @@ "textLeftBottom": "Esquerda inferior", "textLeftTop": "Esquerda superior", "textLink": "Ligação", - "textLinkSettings": "Definições da ligação", + "textLinkSettings": "Definições de ligação", "textLocation": "Localização", "textNextPage": "Página seguinte", "textOddPage": "Página ímpar", - "textOk": "Ok", + "textOk": "OK", "textOther": "Outros", "textPageBreak": "Quebra de página", "textPageNumber": "Número de página", @@ -57,11 +57,11 @@ "textShape": "Forma", "textStartAt": "Iniciar em", "textTable": "Tabela", + "textTableContents": "Índice remissivo", "textTableSize": "Tamanho da tabela", "textWithBlueLinks": "Com ligações azuis", "textWithPageNumbers": "Com números de página", - "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", - "textTableContents": "Table of Contents" + "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"" }, "Common": { "Collaboration": { @@ -89,7 +89,7 @@ "textContextual": "Não adicionar intervalo entre parágrafos com o esmo estilo", "textDelete": "Eliminar", "textDeleteComment": "Eliminar comentário", - "textDeleted": "Eliminada:", + "textDeleted": "Eliminado:", "textDeleteReply": "Eliminar resposta", "textDisplayMode": "Modo de exibição", "textDone": "Feito", @@ -110,7 +110,7 @@ "textInserted": "Inserida:", "textItalic": "Itálico", "textJustify": "Alinhar justificado", - "textKeepLines": "Manter as linhas juntas", + "textKeepLines": "Manter linhas juntas", "textKeepNext": "Manter com seguinte", "textLeft": "Alinhar à esquerda", "textLineSpacing": "Espaçamento entre linhas:", @@ -127,13 +127,13 @@ "textNot": "Não", "textNoWidow": "Não controlar órfãos", "textNum": "Alterar numeração", - "textOk": "Ok", + "textOk": "OK", "textOriginal": "Original", - "textParaDeleted": "Parágrafo Eliminado", + "textParaDeleted": "Parágrafo eliminado", "textParaFormatted": "Parágrafo formatado", - "textParaInserted": "Parágrafo Inserido", - "textParaMoveFromDown": "Movido para Baixo:", - "textParaMoveFromUp": "Movido para Cima:", + "textParaInserted": "Parágrafo inserido", + "textParaMoveFromDown": "Movido para baixo:", + "textParaMoveFromUp": "Movido para cima:", "textParaMoveTo": "Movido:", "textPosition": "Posição", "textReject": "Rejeitar", @@ -152,12 +152,12 @@ "textStrikeout": "Rasurado", "textSubScript": "Subscrito", "textSuperScript": "Sobrescrito", - "textTableChanged": "As Definições da Tabela foram Alteradas", - "textTableRowsAdd": "Linhas de Tabela Adicionadas", - "textTableRowsDel": "Linhas de Tabela Eliminadas", + "textTableChanged": "Definições da tabela alteradas", + "textTableRowsAdd": "Linhas de tabela adicionadas", + "textTableRowsDel": "Linhas de tabela eliminadas", "textTabs": "Alterar separadores", - "textTrackChanges": "Rastreio de alterações", - "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "textTrackChanges": "Registo de alterações", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de coedição rápida.", "textUnderline": "Sublinhado", "textUsers": "Utilizadores", "textWidow": "Controlo de órfãos" @@ -181,7 +181,7 @@ "menuDeleteTable": "Eliminar tabela", "menuEdit": "Editar", "menuJoinList": "Juntar à lista anterior", - "menuMerge": "Mesclar", + "menuMerge": "Unir", "menuMore": "Mais", "menuOpenLink": "Abrir ligação", "menuReview": "Rever", @@ -196,10 +196,10 @@ "textCopyCutPasteActions": "Ações copiar, cortar e colar", "textDoNotShowAgain": "Não mostrar novamente", "textNumberingValue": "Valor de numeração", - "textOk": "Ok", + "textOk": "OK", + "textRefreshEntireTable": "Recarregar toda a tabela", + "textRefreshPageNumbersOnly": "Recarregar número das páginas", "textRows": "Linhas", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Edit": { @@ -215,9 +215,9 @@ "textAlign": "Alinhar", "textAllCaps": "Tudo em maiúsculas", "textAllowOverlap": "Permitir sobreposição", - "textAmountOfLevels": "Quantidade de níveis", - "textApril": "Abril", - "textAugust": "Agosto", + "textAmountOfLevels": "Número de níveis", + "textApril": "abril", + "textAugust": "agosto", "textAuto": "Automático", "textAutomatic": "Automático", "textBack": "Recuar", @@ -241,7 +241,7 @@ "textCreateTextStyle": "Criar novo estilo de texto", "textCurrent": "Atual", "textCustomColor": "Cor personalizada", - "textDecember": "Dezembro", + "textDecember": "dezembro", "textDesign": "Design", "textDifferentFirstPage": "Primeira página diferente", "textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes", @@ -253,8 +253,9 @@ "textEditLink": "Editar ligação", "textEffects": "Efeitos", "textEmpty": "Vazio", - "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "textFebruary": "Fevereiro", + "textEmptyImgUrl": "Tem que especificar o URL da imagem.", + "textEnterTitleNewStyle": "Introduza o título do novo estilo", + "textFebruary": "fevereiro", "textFill": "Preencher", "textFirstColumn": "Primeira coluna", "textFirstLine": "Primeira linha", @@ -263,8 +264,8 @@ "textFontColors": "Cores do tipo de letra", "textFonts": "Tipos de letra", "textFooter": "Rodapé", - "textFormal": "Formal", - "textFr": "Sex", + "textFormal": "Formato", + "textFr": "sex", "textHeader": "Cabeçalho", "textHeaderRow": "Linha de cabeçalho", "textHighlightColor": "Cor de destaque", @@ -272,11 +273,11 @@ "textImage": "Imagem", "textImageURL": "URL da imagem", "textInFront": "À frente do texto", - "textInline": "Em Linha com o Texto", - "textJanuary": "Janeiro", - "textJuly": "Julho", - "textJune": "Junho", - "textKeepLinesTogether": "Manter as linhas juntas", + "textInline": "Em linha com o texto", + "textJanuary": "janeiro", + "textJuly": "julho", + "textJune": "junho", + "textKeepLinesTogether": "Manter linhas juntas", "textKeepWithNext": "Manter com seguinte", "textLastColumn": "Última coluna", "textLeader": "Guia", @@ -284,50 +285,57 @@ "textLevels": "Níveis", "textLineSpacing": "Espaçamento entre linhas", "textLink": "Ligação", - "textLinkSettings": "Definições da ligação", + "textLinkSettings": "Definições de ligação", "textLinkToPrevious": "Vincular ao anterior", - "textMarch": "Março", - "textMay": "Maio", - "textMo": "Seg", + "textMarch": "março", + "textMay": "maio", + "textMo": "seg", "textModern": "Moderno", "textMoveBackward": "Mover para trás", - "textMoveForward": "Mover para frente", + "textMoveForward": "Mover para a frente", "textMoveWithText": "Mover com texto", "textNextParagraphStyle": "Estilo do parágrafo seguinte", "textNone": "Nenhum", "textNoStyles": "Sem estilos para este tipo de gráficos", "textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", - "textNovember": "Novembro", + "textNovember": "novembro", "textNumbers": "Números", - "textOctober": "Outubro", - "textOk": "Ok", + "textOctober": "outubro", + "textOk": "OK", "textOnline": "Online", "textOpacity": "Opacidade", "textOptions": "Opções", "textOrphanControl": "Controlo de órfãos", "textPageBreakBefore": "Quebra de página antes", "textPageNumbering": "Numeração de páginas", + "textPageNumbers": "Números de página", "textParagraph": "Parágrafo", + "textParagraphStyle": "Estilo de parágrafo", "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem de um URL", "textPt": "pt", - "textRefresh": "Atualizar", + "textRefresh": "Recarregar", + "textRefreshEntireTable": "Recarregar toda a tabela", + "textRefreshPageNumbersOnly": "Recarregar número das páginas", "textRemoveChart": "Remover gráfico", "textRemoveImage": "Remover imagem", "textRemoveLink": "Remover ligação", "textRemoveShape": "Remover forma", "textRemoveTable": "Remover tabela", + "textRemoveTableContent": "Remover índice remissivo", "textReorder": "Reordenar", "textRepeatAsHeaderRow": "Repetir como linha de cabeçalho", "textReplace": "Substituir", "textReplaceImage": "Substituir imagem", "textResizeToFitContent": "Ajustar ao conteúdo", - "textSa": "Sáb", + "textRightAlign": "Alinhar à direita", + "textSa": "sáb", + "textSameCreatedNewStyle": "Igual ao novo estilo criado", "textScreenTip": "Dica no ecrã", - "textSelectObjectToEdit": "Selecionar objeto para editar", - "textSendToBackground": "Enviar para plano de fundo", - "textSeptember": "Setembro", - "textSettings": "Configurações", + "textSelectObjectToEdit": "Selecione o objeto para editar", + "textSendToBackground": "Enviar para segundo plano", + "textSeptember": "setembro", + "textSettings": "Definições", "textShape": "Forma", "textSimple": "Simples", "textSize": "Tamanho", @@ -341,116 +349,108 @@ "textStyle": "Estilo", "textStyleOptions": "Opções de estilo", "textStyles": "Estilos", - "textSu": "Dom", + "textSu": "dom", "textSubscript": "Subscrito", "textSuperscript": "Sobrescrito", "textTable": "Tabela", + "textTableOfCont": "Índice remissivo", "textTableOptions": "Opções da tabela", "textText": "Texto", - "textTh": "Qui", + "textTh": "qui", "textThrough": "Através", "textTight": "Justo", "textTitle": "Título", - "textTopAndBottom": "Parte superior e inferior", + "textTopAndBottom": "Cima e baixo", "textTotalRow": "Total de linhas", - "textTu": "Ter", + "textTu": "ter", "textType": "Tipo", - "textWe": "Qua", - "textWrap": "Moldar", - "textEnterTitleNewStyle": "Enter title of a new style", - "textPageNumbers": "Page Numbers", - "textParagraphStyle": "Paragraph Style", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRemoveTableContent": "Remove table of contents", - "textRightAlign": "Right Align", - "textSameCreatedNewStyle": "Same as created new style", - "textTableOfCont": "TOC" + "textWe": "qua", + "textWrap": "Moldar" }, "Error": { "convertationTimeoutText": "Excedeu o tempo limite de conversão.", - "criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.", + "criticalErrorExtText": "Clique em \"OK\" para voltar à lista de documentos.", "criticalErrorTitle": "Erro", "downloadErrorText": "Falha ao descarregar.", "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", - "errorBadImageUrl": "URL inválido", - "errorConnectToServer": "Não foi possível guardar o documento. Verifique as suas definições de rede ou contacte o administrador.
Ao clicar em Aceitar, poderá descarregar o documento.", + "errorBadImageUrl": "O URL da imagem está incorreto", + "errorConnectToServer": "Não foi possível guardar o documento. Verifique as suas definições de rede ou contacte o administrador.
Ao clicar em OK, poderá descarregar o documento.", "errorDatabaseConnection": "Erro externo.
Erro de ligação à base de dados. Contacte o suporte.", "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", "errorDataRange": "Intervalo de dados inválido.", "errorDefaultMessage": "Código do erro: %1", "errorEditingDownloadas": "Ocorreu um erro ao trabalhar o documento.
Descarregue o documento para guardar uma cópia local.", - "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ", - "errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.
Por favor, contacte o seu administrador.", + "errorEmptyTOC": "Pode criar um índice remissivo aplicando um estilo ao texto selecionado a partir da galeria de estilos.", + "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abrir.", + "errorFileSizeExceed": "O tamanho do ficheiro excede a limite definido pelo servidor.
Por favor, contacte o seu administrador.", "errorKeyEncrypt": "Descritor de chave desconhecido", "errorKeyExpire": "Descritor de chave expirado", "errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", - "errorMailMergeLoadFile": "O carregamento falhou", + "errorMailMergeLoadFile": "Falha ao carregar", "errorMailMergeSaveFile": "Falha ao unir.", - "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.", - "errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.", - "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar 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.", + "errorNoTOC": "Não existem alterações a fazer no índice remissivo. Pode introduzir alterações no separador Referências.", + "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, recarregue a página.", + "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.", "errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", - "errorUserDrop": "O ficheiro não pode ser acedido de momento.", - "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", + "errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.", "notcriticalErrorTitle": "Aviso", "openErrorText": "Ocorreu um erro ao abrir o ficheiro", "saveErrorText": "Ocorreu um erro ao guardar o ficheiro", - "scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", + "scriptLoadError": "A ligação está demasiado lenta e não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", "splitDividerErrorText": "O número de linhas tem que ser um divisor de %1", "splitMaxColsErrorText": "O número de colunas tem que ser inferior a %1", "splitMaxRowsErrorText": "O número de linhas tem que ser inferior a %1", "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", - "uploadImageFileCountMessage": "Nenhuma imagem carregada.", - "uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", - "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + "uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", + "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB." }, "LongActions": { - "applyChangesTextText": "Carregando dados...", - "applyChangesTitleText": "Carregando dados", + "applyChangesTextText": "A carregar dados...", + "applyChangesTitleText": "A carregar dados", "downloadMergeText": "A descarregar...", "downloadMergeTitle": "A descarregar", "downloadTextText": "A descarregar documento...", "downloadTitleText": "A descarregar documento", - "loadFontsTextText": "Carregando dados...", - "loadFontsTitleText": "Carregando dados", - "loadFontTextText": "Carregando dados...", - "loadFontTitleText": "Carregando dados", - "loadImagesTextText": "Carregando imagens...", - "loadImagesTitleText": "Carregando imagens", + "loadFontsTextText": "A carregar dados...", + "loadFontsTitleText": "A carregar dados", + "loadFontTextText": "A carregar dados...", + "loadFontTitleText": "A carregar dados", + "loadImagesTextText": "A carregar imagens...", + "loadImagesTitleText": "A carregar imagens", "loadImageTextText": "Carregando imagem...", - "loadImageTitleText": "Carregando imagem", - "loadingDocumentTextText": "Carregando documento...", - "loadingDocumentTitleText": "Carregando documento", + "loadImageTitleText": "A carregar imagem", + "loadingDocumentTextText": "A carregar documento...", + "loadingDocumentTitleText": "A carregar documento", "mailMergeLoadFileText": "A carregar origem de dados...", "mailMergeLoadFileTitle": "A carregar origem de dados", - "openTextText": "Abrindo documento...", - "openTitleText": "Abrindo documento", - "printTextText": "Imprimindo documento...", - "printTitleText": "Imprimindo documento", + "openTextText": "A abrir documento...", + "openTitleText": "A abrir documento", + "printTextText": "A imprimir documento...", + "printTitleText": "A imprimir documento", "savePreparingText": "A preparar para guardar", - "savePreparingTitle": "A preparar para guardar. Por favor aguarde...", - "saveTextText": "Salvando documento...", - "saveTitleText": "Salvando documento", + "savePreparingTitle": "A preparar para guardar. Aguarde...", + "saveTextText": "A guardar documento...", + "saveTitleText": "A guardar documento", "sendMergeText": "A enviar combinação...", "sendMergeTitle": "A enviar combinação", - "textLoadingDocument": "Carregando documento", - "txtEditingMode": "Definir modo de edição...", - "uploadImageTextText": "Carregando imagem...", - "uploadImageTitleText": "Carregando imagem", - "waitText": "Por favor, aguarde..." + "textLoadingDocument": "A carregar documento", + "txtEditingMode": "Definir modo de edição…", + "uploadImageTextText": "A carregar imagem...", + "uploadImageTitleText": "A carregar imagem", + "waitText": "Aguarde..." }, "Main": { "criticalErrorTitle": "Erro", "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", "errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.", - "errorProcessSaveResult": "Salvamento falhou.", + "errorProcessSaveResult": "Falha ao guardar.", "errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", - "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", + "errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", "leavePageText": "Existem alterações não guardadas. Clique 'Ficar na página' para guardar automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", "notcriticalErrorTitle": "Aviso", "SDK": { @@ -463,11 +463,11 @@ "Current Document": "Documento atual", "Diagram Title": "Título do gráfico", "endnote text": "Texto da nota final", - "Enter a date": "Indique uma data", + "Enter a date": "Introduza uma data", "Error! Bookmark not defined": "Erro! Marcador não definido.", "Error! Main Document Only": "Erro! Apenas documento principal.", "Error! No text of specified style in document": "Erro! Não existe texto com este estilo no documento.", - "Error! Not a valid bookmark self-reference": "Erro! Não é uma auto-referência de marcador válida.", + "Error! Not a valid bookmark self-reference": "Erro! Não é uma autorreferência de marcador válida.", "Even Page ": "Página par", "First Page ": "Primeira página", "Footer": "Rodapé", @@ -485,32 +485,32 @@ "Hyperlink": "Hiperligação", "Index Too Large": "Índice demasiado grande", "Intense Quote": "Citação forte", - "Is Not In Table": "Não é uma tabela", + "Is Not In Table": "Não está na tabela", "List Paragraph": "Parágrafo em lista", "Missing Argument": "Argumento em falta", "Missing Operator": "Operador em falta", "No Spacing": "Sem espaçamento", "No table of contents entries found": "Não existem títulos no documento. Aplique um estilo de título ao texto para que este apareça no índice remissivo.", - "No table of figures entries found": "Não foi encontrada nenhuma entrada no índice de ilustrações.", + "No table of figures entries found": "Não foi encontrada nenhuma entrada no índice de imagens.", "None": "Nenhum", "Normal": "Normal", - "Number Too Large To Format": "Número Demasiado Grande para Formatar", + "Number Too Large To Format": "Número demasiado grande para formatar", "Odd Page ": "Página ímpar", "Quote": "Citação", "Same as Previous": "Igual à anterior", "Series": "Série", "Subtitle": "Subtítulo", - "Syntax Error": "Erro de Sintaxe ", - "Table Index Cannot be Zero": "O Índice da Tabela Não Pode Ser Zero", - "Table of Contents": "Tabela de conteúdos", - "table of figures": "Tabela de figuras", - "The Formula Not In Table": "A Fórmula Não Está na Tabela", + "Syntax Error": "Erro de sintaxe ", + "Table Index Cannot be Zero": "O índice da tabela não pode ser zero", + "Table of Contents": "Índice remissivo", + "table of figures": "Índice de imagens", + "The Formula Not In Table": "Fórmula não está na tabela", "Title": "Título", - "TOC Heading": "Cabeçalho do Índice", + "TOC Heading": "Título do índice remissivo", "Type equation here": "Introduza a equação aqui", - "Undefined Bookmark": "Marcador Não-Definido", - "Unexpected End of Formula": "Fim Inesperado da Fórmula", - "X Axis": "X Eixo XAS", + "Undefined Bookmark": "Marcador indefinido", + "Unexpected End of Formula": "Fim inesperado de fórmula", + "X Axis": "Eixo X", "Y Axis": "Eixo Y", "Your text here": "O seu texto aqui", "Zero Divide": "Divisão por zero" @@ -519,7 +519,7 @@ "textBuyNow": "Visitar website", "textClose": "Fechar", "textContactUs": "Contacte a equipa comercial", - "textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Contacte o nosso departamento de vendas para obter um orçamento.", + "textCustomLoader": "Desculpe mas não tem o direito de mudar o carregador. Contacte o nosso departamento de vendas para obter um orçamento.", "textGuest": "Convidado", "textHasMacros": "O ficheiro contém macros automáticas.
Deseja executar as macros?", "textNo": "Não", @@ -529,15 +529,15 @@ "textRemember": "Memorizar a minha escolha", "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", - "textRequestMacros": "Uma macro faz um pedido de URL. Quer permitir o pedido à %1?", + "textRequestMacros": "Uma macro faz um pedido de URL. Deseja permitir o acesso a %1?", "textYes": "Sim", "titleLicenseExp": "Licença expirada", "titleServerVersion": "Editor atualizado", "titleUpdateVersion": "Versão alterada", "warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.", - "warnLicenseExp": "A sua licença expirou. Por favor, atualize a sua licença e atualize a página.", - "warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.", - "warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .
Por favor contacte o seu administrador para ter acesso total", + "warnLicenseExp": "A sua licença expirou. Por favor, renove a sua licença e atualize a página.", + "warnLicenseLimitedNoAccess": "Licença expirada. Não tem acesso ao editor de documentos. Por favor contacte o administrados do servidor de documentos.", + "warnLicenseLimitedRenewed": "Tem que renovar a sua licença. A edição de documentos está com funcionalidades limitadas.
Contacte o administrador para obter acesso total.", "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", @@ -545,7 +545,7 @@ }, "Settings": { "advDRMOptions": "Ficheiro protegido", - "advDRMPassword": "Senha", + "advDRMPassword": "Palavra-passe", "advTxtOptions": "Escolher opções TXT", "closeButtonText": "Fechar ficheiro", "notcriticalErrorTitle": "Aviso", @@ -555,7 +555,7 @@ "textAuthor": "Autor", "textBack": "Recuar", "textBeginningDocument": "Início do documento", - "textBottom": "Inferior", + "textBottom": "Baixo", "textCancel": "Cancelar", "textCaseSensitive": "Diferenciar maiúsculas/minúsculas", "textCentimeter": "Centímetro", @@ -578,28 +578,29 @@ "textDone": "Feito", "textDownload": "Descarregar", "textDownloadAs": "Descarregar como", - "textDownloadRtf": "Se continuar e guardar neste formato é possível perder alguma formatação.
Tem a certeza de que quer continuar?", - "textDownloadTxt": "Se continuar e guardar neste formato é possível perder alguma formatação.
Tem a certeza de que quer continuar?", + "textDownloadRtf": "Se continuar e guardar neste formato, algumas formatações poderão ser perdidas.
Tem a certeza de que deseja continuar?", + "textDownloadTxt": "Se continuar e guardar neste formato, todas as funcionalidades à exceção do texto serão perdidas.
Tem a certeza de que deseja continuar?", "textEmptyHeading": "Título vazio", + "textEmptyScreens": "Não existem cabeçalhos no documento. Aplique um estilo de cabeçalho ao texto de modo a que este apareça no índice.", "textEnableAll": "Ativar tudo", "textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação", "textEncoding": "Codificação", - "textFastWV": "Visualização rápida da Web", - "textFeedback": "Feedback e Suporte", + "textFastWV": "Visualização rápida na web", + "textFeedback": "Feedback e suporte", "textFind": "Localizar", "textFindAndReplace": "Localizar e substituir", "textFindAndReplaceAll": "Localizar e substituir tudo", "textFormat": "Formato", "textHelp": "Ajuda", - "textHiddenTableBorders": "Ocultar bordas da tabela", + "textHiddenTableBorders": "Ocultar contornos da tabela", "textHighlightResults": "Destacar resultados", "textInch": "Polegada", - "textLandscape": "Paisagem", + "textLandscape": "Horizontal", "textLastModified": "Última modificação", "textLastModifiedBy": "Última modificação por", "textLeft": "Esquerda", "textLeftToRight": "Da esquerda para a direita", - "textLoading": "Carregando...", + "textLoading": "A carregar...", "textLocation": "Localização", "textMacrosSettings": "Definições de macros", "textMargins": "Margens", @@ -609,26 +610,28 @@ "textNo": "Não", "textNoCharacters": "Caracteres não imprimíveis", "textNoTextFound": "Texto não encontrado", - "textOk": "Ok", - "textOpenFile": "Indique a palavra-passe para abrir o ficheiro", + "textOk": "OK", + "textOpenFile": "Introduza a palavra-passe para abrir o ficheiro", "textOrientation": "Orientação", "textOwner": "Proprietário", "textPages": "Páginas", "textPageSize": "Tamanho da página", "textParagraphs": "Parágrafos", + "textPdfProducer": "Produtor do PDF", "textPdfTagged": "PDF marcado", "textPdfVer": "Versão PDF", "textPoint": "Ponto", - "textPortrait": "Retrato", + "textPortrait": "Vertical", "textPrint": "Imprimir", "textReaderMode": "Modo de leitura", "textReplace": "Substituir", "textReplaceAll": "Substituir tudo", "textResolvedComments": "Comentários resolvidos", + "textRestartApplication": "Reinicie a aplicação para aplicar as alterações", "textRight": "Direita", "textRightToLeft": "Da direita para a esquerda", "textSearch": "Pesquisar", - "textSettings": "Configurações", + "textSettings": "Definições", "textShowNotification": "Mostrar notificação", "textSpaces": "Espaços", "textSpellcheck": "Verificação ortográfica", @@ -636,40 +639,37 @@ "textSubject": "Assunto", "textSymbols": "Símbolos", "textTitle": "Título", - "textTop": "Parte superior", + "textTop": "Cima", "textUnitOfMeasurement": "Unidade de medida", "textUploaded": "Carregado", "textWords": "Palavras", "textYes": "Sim", "txtDownloadTxt": "Descarregar TXT", - "txtIncorrectPwd": "A Palavra-passe está incorreta", - "txtOk": "Ok", - "txtProtected": "Assim que introduzir uma palavra-passe e abrir o ficheiro, a palavra-passe atual será redefinida.", - "txtScheme1": "Office", + "txtIncorrectPwd": "A palavra-passe está incorreta", + "txtOk": "OK", + "txtProtected": "Assim que introduzir uma palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta", + "txtScheme1": "Escritório", "txtScheme10": "Mediana", "txtScheme11": "Metro", "txtScheme12": "Módulo", "txtScheme13": "Opulento", - "txtScheme14": "Balcão envidraçado", + "txtScheme14": "Janela saliente", "txtScheme15": "Origem", "txtScheme16": "Papel", "txtScheme17": "Solstício", - "txtScheme18": "Técnica", + "txtScheme18": "Técnico", "txtScheme19": "Viagem", "txtScheme2": "Escala de cinza", "txtScheme20": "Urbano", "txtScheme21": "Verve", - "txtScheme22": "Novo Escritório", + "txtScheme22": "Novo escritório", "txtScheme3": "Ápice", "txtScheme4": "Aspeto", "txtScheme5": "Cívico", "txtScheme6": "Concurso", "txtScheme7": "Equidade", "txtScheme8": "Fluxo", - "txtScheme9": "Fundição", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", - "textPdfProducer": "PDF Producer", - "textRestartApplication": "Please restart the application for the changes to take effect" + "txtScheme9": "Fundição" }, "Toolbar": { "dlgLeaveMsgText": "Existem alterações não guardadas. Clique 'Ficar na página' para guardar automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 85c25be84..f48512ab8 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -200,7 +200,7 @@ "textRefreshEntireTable": "Reîmprospătarea întregului tabel", "textRefreshPageNumbersOnly": "Actualizare numai numere de pagină", "textRows": "Rânduri", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Un clic pe acest link ar putea căuza daune dispozitivului și datelor dvs.
Sunteți sigur că doriți să continuați?" }, "Edit": { "notcriticalErrorTitle": "Avertisment", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 56a7632e8..bd9dbfd87 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -200,7 +200,7 @@ "textRefreshEntireTable": "Обновить целиком", "textRefreshPageNumbersOnly": "Обновить только номера страниц", "textRows": "Строки", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Переход по этой ссылке может нанести вред вашему устройству и данным.
Вы действительно хотите продолжить?" }, "Edit": { "notcriticalErrorTitle": "Внимание", diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 5135755ba..b4ac21984 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -3,11 +3,11 @@ "textAbout": "O aplikaci", "textAddress": "Adresa", "textBack": "Zpět", + "textEditor": "Editor prezentací", "textEmail": "Email", "textPoweredBy": "Poháněno", "textTel": "Telefon", - "textVersion": "Verze", - "textEditor": "Presentation Editor" + "textVersion": "Verze" }, "Common": { "Collaboration": { @@ -116,6 +116,7 @@ "textRemember": "Zapamatovat moji volbu", "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", + "textRequestMacros": "Makro vytváří požadavek na URL. Chcete povolit požadavek k přístupu na %1?", "textYes": "Ano", "titleLicenseExp": "Platnost licence vypršela", "titleServerVersion": "Editor byl aktualizován", @@ -129,8 +130,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." } }, "Error": { @@ -401,6 +401,7 @@ "Settings": { "mniSlideStandard": "Standardní (4:3)", "mniSlideWide": "Širokoúhlý (16:9)", + "notcriticalErrorTitle": "Varování", "textAbout": "O aplikaci", "textAddress": "adresa:", "textApplication": "Aplikace", @@ -423,6 +424,7 @@ "textEmail": "email:", "textEnableAll": "Zapnout vše", "textEnableAllMacrosWithoutNotification": "Povolit všechna makra bez notifikací", + "textFeedback": "Zpětná vazba a technická podpora", "textFind": "Najít", "textFindAndReplace": "Najít a nahradit", "textFindAndReplaceAll": "Najít a nahradit vše", @@ -435,6 +437,7 @@ "textLocation": "Umístění", "textMacrosSettings": "Nastavení maker", "textNoTextFound": "Text nebyl nalezen", + "textOk": "OK", "textOwner": "Vlastník", "textPoint": "Bod", "textPoweredBy": "Poháněno", @@ -444,6 +447,8 @@ "textPrint": "Tisk", "textReplace": "Nahradit", "textReplaceAll": "Nahradit vše", + "textRestartApplication": "Pro provedení změn restartujete aplikaci", + "textRTL": "RTL", "textSearch": "Hledat", "textSettings": "Nastavení", "textShowNotification": "Zobrazit notifikace", @@ -476,12 +481,7 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", - "txtScheme9": "Slévárna", - "notcriticalErrorTitle": "Warning", - "textFeedback": "Feedback & Support", - "textOk": "Ok", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRTL": "RTL" + "txtScheme9": "Slévárna" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index bde8aed36..a5a81e684 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -59,8 +59,8 @@ "textColumns": "Columns", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", "textOk": "Ok", + "textRows": "Rows", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Controller": { diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 0a2d06b68..385865e73 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -116,7 +116,7 @@ "textRemember": "Recordar mi elección", "textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.", "textReplaceSuccess": "Se ha realizado la búsqueda. Ocurrencias reemplazadas: {0}", - "textRequestMacros": "Una macro hace una petición a la URL. ¿Quiere permitir la petición al %1?", + "textRequestMacros": "Una macro realiza una solicitud a la URL. ¿Quiere permitir la solicitud al %1?", "textYes": "Sí", "titleLicenseExp": "Licencia ha expirado", "titleServerVersion": "Editor ha sido actualizado", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index ac5c0ab28..8870643ec 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -3,11 +3,11 @@ "textAbout": "À propos", "textAddress": "Adresse", "textBack": "Retour", + "textEditor": "Éditeur de Présentation", "textEmail": "E-mail", "textPoweredBy": "Réalisation", "textTel": "Tél.", - "textVersion": "Version", - "textEditor": "Presentation Editor" + "textVersion": "Version" }, "Common": { "Collaboration": { diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 91385a0fd..0c0ae3007 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -3,11 +3,11 @@ "textAbout": "In riguardo a", "textAddress": "Indirizzo", "textBack": "Indietro", + "textEditor": "Presentation Editor", "textEmail": "Email", "textPoweredBy": "Sviluppato da", "textTel": "Tel.", - "textVersion": "Versione", - "textEditor": "Presentation Editor" + "textVersion": "Versione" }, "Common": { "Collaboration": { @@ -116,6 +116,7 @@ "textRemember": "Ricordare la mia scelta", "textReplaceSkipped": "La sostituzione è stata effettuata. {0} casi sono stati saltati.", "textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}", + "textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?", "textYes": "Sì", "titleLicenseExp": "La licenza è scaduta", "titleServerVersion": "L'editor è stato aggiornato", @@ -129,8 +130,7 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare il file.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Non hai il permesso di modificare il file." } }, "Error": { @@ -401,6 +401,7 @@ "Settings": { "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Schermo panoramico (16:9)", + "notcriticalErrorTitle": "Avviso", "textAbout": "In riguardo a", "textAddress": "indirizzo: ", "textApplication": "Applicazione", @@ -423,6 +424,7 @@ "textEmail": "email: ", "textEnableAll": "Attivare tutto", "textEnableAllMacrosWithoutNotification": "Attivare tutte le macro senza notifica", + "textFeedback": "Feedback & Supporto", "textFind": "Trovare", "textFindAndReplace": "Trovare e sostituire", "textFindAndReplaceAll": "Trovare e sostituire tutto", @@ -435,6 +437,7 @@ "textLocation": "Posizione", "textMacrosSettings": "Impostazioni macro", "textNoTextFound": "Testo non trovato", + "textOk": "OK", "textOwner": "Proprietario", "textPoint": "Punto", "textPoweredBy": "Sviluppato da", @@ -444,6 +447,8 @@ "textPrint": "Stampare", "textReplace": "Sostituire", "textReplaceAll": "Sostituire tutto", + "textRestartApplication": "Riavvia l'applicazione per rendere effettive le modifiche", + "textRTL": "Da destra a sinistra", "textSearch": "Cercare", "textSettings": "Impostazioni", "textShowNotification": "Mostrare notifica", @@ -476,12 +481,7 @@ "txtScheme6": "Concorso", "txtScheme7": "Equità", "txtScheme8": "Flusso", - "txtScheme9": "Fonderia", - "notcriticalErrorTitle": "Warning", - "textFeedback": "Feedback & Support", - "textOk": "Ok", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRTL": "RTL" + "txtScheme9": "Fonderia" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/pt-PT.json b/apps/presentationeditor/mobile/locale/pt-PT.json index feda6697a..dc883c8d1 100644 --- a/apps/presentationeditor/mobile/locale/pt-PT.json +++ b/apps/presentationeditor/mobile/locale/pt-PT.json @@ -3,24 +3,24 @@ "textAbout": "Acerca", "textAddress": "Endereço", "textBack": "Recuar", - "textEmail": "Email", - "textPoweredBy": "Desenvolvido por", + "textEditor": "Editor de apresentações", + "textEmail": "E-mail", + "textPoweredBy": "Disponibilizado por", "textTel": "Tel", - "textVersion": "Versão", - "textEditor": "Presentation Editor" + "textVersion": "Versão" }, "Common": { "Collaboration": { "notcriticalErrorTitle": "Aviso", "textAddComment": "Adicionar comentário", "textAddReply": "Adicionar resposta", - "textBack": "Voltar", + "textBack": "Recuar", "textCancel": "Cancelar", "textCollaboration": "Colaboração", "textComments": "Comentários", "textDeleteComment": "Eliminar comentário", "textDeleteReply": "Eliminar resposta", - "textDone": "Concluído", + "textDone": "Feito", "textEdit": "Editar", "textEditComment": "Editar comentário", "textEditReply": "Editar resposta", @@ -28,10 +28,10 @@ "textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?", "textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?", "textNoComments": "Este documento não contém comentários", - "textOk": "Ok", + "textOk": "OK", "textReopen": "Reabrir", "textResolve": "Resolver", - "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de coedição rápida.", "textUsers": "Utilizadores" }, "HighlightColorPalette": { @@ -51,13 +51,13 @@ "menuDelete": "Eliminar", "menuDeleteTable": "Eliminar tabela", "menuEdit": "Editar", - "menuMerge": "Mesclar", + "menuMerge": "Unir", "menuMore": "Mais", "menuOpenLink": "Abrir ligação", "menuSplit": "Dividir", "menuViewComment": "Ver comentário", "textColumns": "Colunas", - "textCopyCutPasteActions": "Ações copiar, cortar e colar", + "textCopyCutPasteActions": "Ações de copiar, cortar e colar", "textDoNotShowAgain": "Não mostrar novamente", "textRows": "Linhas", "textOk": "Ok", @@ -66,28 +66,28 @@ "Controller": { "Main": { "advDRMOptions": "Ficheiro protegido", - "advDRMPassword": "Senha", + "advDRMPassword": "Palavra-passe", "closeButtonText": "Fechar ficheiro", "criticalErrorTitle": "Erro", "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", "errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.", "errorProcessSaveResult": "Falha ao guardar.", "errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", - "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", - "leavePageText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", + "leavePageText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", "notcriticalErrorTitle": "Aviso", "SDK": { "Chart": "Gráfico", "Click to add first slide": "Clique para adicionar o primeiro diapositivo", "Click to add notes": "Clique para adicionar notas", "ClipArt": "Clip Art", - "Date and time": "Data e Hora", + "Date and time": "Data e hora", "Diagram": "Diagrama", "Diagram Title": "Título do gráfico", "Footer": "Rodapé", "Header": "Cabeçalho", "Image": "Imagem", - "Loading": "Carregamento", + "Loading": "A carregar", "Media": "Multimédia", "None": "Nenhum", "Picture": "Imagem", @@ -97,36 +97,36 @@ "Slide text": "Texto do diapositivo", "Slide title": "Título do diapositivo", "Table": "Tabela", - "X Axis": "X Eixo XAS", + "X Axis": "Eixo X", "Y Axis": "Eixo Y", "Your text here": "O seu texto aqui" }, "textAnonymous": "Anónimo", - "textBuyNow": "Visitar website", + "textBuyNow": "Visitar site", "textClose": "Fechar", "textContactUs": "Contacte a equipa comercial", - "textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.", - "textGuest": "Visitante", + "textCustomLoader": "Desculpe mas não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.", + "textGuest": "Convidado", "textHasMacros": "O ficheiro contém macros automáticas.
Deseja executar as macros?", "textNo": "Não", - "textNoLicenseTitle": "Limite de licença atingido", + "textNoLicenseTitle": "Atingiu o limite da licença", "textNoTextFound": "Texto não encontrado", "textOpenFile": "Introduza a palavra-passe para abrir o ficheiro", "textPaidFeature": "Funcionalidade paga", "textRemember": "Memorizar a minha escolha", "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", - "textRequestMacros": "Uma macro faz um pedido de URL. Quer permitir o pedido à %1?", + "textRequestMacros": "Uma macro faz um pedido de URL. Deseja permitir o acesso a %1?", "textYes": "Sim", "titleLicenseExp": "Licença expirada", "titleServerVersion": "Editor atualizado", "titleUpdateVersion": "Versão alterada", - "txtIncorrectPwd": "A Palavra-passe está incorreta", + "txtIncorrectPwd": "A palavra-passe está incorreta", "txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta", "warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.", - "warnLicenseExp": "A sua licença expirou. Por favor, atualize-a e atualize a página.", + "warnLicenseExp": "A sua licença expirou. Por favor, renove-a e recarregue a página.", "warnLicenseLimitedNoAccess": "A licença expirou. Não tem acesso à funcionalidade de edição de documentos. Por favor contacte o seu administrador.", - "warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .
Por favor contacte o seu administrador para ter acesso total", + "warnLicenseLimitedRenewed": "Tem que renovar a sua licença. A edição de documentos está com funcionalidades limitadas.
Contacte o administrador para obter acesso total.", "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", @@ -134,76 +134,76 @@ } }, "Error": { - "convertationTimeoutText": "Tempo limite de conversão excedido.", - "criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.", + "convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "criticalErrorExtText": "Clique em \"OK\" para voltar à lista de documentos.", "criticalErrorTitle": "Erro", "downloadErrorText": "Falha ao descarregar.", "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", "errorBadImageUrl": "O URL da imagem está incorreto", - "errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador.
Ao clicar no botão 'OK', será solicitado a descarregar o documento.", + "errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador.
Ao clicar no botão 'OK', será solicitado a descarregar o documento.", "errorDatabaseConnection": "Erro externo.
Erro de ligação à base de dados. Contacte o suporte.", "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", "errorDataRange": "Intervalo de dados incorreto.", "errorDefaultMessage": "Código de erro: %1", - "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.", - "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ", - "errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.
Por favor, contacte o seu administrador para obter mais informações.", + "errorEditingDownloadas": "Ocorreu um erro ao trabalhar com o documento.
Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.", + "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abrir.", + "errorFileSizeExceed": "O tamanho do ficheiro excede o limitação permitido pelo servidor.
Por favor, contacte o seu administrador.", "errorKeyEncrypt": "Descritor de chave desconhecido", "errorKeyExpire": "Descritor de chave expirado", "errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", - "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.", - "errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.", - "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar 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.", + "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, recarregue a página.", + "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.", "errorUpdateVersionOnDisconnect": "A ligação com a Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar a trabalhar, descarregue o ficheiro ou copie o seu conteúdo para garantir que nada seja perdido e depois recarregue esta página.", - "errorUserDrop": "O arquivo não pode ser acessado agora.", - "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", - "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.", + "errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", + "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
possível descarregar ou imprimir até que a ligação seja restaurada e a página recarregada.", "notcriticalErrorTitle": "Aviso", "openErrorText": "Ocorreu um erro ao abrir o ficheiro", "saveErrorText": "Ocorreu um erro ao guardar o ficheiro", - "scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", + "scriptLoadError": "A ligação está demasiado lenta e não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", "splitDividerErrorText": "O número de linhas tem que ser um divisor de %1", "splitMaxColsErrorText": "O número de colunas tem que ser inferior a %1", "splitMaxRowsErrorText": "O número de linhas tem que ser inferior a %1", "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", - "uploadImageFileCountMessage": "Nenhuma imagem carregada.", - "uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB." + "uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", + "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB." }, "LongActions": { - "applyChangesTextText": "Carregando dados...", - "applyChangesTitleText": "Carregando dados", + "applyChangesTextText": "A carregar dados...", + "applyChangesTitleText": "A carregar dados", "downloadTextText": "A descarregar documento...", "downloadTitleText": "A descarregar documento", - "loadFontsTextText": "Carregando dados...", - "loadFontsTitleText": "Carregando dados", - "loadFontTextText": "Carregando dados...", - "loadFontTitleText": "Carregando dados", - "loadImagesTextText": "Carregando imagens...", - "loadImagesTitleText": "Carregando imagens", - "loadImageTextText": "Carregando imagem...", - "loadImageTitleText": "Carregando imagem", - "loadingDocumentTextText": "Carregando documento...", - "loadingDocumentTitleText": "Carregando documento", - "loadThemeTextText": "Carregando temas...", - "loadThemeTitleText": "Carregando tema", - "openTextText": "Abrindo documento...", - "openTitleText": "Abrindo documento", - "printTextText": "Imprimindo documento...", - "printTitleText": "Imprimindo documento", + "loadFontsTextText": "A carregar dados...", + "loadFontsTitleText": "A carregar dados", + "loadFontTextText": "A carregar dados...", + "loadFontTitleText": "A carregar dados", + "loadImagesTextText": "A carregar imagens...", + "loadImagesTitleText": "A carregar imagens", + "loadImageTextText": "A carregar imagem...", + "loadImageTitleText": "A carregar imagem", + "loadingDocumentTextText": "A carregar documento...", + "loadingDocumentTitleText": "A carregar documento", + "loadThemeTextText": "A carregar tema...", + "loadThemeTitleText": "A carregar tema", + "openTextText": "A abrir documento...", + "openTitleText": "A abrir documento", + "printTextText": "A imprimir documento...", + "printTitleText": "A imprimir documento", "savePreparingText": "A preparar para guardar", - "savePreparingTitle": "A preparar para guardar. Aguarde...", + "savePreparingTitle": "A preparar para guardar. Por favor aguarde...", "saveTextText": "A guardar documento...", "saveTitleText": "A guardar documento", - "textLoadingDocument": "Carregando documento", - "txtEditingMode": "Definir modo de edição...", - "uploadImageTextText": "Carregando imagem...", - "uploadImageTitleText": "Carregando imagem", - "waitText": "Por favor aguarde..." + "textLoadingDocument": "A carregar documento", + "txtEditingMode": "Definir modo de edição…", + "uploadImageTextText": "A carregar imagem...", + "uploadImageTitleText": "A carregar imagem", + "waitText": "Aguarde…" }, "Toolbar": { - "dlgLeaveMsgText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "dlgLeaveMsgText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", "dlgLeaveTitleText": "Saiu da aplicação", "leaveButtonText": "Sair da página", "stayButtonText": "Ficar na página" @@ -213,13 +213,13 @@ "notcriticalErrorTitle": "Aviso", "textAddLink": "Adicionar ligação", "textAddress": "Endereço", - "textBack": "Voltar", + "textBack": "Recuar", "textCancel": "Cancelar", "textColumns": "Colunas", "textComment": "Comentário", "textDefault": "Texto selecionado", - "textDisplay": "Mostrar", - "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textDisplay": "Exibição", + "textEmptyImgUrl": "Tem que especificar o URL da imagem.", "textExternalLink": "Ligação externa", "textFirstSlide": "Primeiro diapositivo", "textImage": "Imagem", @@ -232,7 +232,7 @@ "textLinkTo": "Ligação a", "textLinkType": "Tipo de ligação", "textNextSlide": "Diapositivo seguinte", - "textOk": "Ok", + "textOk": "OK", "textOther": "Outros", "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem de um URL", @@ -249,64 +249,64 @@ }, "Edit": { "notcriticalErrorTitle": "Aviso", - "textActualSize": "Tamanho atual", + "textActualSize": "Tamanho real", "textAddCustomColor": "Adicionar cor personalizada", "textAdditional": "Adicional", "textAdditionalFormatting": "Formatação adicional", "textAddress": "Endereço", "textAfter": "Depois", "textAlign": "Alinhar", - "textAlignBottom": "Alinhar à parte inferior", + "textAlignBottom": "Alinhar em baixo", "textAlignCenter": "Alinhar ao centro", "textAlignLeft": "Alinhar à esquerda", - "textAlignMiddle": "Alinhar ao meio", + "textAlignMiddle": "Alinhar ao centro", "textAlignRight": "Alinhar à direita", - "textAlignTop": "Alinhar à parte superior", + "textAlignTop": "Alinhar em cima", "textAllCaps": "Tudo em maiúsculas", "textApplyAll": "Aplicar a todos os diapositivos", "textAuto": "Automático", "textAutomatic": "Automático", - "textBack": "Voltar", + "textBack": "Recuar", "textBandedColumn": "Diferenciação de colunas", "textBandedRow": "Diferenciação de linhas", "textBefore": "Antes", - "textBlack": "Através preto", - "textBorder": "Borda", - "textBottom": "Inferior", - "textBottomLeft": "Inferior esquerdo", - "textBottomRight": "Inferior direito", + "textBlack": "Através do preto", + "textBorder": "Contorno", + "textBottom": "Baixo", + "textBottomLeft": "Esquerda inferior", + "textBottomRight": "Direita inferior", "textBringToForeground": "Trazer para primeiro plano", - "textBullets": "Marcadores", + "textBullets": "Marcas", "textBulletsAndNumbers": "Marcas e numeração", - "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCaseSensitive": "Diferenciar maiúsculas/minúsculas", "textCellMargins": "Margens da célula", "textChart": "Gráfico", "textClock": "Relógio", - "textClockwise": "Sentido horário", + "textClockwise": "Para a direita", "textColor": "Cor", - "textCounterclockwise": "Sentido anti-horário", - "textCover": "Capa", + "textCounterclockwise": "Para a esquerda", + "textCover": "Folha de rosto", "textCustomColor": "Cor personalizada", "textDefault": "Texto selecionado", "textDelay": "Atraso", "textDeleteSlide": "Eliminar diapositivo", "textDesign": "Design", - "textDisplay": "Mostrar", - "textDistanceFromText": "Distância do texto", + "textDisplay": "Exibição", + "textDistanceFromText": "Distância a partir do texto", "textDistributeHorizontally": "Distribuir horizontalmente", "textDistributeVertically": "Distribuir verticalmente", - "textDone": "Concluído", - "textDoubleStrikethrough": "Duplo rasurado", + "textDone": "Feito", + "textDoubleStrikethrough": "Rasurado duplo", "textDuplicateSlide": "Duplicar diapositivo", "textDuration": "Duração", "textEditLink": "Editar ligação", "textEffect": "Efeito", "textEffects": "Efeitos", - "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textEmptyImgUrl": "Tem que especificar o URL da imagem.", "textExternalLink": "Ligação externa", - "textFade": "Esmaecer", + "textFade": "Desvanecimento", "textFill": "Preencher", - "textFinalMessage": "Fim da pré-visualização de slide. Clique para sair.", + "textFinalMessage": "Fim da pré-visualização. Clique para sair.", "textFind": "Localizar", "textFindAndReplace": "Localizar e substituir", "textFirstColumn": "Primeira coluna", @@ -335,14 +335,14 @@ "textLinkTo": "Ligação a", "textLinkType": "Tipo de ligação", "textMoveBackward": "Mover para trás", - "textMoveForward": "Mover para frente", + "textMoveForward": "Mover para a frente", "textNextSlide": "Diapositivo seguinte", "textNone": "Nenhum", "textNoStyles": "Sem estilos para este tipo de gráficos.", "textNoTextFound": "Texto não encontrado", "textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", "textNumbers": "Números", - "textOk": "Ok", + "textOk": "OK", "textOpacity": "Opacidade", "textOptions": "Opções", "textPictureFromLibrary": "Imagem da biblioteca", @@ -363,8 +363,8 @@ "textScreenTip": "Dica no ecrã", "textSearch": "Pesquisar", "textSec": "s", - "textSelectObjectToEdit": "Selecionar objeto para editar", - "textSendToBackground": "Enviar para plano de fundo", + "textSelectObjectToEdit": "Selecione o objeto para editar", + "textSendToBackground": "Enviar para segundo plano", "textShape": "Forma", "textSize": "Tamanho", "textSlide": "Diapositivo", @@ -382,21 +382,21 @@ "textTable": "Tabela", "textText": "Texto", "textTheme": "Tema", - "textTop": "Parte superior", - "textTopLeft": "Parte superior esquerda", - "textTopRight": "Parte superior direita", + "textTop": "Cima", + "textTopLeft": "Superior esquerda", + "textTopRight": "Superior direita", "textTotalRow": "Total de linhas", "textTransitions": "Transições", "textType": "Tipo", "textUnCover": "Descobrir", "textVerticalIn": "Vertical para dentro", "textVerticalOut": "Vertical para fora", - "textWedge": "Triangular", - "textWipe": "Revelar", - "textZoom": "Zoom", + "textWedge": "Cunha", + "textWipe": "Limpar", + "textZoom": "Ampliação", "textZoomIn": "Ampliar", "textZoomOut": "Reduzir", - "textZoomRotate": "Zoom e Rotação" + "textZoomRotate": "Ampliação e rotação" }, "Settings": { "mniSlideStandard": "Padrão (4:3)", @@ -407,24 +407,24 @@ "textApplication": "Aplicação", "textApplicationSettings": "Definições da aplicação", "textAuthor": "Autor", - "textBack": "Voltar", - "textCaseSensitive": "Maiúsculas e Minúsculas", + "textBack": "Recuar", + "textCaseSensitive": "Diferenciar maiúsculas/minúsculas", "textCentimeter": "Centímetro", "textCollaboration": "Colaboração", "textColorSchemes": "Esquemas de cor", "textComment": "Comentário", "textCreated": "Criado", - "textDarkTheme": "Tema Escuro", + "textDarkTheme": "Tema escuro", "textDisableAll": "Desativar tudo", "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", - "textDone": "Concluído", + "textDone": "Feito", "textDownload": "Descarregar", - "textDownloadAs": "Descarregar como...", + "textDownloadAs": "Descarregar como…", "textEmail": "e-mail:", "textEnableAll": "Ativar tudo", "textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação", - "textFeedback": "Feedback e Suporte", + "textFeedback": "Feedback e suporte", "textFind": "Localizar", "textFindAndReplace": "Localizar e substituir", "textFindAndReplaceAll": "Localizar e substituir tudo", @@ -433,24 +433,24 @@ "textInch": "Polegada", "textLastModified": "Última modificação", "textLastModifiedBy": "Última modificação por", - "textLoading": "Carregando...", + "textLoading": "A carregar...", "textLocation": "Localização", "textMacrosSettings": "Definições de macros", "textNoTextFound": "Texto não encontrado", - "textOk": "Ok", + "textOk": "OK", "textOwner": "Proprietário", "textPoint": "Ponto", - "textPoweredBy": "Desenvolvido por", - "textPresentationInfo": "Informação da Apresentação", + "textPoweredBy": "Disponibilizado por", + "textPresentationInfo": "Informação da apresentação", "textPresentationSettings": "Definições da apresentação", - "textPresentationTitle": "Título da Apresentação", + "textPresentationTitle": "Título da apresentação", "textPrint": "Imprimir", "textReplace": "Substituir", "textReplaceAll": "Substituir tudo", - "textRestartApplication": "Por favor reinicie o pedido para que as alterações tenham efeito", + "textRestartApplication": "Reinicie a aplicação para aplicar as alterações", "textRTL": "RTL", "textSearch": "Pesquisar", - "textSettings": "Configurações", + "textSettings": "Definições", "textShowNotification": "Mostrar notificação", "textSlideSize": "Tamanho do diapositivo", "textSpellcheck": "Verificação ortográfica", @@ -460,23 +460,23 @@ "textUnitOfMeasurement": "Unidade de medida", "textUploaded": "Carregado", "textVersion": "Versão", - "txtScheme1": "Office", + "txtScheme1": "Escritório", "txtScheme10": "Mediana", "txtScheme11": "Metro", "txtScheme12": "Módulo", "txtScheme13": "Opulento", - "txtScheme14": "Balcão envidraçado", + "txtScheme14": "Janela saliente", "txtScheme15": "Origem", "txtScheme16": "Papel", "txtScheme17": "Solstício", - "txtScheme18": "Técnica", + "txtScheme18": "Técnico", "txtScheme19": "Viagem", "txtScheme2": "Escala de cinza", "txtScheme20": "Urbano", "txtScheme21": "Verve", - "txtScheme22": "Novo Escritório", + "txtScheme22": "Novo escritório", "txtScheme3": "Ápice", - "txtScheme4": "Aspecto", + "txtScheme4": "Aspeto", "txtScheme5": "Cívico", "txtScheme6": "Concurso", "txtScheme7": "Equidade", diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index ab5096aa2..5187a4ced 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -59,9 +59,9 @@ "textColumns": "Coloane", "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", "textDoNotShowAgain": "Nu mai afișa", + "textOk": "OK", "textRows": "Rânduri", - "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Un clic pe acest link ar putea căuza daune dispozitivului și datelor dvs.
Sunteți sigur că doriți să continuați?" }, "Controller": { "Main": { diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index b383835c1..83cd5346d 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -59,9 +59,9 @@ "textColumns": "Столбцы", "textCopyCutPasteActions": "Операции копирования, вырезания и вставки", "textDoNotShowAgain": "Больше не показывать", - "textRows": "Строки", "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "textRows": "Строки", + "txtWarnUrl": "Переход по этой ссылке может нанести вред вашему устройству и данным.
Вы действительно хотите продолжить?" }, "Controller": { "Main": { diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index c0e68ef67..b181fc907 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -59,8 +59,8 @@ "menuViewComment": "View Comment", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", "textOk": "Ok", + "textRows": "Rows", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "View": { diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 9c9ce558d..19a4b7f1f 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -59,8 +59,8 @@ "textColumns": "Columns", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", "textOk": "Ok", + "textRows": "Rows", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Controller": { diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index f8b013217..01d1baddb 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -70,7 +70,7 @@ "closeButtonText": "关闭文件", "criticalErrorTitle": "错误", "errorAccessDeny": "你正要执行一个你没有权限的操作
恳请你联系你的管理员。", - "errorOpensource": "在使用免费社区版本的情况下,你只能查看打开的文件。要想使用移动网上编辑器功能,你需要持有付费许可证。", + "errorOpensource": "在使用免费社区版本的情况下,您只能查看打开的文件。要想使用移动网上编辑器功能,您需要持有付费许可证。", "errorProcessSaveResult": "保存失败", "errorServerVersion": "编辑器版本已完成更新。为应用这些更改,该页将要刷新。", "errorUpdateVersion": "文件版本发生改变。该页将要刷新。", @@ -116,7 +116,7 @@ "textRemember": "记住我的选择", "textReplaceSkipped": "已更换。 {0}次跳过。", "textReplaceSuccess": "搜索已完成。更换次数:{0}", - "textRequestMacros": "宏发起一个请求至URL。你是否允许请求到%1?", + "textRequestMacros": "宏发起一个请求至URL。您是否允许请求到%1?", "textYes": "是", "titleLicenseExp": "许可证过期", "titleServerVersion": "编辑器已更新", @@ -198,7 +198,7 @@ "saveTitleText": "保存文件", "textLoadingDocument": "文件加载中…", "txtEditingMode": "设置编辑模式..", - "uploadImageTextText": "上传图片...", + "uploadImageTextText": "图片上传中...", "uploadImageTitleText": "图片上传中", "waitText": "请稍候..." }, diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 028159204..f6feee605 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -63,9 +63,9 @@ "notcriticalErrorTitle": "Warning", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?", "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?" }, "Controller": { "Main": { diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 50dbefcd2..864f9a691 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -3,11 +3,11 @@ "textAbout": "O aplikaci", "textAddress": "Adresa", "textBack": "Zpět", + "textEditor": "Tabulkový editor", "textEmail": "Email", "textPoweredBy": "Poháněno", "textTel": "Telefon", - "textVersion": "Verze", - "textEditor": "Spreadsheet Editor" + "textVersion": "Verze" }, "Common": { "Collaboration": { @@ -154,6 +154,7 @@ "textRemember": "Zapamatovat moji volbu", "textReplaceSkipped": "Nahrazení bylo provedeno. {0} výskytů bylo přeskočeno.", "textReplaceSuccess": "Hledání bylo dokončeno. Nahrazeno výskytů: {0}", + "textRequestMacros": "Makro vytváří požadavek na URL. Chcete povolit požadavek k přístupu na %1?", "textYes": "Ano", "titleServerVersion": "Editor byl aktualizován", "titleUpdateVersion": "Verze změněna", @@ -163,8 +164,7 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." } }, "Error": { @@ -302,9 +302,9 @@ "textRenameSheet": "Přejmenovat list", "textSheet": "List", "textSheetName": "Název listu", + "textTabColor": "Barva záložky", "textUnhide": "Odkrýt", - "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? ", - "textTabColor": "Tab Color" + "textWarnDeleteSheet": "List může obsahovat data. Pokračovat v operaci? " }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce' a počkejte dokud nedojde k automatickému uložení. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", @@ -403,6 +403,7 @@ "textBottomBorder": "Dolní ohraničení", "textBringToForeground": "Přenést do popředí", "textCell": "Buňka", + "textCellStyle": "Styl buňky", "textCenter": "Na střed", "textChart": "Graf", "textChartTitle": "Název grafu", @@ -551,8 +552,7 @@ "textYen": "Jen", "txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", "txtSortHigh2Low": "Seřadit od nejvyššího po nejnižší", - "txtSortLow2High": "Seřadit od nejnižšího po nejvyšší", - "textCellStyle": "Cell Style" + "txtSortLow2High": "Seřadit od nejnižšího po nejvyšší" }, "Settings": { "advCSVOptions": "Vyberte možnosti CSV", @@ -584,6 +584,7 @@ "textCustomSize": "Vlastní velikost", "textDarkTheme": "Tmavý vzhled prostředí", "textDelimeter": "Oddělovač", + "textDirection": "Směr", "textDisableAll": "Vypnout vše", "textDisableAllMacrosWithNotification": "Vypnout všechna makra s notifikacemi", "textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez notifikací", @@ -595,6 +596,7 @@ "textEnableAllMacrosWithoutNotification": "Zapnout všechna makra bez notifikace", "textEncoding": "Kódování", "textExample": "Ukázka", + "textFeedback": "Zpětná vazba a Podpora", "textFind": "Najít", "textFindAndReplace": "Najít a nahradit", "textFindAndReplaceAll": "Najít a nahradit vše", @@ -610,6 +612,7 @@ "textLastModified": "Naposledy upraveno", "textLastModifiedBy": "Naposledy upravil(a)", "textLeft": "Vlevo", + "textLeftToRight": "Zleva doprava", "textLocation": "Umístění", "textLookIn": "Hledat v", "textMacrosSettings": "Nastavení maker", @@ -625,12 +628,14 @@ "textPortrait": "Na výšku", "textPoweredBy": "Poháněno", "textPrint": "Tisk", - "textR1C1Style": "Styl R1C1 reference", + "textR1C1Style": "Styl reference R1C1", "textRegionalSettings": "Místní nastavení", "textReplace": "Nahradit", "textReplaceAll": "Nahradit vše", "textResolvedComments": "Vyřešené komentáře", + "textRestartApplication": "Pro provedení změn restartujete aplikaci", "textRight": "Vpravo", + "textRightToLeft": "Zprava doleva", "textSearch": "Hledat", "textSearchBy": "Hledat", "textSearchIn": "Hledat v", @@ -683,12 +688,7 @@ "txtSemicolon": "Středník", "txtSpace": "Mezera", "txtTab": "Tabulátor", - "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", - "textDirection": "Direction", - "textFeedback": "Feedback & Support", - "textLeftToRight": "Left To Right", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRightToLeft": "Right To Left" + "warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 11b160f54..2c79dee21 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -63,9 +63,9 @@ "notcriticalErrorTitle": "Warning", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?", "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?" }, "Controller": { "Main": { diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index e696e6de5..2e09a40ce 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -3,11 +3,11 @@ "textAbout": "À propos", "textAddress": "Adresse", "textBack": "Retour", + "textEditor": "Éditeur de feuille de calcul", "textEmail": "E-mail", "textPoweredBy": "Réalisation", "textTel": "Tél.", - "textVersion": "Version", - "textEditor": "Spreadsheet Editor" + "textVersion": "Version" }, "Common": { "Collaboration": { diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 5fc2d4587..5e027fb59 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -3,11 +3,11 @@ "textAbout": "In riguardo a", "textAddress": "Indirizzo", "textBack": "Indietro", + "textEditor": "Spreadsheet Editor", "textEmail": "Email", "textPoweredBy": "Sviluppato da", "textTel": "Tel.", - "textVersion": "Versione", - "textEditor": "Spreadsheet Editor" + "textVersion": "Versione" }, "Common": { "Collaboration": { @@ -154,6 +154,7 @@ "textRemember": "Ricordare la mia scelta", "textReplaceSkipped": "La sostituzione è stata effettuata. {0} casi sono stati saltati.", "textReplaceSuccess": "La ricerca è stata effettuata. Casi sostituiti: {0}", + "textRequestMacros": "Una macro effettua una richiesta all'URL. Vuoi consentire la richiesta al %1?", "textYes": "Sì", "titleServerVersion": "L'editor è stato aggiornato", "titleUpdateVersion": "La versione è stata cambiata", @@ -163,8 +164,7 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare il file.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Non hai il permesso di modificare il file." } }, "Error": { @@ -295,16 +295,16 @@ "textHide": "Nascondere", "textMore": "Di più", "textMove": "Sposta", + "textMoveBefore": "Sposta prima del foglio", + "textMoveToEnd": "(Sposta alla fine)", "textOk": "OK", "textRename": "Rinominare", "textRenameSheet": "Rinominare foglio", "textSheet": "Foglio", "textSheetName": "Nome foglio", + "textTabColor": "Colore scheda", "textUnhide": "Scoprire", - "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", - "textTabColor": "Tab Color" + "textWarnDeleteSheet": "Il foglio di calcolo potrebbe contenere dati. Procedere con l'operazione?" }, "Toolbar": { "dlgLeaveMsgText": "Ci sono i cambiamenti non salvati in questo documento. Fai clic su \"Rimanere su questa pagina\" per attendere il salvataggio automatico. Fai clic su \"Lasciare questa pagina\" per eliminare tutti i cambiamenti non salvati.", @@ -328,16 +328,19 @@ "sCatTextAndData": "Testo e dati", "textAddLink": "Aggiungere link", "textAddress": "Indirizzo", + "textAllTableHint": "Restituisce l'intero contenuto della tabella o delle colonne della tabella specificate, comprese le intestazioni di colonna, i dati e le righe totali", "textBack": "Indietro", "textCancel": "Annullare", "textChart": "Grafico", "textComment": "Commento", + "textDataTableHint": "Restituisce le celle di dati della tabella o le colonne della tabella specificate", "textDisplay": "Visualizzare", "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", "textExternalLink": "Link esterno", "textFilter": "Filtro", "textFunction": "Funzione", "textGroups": "CATEGORIE", + "textHeadersTableHint": "Restituisce le intestazioni di colonna per la tabella o le colonne di tabella specificate", "textImage": "Immagine", "textImageURL": "URL dell'immagine", "textInsert": "Inserire", @@ -358,6 +361,8 @@ "textShape": "Forma", "textSheet": "Foglio", "textSortAndFilter": "Ordinare e filtrare", + "textThisRowHint": "Seleziona solo questa riga della colonna specificata", + "textTotalsTableHint": "Restituisce le righe totali per la tabella o le colonne della tabella specificate", "txtExpand": "Espandere e ordinare", "txtExpandSort": "I dati accanto alla selezione non verranno ordinati. Vuoi espandere la selezione per includere i dati adiacenti o continuare ordinando solo le celle attualmente selezionate?", "txtLockSort": "I dati si trovano accanto alla tua selezione, ma non sei autorizzato per modificare le celle.
Vuoi continuare con la selezione corrente?", @@ -365,12 +370,7 @@ "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "txtSorting": "Ordinamento", "txtSortSelected": "Ordinare selezionato", - "txtYes": "Sì", - "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", - "textDataTableHint": "Returns the data cells of the table or specified table columns", - "textHeadersTableHint": "Returns the column headers for the table or specified table columns", - "textThisRowHint": "Choose only this row of the specified column", - "textTotalsTableHint": "Returns the total rows for the table or specified table columns" + "txtYes": "Sì" }, "Edit": { "notcriticalErrorTitle": "Avvertimento", @@ -403,6 +403,7 @@ "textBottomBorder": "Bordo inferiore", "textBringToForeground": "Portare in primo piano", "textCell": "Cella", + "textCellStyle": "Stile cella", "textCenter": "Al centro", "textChart": "Grafico", "textChartTitle": "Titolo di grafico", @@ -551,8 +552,7 @@ "textYen": "Yen", "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "txtSortHigh2Low": "Ordinare dal più alto al più basso", - "txtSortLow2High": "Ordinare dal più basso al più alto", - "textCellStyle": "Cell Style" + "txtSortLow2High": "Ordinare dal più basso al più alto" }, "Settings": { "advCSVOptions": "Scegliere le opzioni CSV", @@ -584,6 +584,7 @@ "textCustomSize": "Dimensione personalizzata", "textDarkTheme": "‎Tema scuro‎", "textDelimeter": "Delimitatore", + "textDirection": "Direzione", "textDisableAll": "Disabilitare tutto", "textDisableAllMacrosWithNotification": "Disabilitare tutte le macro con notifica", "textDisableAllMacrosWithoutNotification": "Disabilitare tutte le macro senza notifica", @@ -595,6 +596,7 @@ "textEnableAllMacrosWithoutNotification": "Attivare tutte le macro senza notifica", "textEncoding": "Codificazione", "textExample": "Esempio", + "textFeedback": "Feedback & Supporto", "textFind": "Trovare", "textFindAndReplace": "Trovare e sostituire", "textFindAndReplaceAll": "Trovare e sostituire tutto", @@ -610,6 +612,7 @@ "textLastModified": "Ultima modifica", "textLastModifiedBy": "Ultima modifica da", "textLeft": "A sinistra", + "textLeftToRight": "Da sinistra a destra", "textLocation": "Posizione", "textLookIn": "Cercare in", "textMacrosSettings": "Impostazioni macro", @@ -630,7 +633,9 @@ "textReplace": "Sostituire", "textReplaceAll": "Sostituire tutto", "textResolvedComments": "Commenti risolti", + "textRestartApplication": "Riavvia l'applicazione per rendere effettive le modifiche", "textRight": "A destra", + "textRightToLeft": "Da destra a sinistra", "textSearch": "Cercare", "textSearchBy": "Cercare", "textSearchIn": "Cercare in", @@ -683,12 +688,7 @@ "txtSemicolon": "Punto e virgola", "txtSpace": "Spazio", "txtTab": "Tabulazione", - "warnDownloadAs": "Se continui a salvare in questo formato, tutte le funzioni tranne il testo saranno perse.
Sei sicuro di voler continuare?", - "textDirection": "Direction", - "textFeedback": "Feedback & Support", - "textLeftToRight": "Left To Right", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRightToLeft": "Right To Left" + "warnDownloadAs": "Se continui a salvare in questo formato, tutte le funzioni tranne il testo saranno perse.
Sei sicuro di voler continuare?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pt-PT.json b/apps/spreadsheeteditor/mobile/locale/pt-PT.json index f6bf36978..0e97ad7ec 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt-PT.json +++ b/apps/spreadsheeteditor/mobile/locale/pt-PT.json @@ -3,7 +3,7 @@ "textAbout": "Acerca", "textAddress": "Endereço", "textBack": "Recuar", - "textEditor": "Editor de Folha de Cálculo", + "textEditor": "Editor de folhas de cálculo", "textEmail": "E-mail", "textPoweredBy": "Disponibilizado por", "textTel": "Tel", @@ -20,7 +20,7 @@ "textComments": "Comentários", "textDeleteComment": "Eliminar comentário", "textDeleteReply": "Eliminar resposta", - "textDone": "Realizado", + "textDone": "Feito", "textEdit": "Editar", "textEditComment": "Editar comentário", "textEditReply": "Editar resposta", @@ -28,10 +28,10 @@ "textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?", "textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?", "textNoComments": "Este documento não contém comentários", - "textOk": "Ok", + "textOk": "OK", "textReopen": "Reabrir", "textResolve": "Resolver", - "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de coedição rápida.", "textUsers": "Utilizadores" }, "ThemeColorPalette": { @@ -42,16 +42,16 @@ }, "ContextMenu": { "errorCopyCutPaste": "As ações de copiar, cortar e colar enquanto utiliza o menu de contexto serão apenas efetuadas no ficheiro atual.", - "errorInvalidLink": "A referência da ligação não existe. Deve corrigir ou eliminar a ligação.", + "errorInvalidLink": "A referência à ligação não existe. Deve corrigir ou eliminar a ligação.", "menuAddComment": "Adicionar comentário", "menuAddLink": "Adicionar ligação", "menuCancel": "Cancelar", "menuCell": "Célula", "menuDelete": "Eliminar", "menuEdit": "Editar", - "menuFreezePanes": "Congelar painéis", + "menuFreezePanes": "Fixar painéis", "menuHide": "Ocultar", - "menuMerge": "Mesclar", + "menuMerge": "Unir", "menuMore": "Mais", "menuOpenLink": "Abrir ligação", "menuShow": "Mostrar", @@ -63,7 +63,7 @@ "notcriticalErrorTitle": "Aviso", "textCopyCutPasteActions": "Ações copiar, cortar e colar", "textDoNotShowAgain": "Não mostrar novamente", - "warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerá na célula mesclada.
Você tem certeza de que deseja continuar? ", + "warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerão na célula unida.
Tem a certeza de que deseja continuar? ", "textOk": "Ok", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, @@ -73,9 +73,9 @@ "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", "errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.", "errorProcessSaveResult": "Falha ao guardar.", - "errorServerVersion": "A versão do editor foi atualizada. A página será carregada de novo para aplicar as alterações.", - "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", - "leavePageText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", + "leavePageText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", "notcriticalErrorTitle": "Aviso", "SDK": { "txtAccent": "Destaque", @@ -84,29 +84,29 @@ "txtBlank": "(vazio)", "txtByField": "%1 de %2", "txtClearFilter": "Limpar filtro (Alt+C)", - "txtColLbls": "Etiquetas da coluna", + "txtColLbls": "Etiquetas de coluna", "txtColumn": "Coluna", "txtConfidential": "Confidencial", "txtDate": "Data", "txtDays": "Dias", "txtDiagramTitle": "Título do gráfico", "txtFile": "Ficheiro", - "txtGrandTotal": "Total Geral", + "txtGrandTotal": "Total geral", "txtGroup": "Grupo", "txtHours": "Horas", "txtMinutes": "Minutos", "txtMonths": "Meses", - "txtMultiSelect": "Selecionar-Múltiplo (Alt+S)", + "txtMultiSelect": "Seleção múltipla (Alt+S)", "txtOr": "%1 ou %2", "txtPage": "Página", "txtPageOf": "Página %1 de %2", "txtPages": "Páginas", - "txtPreparedBy": "Elaborado por", - "txtPrintArea": "Área_de_Impressão", - "txtQuarter": "Quart.", - "txtQuarters": "Quartos", + "txtPreparedBy": "Preparado por", + "txtPrintArea": "Área de impressão", + "txtQuarter": "Trim.", + "txtQuarters": "Trimestres", "txtRow": "Linha", - "txtRowLbls": "Etiquetas das Linhas", + "txtRowLbls": "Etiquetas de linhas", "txtSeconds": "Segundos", "txtSeries": "Série", "txtStyle_Bad": "Mau", @@ -130,7 +130,7 @@ "txtStyle_Title": "Título", "txtStyle_Total": "Total", "txtStyle_Warning_Text": "Texto de aviso", - "txtTab": "Tab", + "txtTab": "Separador", "txtTable": "Tabela", "txtTime": "Hora", "txtValues": "Valores", @@ -139,147 +139,147 @@ "txtYears": "Anos" }, "textAnonymous": "Anónimo", - "textBuyNow": "Visitar website", + "textBuyNow": "Visitar site", "textClose": "Fechar", "textContactUs": "Contacte a equipa comercial", - "textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.", + "textCustomLoader": "Desculpe mas não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.", "textGuest": "Convidado", "textHasMacros": "O ficheiro contém macros automáticas.
Deseja executar as macros?", "textNo": "Não", - "textNoChoices": "Não há escolhas para preencher a célula.
Apenas os valores de texto da coluna podem ser selecionados para substituição.", - "textNoLicenseTitle": "Limite de licença atingido", + "textNoChoices": "Não existem escolhas para preencher a célula.
Apenas os valores de texto da coluna podem ser selecionados para substituição.", + "textNoLicenseTitle": "Atingiu o limite da licença", "textNoTextFound": "Texto não encontrado", - "textOk": "Ok", + "textOk": "OK", "textPaidFeature": "Funcionalidade paga", "textRemember": "Memorizar a minha escolha", "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", - "textRequestMacros": "Uma macro faz um pedido de URL. Quer permitir o pedido à %1?", + "textRequestMacros": "Uma macro faz um pedido de URL. Deseja permitir o acesso a %1?", "textYes": "Sim", "titleServerVersion": "Editor atualizado", "titleUpdateVersion": "Versão alterada", "warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.", - "warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.", - "warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .
Por favor contacte o seu administrador para ter acesso total", + "warnLicenseLimitedNoAccess": "Licença expirada. Não tem acesso ao editor de documentos. Por favor contacte o administrados do servidor de documentos.", + "warnLicenseLimitedRenewed": "Tem que renovar a sua licença. A edição de documentos está com funcionalidades limitadas.
Contacte o administrador para obter acesso total.", "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", - "warnProcessRightsChange": "Não tem autorização para editar este ficheiro." + "warnProcessRightsChange": "Não tem permissão para editar este ficheiro." } }, "Error": { - "convertationTimeoutText": "Tempo limite de conversão excedido.", - "criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.", + "convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "criticalErrorExtText": "Clique em \"OK\" para voltar à lista de documentos.", "criticalErrorTitle": "Erro", "downloadErrorText": "Falha ao descarregar.", "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", "errorArgsRange": "Erro na fórmula.
Intervalo incorreto de argumentos.", "errorAutoFilterChange": "A operação não é permitida porque está a tentar deslocar células numa tabela na sua folha de cálculo.", - "errorAutoFilterChangeFormatTable": "A operação não pôde ser feita para as células selecionadas, uma vez que não se pode mover uma parte de uma tabela.
Selecione outro intervalo de dados para que toda a tabela seja deslocada e tentar novamente.", + "errorAutoFilterChangeFormatTable": "A operação não pôde ser feita para as células selecionadas porque não se pode mover uma parte de uma tabela.
Selecione outro intervalo de dados para que toda a tabela seja deslocada e tente novamente.", "errorAutoFilterDataRange": "Não foi possível fazer a operação para o intervalo selecionado de células.
Selecione um intervalo de dados uniforme dentro ou fora da tabela e tente novamente.", "errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.
Por favor, escolha mostrar os elementos filtrados e tente novamente.", - "errorBadImageUrl": "URL de imagem está incorreta", - "errorCannotUseCommandProtectedSheet": "Não se pode utilizar este comando numa folha protegida. Para utilizar este comando, desproteja a folha.
Poderá ser-lhe solicitado que introduza uma palavra-passe.", - "errorChangeArray": "Não se pode alterar parte de uma matriz.", - "errorChangeOnProtectedSheet": "A célula ou gráfico que está a tentar mudar está numa folha protegida.
Para fazer uma mudança, desbloqueia a folha. Poderá ser-lhe solicitado que introduza uma palavra-passe.", - "errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador.
Ao clicar no botão 'OK', será solicitado a descarregar o documento.", - "errorCopyMultiselectArea": "Este comando não pode ser utilizado com várias seleções.
Selecionar uma única gama e tentar novamente.", + "errorBadImageUrl": "O URL da imagem está incorreto", + "errorCannotUseCommandProtectedSheet": "Não se pode utilizar este comando numa folha protegida. Para utilizar este comando, desproteja a folha.
Pode ser solicitada uma palavra-passe.", + "errorChangeArray": "Não pode alterar parte de uma matriz.", + "errorChangeOnProtectedSheet": "A célula ou gráfico que está a tentar alterar está numa folha protegida.
Para a alterar tem que desbloquear a folha. Pode ser solicitada uma palavra-passe.", + "errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador.
Ao clicar no botão 'OK', será solicitado a descarregar o documento.", + "errorCopyMultiselectArea": "Este comando não pode ser utilizado em várias seleções.
Selecione apenas um intervalo e tente novamente.", "errorCountArg": "Erro na fórmula.
Número de argumentos inválido.", - "errorCountArgExceed": "Erro na fórmula.
O número máximo de argumentos foi excedido.", - "errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e os novos também não
podem ser editados porque alguns deles estão a ser editados.", - "errorDatabaseConnection": "Erro externo.
Erro de ligação à base de dados. Contacte o suporte.", + "errorCountArgExceed": "Erro na fórmula.
Excedeu o número máximo de argumentos.", + "errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e os novos
também não porque alguns deles estão a ser editados.", + "errorDatabaseConnection": "Erro externo.
Erro ao estabelecer ligação à base de dados. Contacte o suporte.", "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", - "errorDataRange": "Intervalo de dados incorreto.", + "errorDataRange": "Intervalo de dados inválido.", "errorDataValidate": "O valor introduzido não é válido.
Um utilizador restringiu os valores que podem ser utilizados neste campo.", "errorDefaultMessage": "Código de erro: %1", - "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.", - "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ", + "errorEditingDownloadas": "Ocorreu um erro ao trabalhar com o documento.
Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.", + "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abrir.", "errorFileRequest": "Erro externo.
Pedido de ficheiro. Por favor, contacte o suporte.", - "errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.
Por favor, contacte o seu administrador para obter mais informações.", + "errorFileSizeExceed": "O tamanho do ficheiro excede a limite permitido pelo servidor.
Por favor, contacte o seu administrador para obter mais informações.", "errorFileVKey": "Erro externo.
Chave de segurança incorreta. Por favor, contacte o suporte.", - "errorFillRange": "Não foi possível preencher o intervalo selecionado de células.
Todas as células mescladas precisam ser do mesmo tamanho.", + "errorFillRange": "Não foi possível preencher o intervalo de células.
Todas as células unidas têm que ter o mesmo tamanho.", "errorFormulaName": "Erro na fórmula.
Nome da fórmula incorreto.", "errorFormulaParsing": "Erro interno durante a análise da fórmula.", - "errorFrmlMaxLength": "Não pode adicionar esta fórmula uma vez que o seu comprimento excede o número permitido de caracteres.
Por favor, edite-a e tente novamente.", - "errorFrmlMaxReference": "Não se pode introduzir esta fórmula porque tem demasiados valores,
referências de células, e/ou nomes.", + "errorFrmlMaxLength": "Não pode adicionar esta fórmula uma vez que o seu comprimento excede o número de caracteres permitido.
Por favor, edite a fórmula e tente novamente.", + "errorFrmlMaxReference": "Não pode introduzir esta fórmula porque tem demasiados valores,
referências de células, e/ou nomes.", "errorFrmlMaxTextLength": "Os valores de texto em fórmulas estão limitados a 255 caracteres.
Utilize a função CONCATENATE ou um operador de concatenação (&)", "errorFrmlWrongReferences": "A função refere-se a uma folha que não existe.
Por favor, verifique os dados e tente novamente.", - "errorInvalidRef": "Introduza um nome correcto para a seleção ou uma referência válida para onde ir", + "errorInvalidRef": "Introduza um nome correto para a seleção ou uma referência válida para onde ir", "errorKeyEncrypt": "Descritor de chave desconhecido", "errorKeyExpire": "Descritor de chave expirado", - "errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", + "errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", "errorLockedAll": "Não foi possível efetuar a ação porque a folha está bloqueada por outro utilizador.", "errorLockedCellPivot": "Não pode alterar dados dentro de uma tabela dinâmica.", "errorLockedWorksheetRename": "Não foi possível alterar o nome da folha porque o nome está a ser alterado por outro utilizador.", "errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", "errorMoveRange": "Não pode alterar parte de uma célula unida", "errorMultiCellFormula": "Intervalo de fórmulas multi-célula não são permitidas em tabelas.", - "errorOpenWarning": "O comprimento de uma das fórmulas do ficheiro excedeu
o número permitido de caracteres e foi removido.", - "errorOperandExpected": "A sintaxe da função introduzida não está correta. Por favor, verifique se esqueceu um dos parênteses - '(' ou ')'.", - "errorPasteMaxRange": "A área do copiar e do colar não corresponde. Por favor, selecione uma área do mesmo tamanho ou clique na primeira célula de uma linha para colar as células copiadas.", - "errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais de 1500 páginas de uma vez na versão atual do programa.
Esta restrição será eliminada nos próximos lançamentos.", - "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.", - "errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.", - "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar 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.", - "errorUnexpectedGuid": "Erro externo.
Guid Inesperado. Por favor, contacte o suporte.", - "errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", - "errorUserDrop": "O arquivo não pode ser acessado agora.", - "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", - "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.", + "errorOpenWarning": "O comprimento de uma das fórmulas do ficheiro excedeu
o número permitido de caracteres e foi removido.", + "errorOperandExpected": "A sintaxe da função introduzida não está correta. Por favor, verifique se se esqueceu de algum parênteses - '(' ou ')'.", + "errorPasteMaxRange": "As áreas de origem e de destino não são iguais. Por favor, selecione uma área do mesmo tamanho ou clique na primeira célula de uma linha para colar as células copiadas.", + "errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais de 1500 páginas de uma vez na versão atual do programa.
Esta restrição será eliminada no futuro.", + "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, recarregue a página.", + "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.", + "errorUnexpectedGuid": "Erro externo.
GUID inesperado. Por favor, contacte o suporte.", + "errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e depois recarregue esta página.", + "errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", + "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
possível descarregar ou imprimir até que a ligação seja restaurada e a página recarregada.", "errorWrongBracketsCount": "Erro na fórmula.
Número errado de parenteses.", "errorWrongOperator": "Existe um erro na fórmula. Utilizou um operador inválido.
Por favor corrija o erro.", "notcriticalErrorTitle": "Aviso", "openErrorText": "Ocorreu um erro ao abrir o ficheiro", "pastInMergeAreaError": "Não pode alterar parte de uma célula unida", "saveErrorText": "Ocorreu um erro ao guardar o ficheiro", - "scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", - "textErrorPasswordIsNotCorrect": "A palavra-passe que introduziu não está correta.
Verifique se a tecla CAPS LOCK está desligada e não se esqueça de utilizar a capitalização correta.", + "scriptLoadError": "A ligação está demasiado lenta e não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", + "textErrorPasswordIsNotCorrect": "A palavra-passe que introduziu não está correta.
Verifique se a tecla CAPS LOCK está ativa e não se esqueça de utilizar a capitalização correta.", "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", - "uploadImageFileCountMessage": "Nenhuma imagem carregada.", - "uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB." + "uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", + "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB." }, "LongActions": { - "advDRMPassword": "Senha", - "applyChangesTextText": "Carregando dados...", - "applyChangesTitleText": "Carregando dados", - "confirmMoveCellRange": "O intervalo de células de destino pode conter dados. Continuar a operação?", - "confirmPutMergeRange": "Os dados de origem contêm células fundidas.
A união de células será anulada antes de serem coladas na tabela.", - "confirmReplaceFormulaInTable": "As fórmulas na linha de cabeçalho serão removidas e convertidas para texto estático.
Deseja continuar?", + "advDRMPassword": "Palavra-passe", + "applyChangesTextText": "A carregar dados...", + "applyChangesTitleText": "A carregar dados", + "confirmMoveCellRange": "O intervalo de células de destino pode conter dados. Continuar?", + "confirmPutMergeRange": "Os dados de origem contêm células unidas.
A união de células será anulada antes de serem coladas na tabela.", + "confirmReplaceFormulaInTable": "As fórmulas na linha de cabeçalho serão removidas e convertidas para texto estático.
Continuar?", "downloadTextText": "A descarregar documento...", "downloadTitleText": "A descarregar documento", - "loadFontsTextText": "Carregando dados...", - "loadFontsTitleText": "Carregando dados", - "loadFontTextText": "Carregando dados...", - "loadFontTitleText": "Carregando dados", - "loadImagesTextText": "Carregando imagens...", - "loadImagesTitleText": "Carregando imagens", - "loadImageTextText": "Carregando imagem...", - "loadImageTitleText": "Carregando imagem", - "loadingDocumentTextText": "Carregando documento...", - "loadingDocumentTitleText": "Carregando documento", + "loadFontsTextText": "A carregar dados...", + "loadFontsTitleText": "A carregar dados", + "loadFontTextText": "A carregar dados...", + "loadFontTitleText": "A carregar dados", + "loadImagesTextText": "A carregar imagens...", + "loadImagesTitleText": "A carregar imagens", + "loadImageTextText": "A carregar imagem...", + "loadImageTitleText": "A carregar imagem", + "loadingDocumentTextText": "A carregar documento...", + "loadingDocumentTitleText": "A carregar documento", "notcriticalErrorTitle": "Aviso", - "openTextText": "Abrindo documento...", - "openTitleText": "Abrindo documento", - "printTextText": "Imprimindo documento...", - "printTitleText": "Imprimindo documento", + "openTextText": "A abrir documento...", + "openTitleText": "A abrir documento", + "printTextText": "A imprimir documento...", + "printTitleText": "A imprimir documento", "savePreparingText": "A preparar para guardar", - "savePreparingTitle": "A preparar para guardar. Aguarde...", + "savePreparingTitle": "A preparar para guardar. Por favor aguarde...", "saveTextText": "A guardar documento...", "saveTitleText": "A guardar documento", "textCancel": "Cancelar", "textErrorWrongPassword": "A palavra-passe que introduziu não está correta.", - "textLoadingDocument": "Carregando documento", + "textLoadingDocument": "A carregar documento", "textNo": "Não", - "textOk": "Ok", - "textUnlockRange": "Desbloquear Intervalo", - "textUnlockRangeWarning": "O intervalo que está a tentar alterar está protegido por uma palavra-passe.", + "textOk": "OK", + "textUnlockRange": "Desbloquear intervalo", + "textUnlockRangeWarning": "O intervalo que está a tentar alterar está protegido por palavra-passe.", "textYes": "Sim", - "txtEditingMode": "Definir modo de edição...", - "uploadImageTextText": "Carregando imagem...", - "uploadImageTitleText": "Carregando imagem", - "waitText": "Por favor aguarde..." + "txtEditingMode": "Definir modo de edição…", + "uploadImageTextText": "A carregar imagem...", + "uploadImageTitleText": "A carregar imagem", + "waitText": "Aguarde..." }, "Statusbar": { "notcriticalErrorTitle": "Aviso", @@ -289,25 +289,25 @@ "textErrNameExists": "Já existe uma folha de cálculo com este nome.", "textErrNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :", "textErrNotEmpty": "O nome da folha não pode estar vazio", - "textErrorLastSheet": "O livro deve ter pelo menos uma folha de cálculo visível.", - "textErrorRemoveSheet": "Não é possível eliminar a folha de trabalho.", + "textErrorLastSheet": "O livro deve ter, pelo menos, uma folha de cálculo visível.", + "textErrorRemoveSheet": "Não pode eliminar a folha de trabalho.", "textHidden": "Oculto", "textHide": "Ocultar", "textMore": "Mais", "textMove": "Mover", "textMoveBefore": "Mover antes da folha", - "textMoveToEnd": "(Mover para o final)", - "textOk": "Ok", - "textRename": "Renomear", + "textMoveToEnd": "(Mover para o fim)", + "textOk": "OK", + "textRename": "Mudar nome", "textRenameSheet": "Mudar nome da folha", "textSheet": "Folha", "textSheetName": "Nome da folha", "textTabColor": "Cor do separador", "textUnhide": "Mostrar", - "textWarnDeleteSheet": "A ficha de trabalho talvez tenha dados. Proceder à operação?" + "textWarnDeleteSheet": "É possível que o livro escolhido tenha dados. Continuar?" }, "Toolbar": { - "dlgLeaveMsgText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "dlgLeaveMsgText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", "dlgLeaveTitleText": "Saiu da aplicação", "leaveButtonText": "Sair da página", "stayButtonText": "Ficar na página" @@ -315,7 +315,7 @@ "View": { "Add": { "errorMaxRows": "ERRO! O número máximo de série de dados, por gráfico, é 255.", - "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.", + "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.", "notcriticalErrorTitle": "Aviso", "sCatDateAndTime": "Data e hora", "sCatEngineering": "Engenharia", @@ -325,17 +325,17 @@ "sCatLookupAndReference": "Procura e referência", "sCatMathematic": "Matemática e trigonometria", "sCatStatistical": "Estatísticas", - "sCatTextAndData": "Texto e Dados", + "sCatTextAndData": "Texto e dados", "textAddLink": "Adicionar ligação", "textAddress": "Endereço", - "textAllTableHint": "Retorna todo o conteúdo da tabela ou colunas especificadas da tabela, incluindo os cabeçalhos de coluna, dados e linhas totais", + "textAllTableHint": "Devolve todo o conteúdo da tabela ou as colunas especificadas da tabela, incluindo os cabeçalhos de coluna, dados e linhas totais", "textBack": "Recuar", "textCancel": "Cancelar", "textChart": "Gráfico", "textComment": "Comentário", "textDataTableHint": "Devolve as células de dados da tabela ou as colunas da tabela especificadas", "textDisplay": "Exibição", - "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textEmptyImgUrl": "Tem que especificar o URL da imagem.", "textExternalLink": "Ligação externa", "textFilter": "Filtro", "textFunction": "Função", @@ -350,7 +350,7 @@ "textLink": "Ligação", "textLinkSettings": "Definições da ligação", "textLinkType": "Tipo de ligação", - "textOk": "Ok", + "textOk": "OK", "textOther": "Outro", "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem de um URL", @@ -360,16 +360,16 @@ "textSelectedRange": "Intervalo selecionado", "textShape": "Forma", "textSheet": "Folha", - "textSortAndFilter": "Classificar e Filtrar", + "textSortAndFilter": "Ordem e filtro", "textThisRowHint": "Escolher apenas esta linha de uma coluna específica", - "textTotalsTableHint": "Devolve o total de linhas para a tabela ou coluna da tabela especificada", - "txtExpand": "Expandir e Ordenar", - "txtExpandSort": "Os dados adjacentes à seleção não serão classificados. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?", - "txtLockSort": "Os dados foram encontrados ao lado da sua seleção, mas não tem permissões suficientes para alterar essas células.
Deseja continuar com a seleção atual?", + "textTotalsTableHint": "Devolve o total de linhas para a tabela ou colunas da tabela especificada", + "txtExpand": "Expandir e ordenar", + "txtExpandSort": "Os dados adjacentes à seleção não serão ordenados. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células selecionadas?", + "txtLockSort": "Os dados foram encontrados perto da sua seleção mas não tem permissões suficientes para alterar essas células.
Deseja continuar com a seleção atual?", "txtNo": "Não", "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", - "txtSorting": "A Ordenar", - "txtSortSelected": "Ordenar o que está selecionado", + "txtSorting": "Ordenação", + "txtSortSelected": "Ordenar seleção", "txtYes": "Sim" }, "Edit": { @@ -382,15 +382,15 @@ "textAlignBottom": "Alinhar em baixo", "textAlignCenter": "Alinhar ao centro", "textAlignLeft": "Alinhar à esquerda", - "textAlignMiddle": "Alinhar ao meio", + "textAlignMiddle": "Alinhar ao centro", "textAlignRight": "Alinhar à direita", "textAlignTop": "Alinhar em cima", "textAllBorders": "Todos os contornos", - "textAngleClockwise": "Ângulo no sentido horário", - "textAngleCounterclockwise": "Ângulo no sentido antihorário", + "textAngleClockwise": "Ângulo para a direita", + "textAngleCounterclockwise": "Ângulo para a esquerda", "textAuto": "Automático", "textAutomatic": "Automático", - "textAxisCrosses": "Eixos cruzam", + "textAxisCrosses": "Cruzes dos eixos", "textAxisOptions": "Opções dos eixos", "textAxisPosition": "Posição dos eixos", "textAxisTitle": "Título dos eixos", @@ -418,16 +418,16 @@ "textDefault": "Intervalo selecionado", "textDeleteFilter": "Eliminar filtro", "textDesign": "Design", - "textDiagonalDownBorder": "Borda inferior diagonal", - "textDiagonalUpBorder": "Borda superior diagonal", + "textDiagonalDownBorder": "Contorno diagonal para baixo", + "textDiagonalUpBorder": "Contorno diagonal para cima", "textDisplay": "Exibição", - "textDisplayUnits": "Mostrar unidades", + "textDisplayUnits": "Unidades de exibição", "textDollar": "Dólar", "textEditLink": "Editar ligação", "textEffects": "Efeitos", - "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textEmptyImgUrl": "Tem que especificar o URL da imagem.", "textEmptyItem": "{Vazio}", - "textErrorMsg": "Você deve escolher no mínimo um valor", + "textErrorMsg": "Tem que escolher, pelo menos, um valor", "textErrorTitle": "Aviso", "textEuro": "Euro", "textExternalLink": "Ligação externa", @@ -452,12 +452,12 @@ "textHyperlink": "Hiperligação", "textImage": "Imagem", "textImageURL": "URL da imagem", - "textIn": "Em", + "textIn": "Pol", "textInnerBottom": "Parte inferior interna", - "textInnerTop": "Parte superior interna", - "textInsideBorders": "Bordas interiores", + "textInnerTop": "Superior interna", + "textInsideBorders": "Contornos interiores", "textInsideHorizontalBorder": "Contorno horizontal interior", - "textInsideVerticalBorder": "Contorno vertical interior", + "textInsideVerticalBorder": "Contorno interior vertical", "textInteger": "Inteiro", "textInternalDataRange": "Intervalo de dados interno", "textInvalidRange": "Intervalo de células inválido", @@ -474,28 +474,28 @@ "textLinkType": "Tipo de ligação", "textLow": "Baixo", "textMajor": "Maior", - "textMajorAndMinor": "Maior e Menor", - "textMajorType": "Tipo principal", + "textMajorAndMinor": "Maior e menor", + "textMajorType": "Tipo de maior", "textMaximumValue": "Valor máximo", - "textMedium": "Médio", + "textMedium": "Média", "textMillions": "Milhões", "textMinimumValue": "Valor mínimo", "textMinor": "Menor", - "textMinorType": "Tipo menor", + "textMinorType": "Tipo de menor", "textMoveBackward": "Mover para trás", - "textMoveForward": "Mover para frente", - "textNextToAxis": "Próximo ao eixo", + "textMoveForward": "Mover para a frente", + "textNextToAxis": "Perto do eixo", "textNoBorder": "Sem contorno", "textNone": "Nenhum", "textNoOverlay": "Sem sobreposição", "textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", "textNumber": "Número", - "textOk": "Ok", - "textOnTickMarks": "Nas marcas de escala", + "textOk": "OK", + "textOnTickMarks": "Nas marcas", "textOpacity": "Opacidade", "textOut": "Fora", - "textOuterTop": "Fora do topo", - "textOutsideBorders": "Bordas externas", + "textOuterTop": "Superior externa", + "textOutsideBorders": "Contorno externos", "textOverlay": "Sobreposição", "textPercentage": "Percentagem", "textPictureFromLibrary": "Imagem da biblioteca", @@ -521,9 +521,9 @@ "textScientific": "Científico", "textScreenTip": "Dica no ecrã", "textSelectAll": "Selecionar tudo", - "textSelectObjectToEdit": "Selecionar objeto para editar", - "textSendToBackground": "Enviar para plano de fundo", - "textSettings": "Configurações", + "textSelectObjectToEdit": "Selecione o objeto para editar", + "textSendToBackground": "Enviar para segundo plano", + "textSettings": "Definições", "textShape": "Forma", "textSheet": "Folha", "textSize": "Tamanho", @@ -537,28 +537,28 @@ "textThick": "Espesso", "textThin": "Fino", "textThousands": "Milhares", - "textTickOptions": "Opções de escala", + "textTickOptions": "Opções de espessura", "textTime": "Hora", - "textTop": "Parte superior", + "textTop": "Cima", "textTopBorder": "Contorno superior", - "textTrillions": "Trilhões", + "textTrillions": "Triliões", "textType": "Tipo", "textValue": "Valor", - "textValuesInReverseOrder": "Valores na ordem reversa", + "textValuesInReverseOrder": "Valores na ordem inversa", "textVertical": "Vertical", "textVerticalAxis": "Eixo vertical", "textVerticalText": "Texto vertical", "textWrapText": "Moldar texto", "textYen": "Iene", "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", - "txtSortHigh2Low": "Ordenar do Maior para o Menor", - "txtSortLow2High": "Ordenar do Menor para o Maior" + "txtSortHigh2Low": "Ordenar do maior para o menor", + "txtSortLow2High": "Ordenar do menor para o maior" }, "Settings": { "advCSVOptions": "Escolher opções CSV", - "advDRMEnterPassword": "A sua palavra-passe, por favor:", + "advDRMEnterPassword": "Introduza a palavra-passe:", "advDRMOptions": "Ficheiro protegido", - "advDRMPassword": "Senha", + "advDRMPassword": "Palavra-passe", "closeButtonText": "Fechar ficheiro", "notcriticalErrorTitle": "Aviso", "textAbout": "Acerca", @@ -582,13 +582,13 @@ "textComments": "Comentários", "textCreated": "Criado", "textCustomSize": "Tamanho personalizado", - "textDarkTheme": "Tema Escuro", + "textDarkTheme": "Tema escuro", "textDelimeter": "Delimitador", "textDirection": "Direção", "textDisableAll": "Desativar tudo", "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", - "textDone": "Realizado", + "textDone": "Feito", "textDownload": "Descarregar", "textDownloadAs": "Descarregar como", "textEmail": "E-mail", @@ -596,7 +596,7 @@ "textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação", "textEncoding": "Codificação", "textExample": "Exemplo", - "textFeedback": "Feedback e Suporte", + "textFeedback": "Feedback e suporte", "textFind": "Localizar", "textFindAndReplace": "Localizar e substituir", "textFindAndReplaceAll": "Localizar e substituir tudo", @@ -608,24 +608,24 @@ "textHideHeadings": "Ocultar títulos", "textHighlightRes": "Destacar resultados", "textInch": "Polegada", - "textLandscape": "Paisagem", + "textLandscape": "Horizontal", "textLastModified": "Última modificação", "textLastModifiedBy": "Última modificação por", "textLeft": "Esquerda", "textLeftToRight": "Da esquerda para a direita", "textLocation": "Localização", - "textLookIn": "Olhar em", + "textLookIn": "Procurar em", "textMacrosSettings": "Definições de macros", "textMargins": "Margens", "textMatchCase": "Diferenciar maiúsculas/minúsculas", - "textMatchCell": "Corresponder à Célula", + "textMatchCell": "Corresponder à célula", "textNoTextFound": "Texto não encontrado", - "textOk": "Ok", + "textOk": "OK", "textOpenFile": "Introduza a palavra-passe para abrir o ficheiro", "textOrientation": "Orientação", "textOwner": "Proprietário", "textPoint": "Ponto", - "textPortrait": "Retrato", + "textPortrait": "Vertical", "textPoweredBy": "Disponibilizado por", "textPrint": "Imprimir", "textR1C1Style": "Estilo L1C1", @@ -633,23 +633,23 @@ "textReplace": "Substituir", "textReplaceAll": "Substituir tudo", "textResolvedComments": "Comentários resolvidos", - "textRestartApplication": "Por favor reinicie a aplicação para que as alterações tenham efeito", + "textRestartApplication": "Reinicie a aplicação para aplicar as alterações", "textRight": "Direita", "textRightToLeft": "Da direita para a esquerda", "textSearch": "Pesquisar", "textSearchBy": "Pesquisar", "textSearchIn": "Pesquisar em", - "textSettings": "Configurações", + "textSettings": "Definições", "textSheet": "Folha", "textShowNotification": "Mostrar notificação", - "textSpreadsheetFormats": "Formatos da folha de cálculo", + "textSpreadsheetFormats": "Formato da folha de cálculo", "textSpreadsheetInfo": "Informação da folha de cálculo", "textSpreadsheetSettings": "Definições da folha de cálculo", "textSpreadsheetTitle": "Título da folha de cálculo", "textSubject": "Assunto", "textTel": "Tel", "textTitle": "Título", - "textTop": "Parte superior", + "textTop": "Cima", "textUnitOfMeasurement": "Unidade de medida", "textUploaded": "Carregado", "textValues": "Valores", @@ -658,26 +658,26 @@ "txtColon": "Dois pontos", "txtComma": "Vírgula", "txtDelimiter": "Delimitador", - "txtDownloadCsv": "Transferir CSV", + "txtDownloadCsv": "Descarregar CSV", "txtEncoding": "Codificação", - "txtIncorrectPwd": "A Palavra-passe está incorreta", - "txtOk": "Ok", + "txtIncorrectPwd": "A palavra-passe está incorreta", + "txtOk": "OK", "txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta", - "txtScheme1": "Office", + "txtScheme1": "Escritório", "txtScheme10": "Mediana", "txtScheme11": "Metro", "txtScheme12": "Módulo", "txtScheme13": "Opulento", - "txtScheme14": "Balcão envidraçado", + "txtScheme14": "Janela saliente", "txtScheme15": "Origem", "txtScheme16": "Papel", "txtScheme17": "Solstício", - "txtScheme18": "Técnica", + "txtScheme18": "Técnico", "txtScheme19": "Viagem", "txtScheme2": "Escala de cinza", "txtScheme20": "Urbano", "txtScheme21": "Verve", - "txtScheme22": "Novo Escritório", + "txtScheme22": "Novo escritório", "txtScheme3": "Ápice", "txtScheme4": "Aspeto", "txtScheme5": "Cívico", @@ -687,8 +687,8 @@ "txtScheme9": "Fundição", "txtSemicolon": "Ponto e vírgula", "txtSpace": "Espaço", - "txtTab": "Tab", - "warnDownloadAs": "Se continuar a guardar neste formato todas as funcionalidades excepto o texto serão perdidas.
Tem a certeza de que querem continuar?" + "txtTab": "Separador", + "warnDownloadAs": "Se guardar o documento neste formato, perderá todos os atributos com exceção do texto.
Tem a certeza de que deseja continuar?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 5a320a70f..6b51df815 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -63,9 +63,9 @@ "notcriticalErrorTitle": "Avertisment", "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", "textDoNotShowAgain": "Nu mai afișa", - "warnMergeLostData": "În celula îmbinată se afișează numai conținutul celulei din stânga sus.
Sunteți sigur că doriți să continuați?", - "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "textOk": "OK", + "txtWarnUrl": "Un clic pe acest link ar putea căuza daune dispozitivului și datelor dvs.
Sunteți sigur că doriți să continuați?", + "warnMergeLostData": "În celula îmbinată se afișează numai conținutul celulei din stânga sus.
Sunteți sigur că doriți să continuați?" }, "Controller": { "Main": { diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index ede971e08..87570cefc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -63,9 +63,9 @@ "notcriticalErrorTitle": "Внимание", "textCopyCutPasteActions": "Операции копирования, вырезания и вставки", "textDoNotShowAgain": "Больше не показывать", - "warnMergeLostData": "В объединенной ячейке останутся только данные из левой верхней ячейки.
Вы действительно хотите продолжить?", "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Переход по этой ссылке может нанести вред вашему устройству и данным.
Вы действительно хотите продолжить?", + "warnMergeLostData": "В объединенной ячейке останутся только данные из левой верхней ячейки.
Вы действительно хотите продолжить?" }, "Controller": { "Main": { diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 2c2bc8ac4..569037d87 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -163,9 +163,9 @@ "notcriticalErrorTitle": "Warning", "textCopyCutPasteActions": "Copy, Cut and Paste Actions", "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?", "textOk": "Ok", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", From 2c433a9621b21f202dba7c5b98f3a13aed9f4170 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Fri, 24 Jun 2022 20:39:29 +0400 Subject: [PATCH 016/285] [DE mobile] Fix Bug 57755 --- apps/documenteditor/mobile/src/view/edit/Edit.jsx | 14 +++++++------- .../mobile/src/view/edit/EditParagraph.jsx | 9 ++++----- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/apps/documenteditor/mobile/src/view/edit/Edit.jsx b/apps/documenteditor/mobile/src/view/edit/Edit.jsx index c568acec3..c8434cc21 100644 --- a/apps/documenteditor/mobile/src/view/edit/Edit.jsx +++ b/apps/documenteditor/mobile/src/view/edit/Edit.jsx @@ -284,6 +284,13 @@ const EditTabs = props => { component: }); } else { + if(inToc) { + editors.push({ + caption: _t.textTableOfCont, + id: 'edit-table-contents', + component: + }) + } if (settings.indexOf('text') > -1) { editors.push({ caption: _t.textText, @@ -333,13 +340,6 @@ const EditTabs = props => { component: }) } - if(inToc) { - editors.push({ - caption: _t.textTableOfCont, - id: 'edit-table-contents', - component: - }) - } if (settings.indexOf('hyperlink') > -1) { editors.push({ caption: _t.textHyperlink, diff --git a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx index dd6b5764e..bec2b3377 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx @@ -193,7 +193,6 @@ const EditParagraph = props => { const curStyleName = storeParagraphSettings.styleName; const curStyle = paragraphStyles.find(style => style.name === curStyleName); const thumbSize = storeParagraphSettings.styleThumbSize; - const paragraph = props.storeFocusObjects.paragraphObject; const curBackColor = storeParagraphSettings.backColor ? storeParagraphSettings.backColor : storeParagraphSettings.getBackgroundColor(paragraph); const background = curBackColor !== 'transparent' ? `#${(typeof curBackColor === "object" ? curBackColor.color : curBackColor)}` : curBackColor; @@ -203,14 +202,14 @@ const EditParagraph = props => { {t('Edit.textParagraphStyle')} - -
+ {curStyle && +
+ }
From e42018745a0f880d72749dc7d8c06a1f79c832a2 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 24 Jun 2022 22:09:02 +0300 Subject: [PATCH 017/285] [mobile] fix bug 57796 --- apps/common/mobile/lib/view/About.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/view/About.jsx b/apps/common/mobile/lib/view/About.jsx index 237a4dcab..8ba3d0484 100644 --- a/apps/common/mobile/lib/view/About.jsx +++ b/apps/common/mobile/lib/view/About.jsx @@ -128,7 +128,7 @@ const PageAbout = props => { }; const About = inject("storeAppOptions")(observer(PageAbout)); -About.appVersion = () => (__PRODUCT_VERSION__); +About.appVersion = () => (__PRODUCT_VERSION__).match(/\d+.\d+.\d+/)[0]; // skip build number About.compareVersions = () => /d$/.test(__PRODUCT_VERSION__); About.developVersion = () => /(?:d|debug)$/.test(__PRODUCT_VERSION__); From 45aea82e9f79e633a70efe48696811b3450b95ed Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Sat, 25 Jun 2022 14:00:17 +0300 Subject: [PATCH 018/285] [DE] Bug 57795, 57797 --- apps/common/main/lib/view/SearchPanel.js | 7 +++++-- apps/documenteditor/main/app/controller/Search.js | 13 +++++++++---- apps/documenteditor/main/locale/en.json | 1 + 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/view/SearchPanel.js b/apps/common/main/lib/view/SearchPanel.js index 1f1d52163..a4711695e 100644 --- a/apps/common/main/lib/view/SearchPanel.js +++ b/apps/common/main/lib/view/SearchPanel.js @@ -326,7 +326,9 @@ define([ if (count > 300) { text = this.textTooManyResults; } else { - text = current === 'no-results' ? this.textNoSearchResults : (!count ? this.textNoMatches : Common.Utils.String.format(this.textSearchResults, current + 1, count)); + text = current === 'no-results' ? this.textNoSearchResults : + (current === 'stop' ? this.textSearchHasStopped : + (!count ? this.textNoMatches : Common.Utils.String.format(this.textSearchResults, current + 1, count))); } this.$reaultsNumber.text(text); this.disableReplaceButtons(!count); @@ -412,7 +414,8 @@ define([ textName: 'Name', textCell: 'Cell', textValue: 'Value', - textFormula: 'Formula' + textFormula: 'Formula', + textSearchHasStopped: 'Search has stopped' }, Common.Views.SearchPanel || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Search.js b/apps/documenteditor/main/app/controller/Search.js index 649e8f73c..21e8f7825 100644 --- a/apps/documenteditor/main/app/controller/Search.js +++ b/apps/documenteditor/main/app/controller/Search.js @@ -100,6 +100,7 @@ define([ this.api.asc_registerCallback('asc_onEndTextAroundSearch', _.bind(this.onEndTextAroundSearch, this)); this.api.asc_registerCallback('asc_onGetTextAroundSearchPack', _.bind(this.onApiGetTextAroundSearch, this)); this.api.asc_registerCallback('asc_onRemoveTextAroundSearch', _.bind(this.onApiRemoveTextAroundSearch, this)); + this.api.asc_registerCallback('asc_onSearchEnd', _.bind(this.onApiSearchEnd, this)); } return this; }, @@ -215,7 +216,7 @@ define([ searchSettings.put_MatchCase(this._state.matchCase); searchSettings.put_WholeWords(this._state.matchWord); if (!this.api.asc_replaceText(searchSettings, textReplace, false)) { - this.allResultsWasRemoved(); + this.removeResultItems(); } } }, @@ -242,14 +243,14 @@ define([ searchSettings.put_WholeWords(this._state.matchWord); this.api.asc_replaceText(searchSettings, textReplace, true); - this.allResultsWasRemoved(); + this.removeResultItems(); } }, - allResultsWasRemoved: function () { + removeResultItems: function (type) { this.resultItems = []; this.hideResults(); - this.view.updateResultsNumber(undefined, 0); + this.view.updateResultsNumber(type, 0); // type === undefined, count === 0 -> no matches this.view.disableReplaceButtons(true); this._state.currentResult = 0; this._state.resultsNumber = 0; @@ -420,6 +421,10 @@ define([ } }, + onApiSearchEnd: function () { + this.removeResultItems('stop'); + }, + notcriticalErrorTitle: 'Warning', warnReplaceString: '{0} is not a valid special character for the Replace With box.' diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 76ab2592b..ece2b315f 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -480,6 +480,7 @@ "Common.Views.SearchPanel.textWholeWords": "Whole words only", "Common.Views.SearchPanel.tipNextResult": "Next result", "Common.Views.SearchPanel.tipPreviousResult": "Previous result", + "Common.Views.SearchPanel.textSearchHasStopped": "Search has stopped", "Common.Views.SelectFileDlg.textLoading": "Loading", "Common.Views.SelectFileDlg.textTitle": "Select Data Source", "Common.Views.SignDialog.textBold": "Bold", From c39cee6880009b465e09182aa519bab166f6f0ef Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sun, 26 Jun 2022 13:43:51 +0300 Subject: [PATCH 019/285] Fix tooltips with special keys on Win/Mac, fix translation --- apps/common/main/lib/util/utils.js | 12 +++++++++--- .../main/app/controller/DocumentHolder.js | 2 +- apps/documenteditor/main/app/view/DocumentHolder.js | 2 +- apps/documenteditor/main/locale/az.json | 2 +- apps/documenteditor/main/locale/be.json | 2 +- apps/documenteditor/main/locale/bg.json | 2 +- apps/documenteditor/main/locale/ca.json | 2 +- apps/documenteditor/main/locale/cs.json | 2 +- apps/documenteditor/main/locale/da.json | 2 +- apps/documenteditor/main/locale/de.json | 5 ++++- apps/documenteditor/main/locale/el.json | 2 +- apps/documenteditor/main/locale/en.json | 5 ++++- apps/documenteditor/main/locale/es.json | 2 +- apps/documenteditor/main/locale/eu.json | 2 +- apps/documenteditor/main/locale/fi.json | 2 +- apps/documenteditor/main/locale/fr.json | 2 +- apps/documenteditor/main/locale/gl.json | 2 +- apps/documenteditor/main/locale/hu.json | 2 +- apps/documenteditor/main/locale/hy.json | 2 +- apps/documenteditor/main/locale/id.json | 2 +- apps/documenteditor/main/locale/it.json | 2 +- apps/documenteditor/main/locale/ja.json | 2 +- apps/documenteditor/main/locale/ko.json | 2 +- apps/documenteditor/main/locale/lo.json | 2 +- apps/documenteditor/main/locale/lv.json | 2 +- apps/documenteditor/main/locale/ms.json | 2 +- apps/documenteditor/main/locale/nl.json | 2 +- apps/documenteditor/main/locale/pl.json | 2 +- apps/documenteditor/main/locale/pt-PT.json | 2 +- apps/documenteditor/main/locale/pt.json | 2 +- apps/documenteditor/main/locale/ro.json | 2 +- apps/documenteditor/main/locale/ru.json | 2 +- apps/documenteditor/main/locale/sk.json | 2 +- apps/documenteditor/main/locale/sl.json | 2 +- apps/documenteditor/main/locale/sv.json | 2 +- apps/documenteditor/main/locale/tr.json | 2 +- apps/documenteditor/main/locale/uk.json | 2 +- apps/documenteditor/main/locale/vi.json | 2 +- apps/documenteditor/main/locale/zh-TW.json | 2 +- apps/documenteditor/main/locale/zh.json | 2 +- .../main/app/controller/DocumentHolder.js | 2 +- .../main/app/view/DocumentHolder.js | 2 +- apps/presentationeditor/main/locale/az.json | 2 +- apps/presentationeditor/main/locale/be.json | 2 +- apps/presentationeditor/main/locale/bg.json | 2 +- apps/presentationeditor/main/locale/ca.json | 2 +- apps/presentationeditor/main/locale/cs.json | 2 +- apps/presentationeditor/main/locale/da.json | 2 +- apps/presentationeditor/main/locale/de.json | 5 ++++- apps/presentationeditor/main/locale/el.json | 2 +- apps/presentationeditor/main/locale/en.json | 5 ++++- apps/presentationeditor/main/locale/es.json | 2 +- apps/presentationeditor/main/locale/eu.json | 2 +- apps/presentationeditor/main/locale/fi.json | 2 +- apps/presentationeditor/main/locale/fr.json | 2 +- apps/presentationeditor/main/locale/gl.json | 2 +- apps/presentationeditor/main/locale/hu.json | 2 +- apps/presentationeditor/main/locale/hy.json | 2 +- apps/presentationeditor/main/locale/id.json | 2 +- apps/presentationeditor/main/locale/it.json | 2 +- apps/presentationeditor/main/locale/ja.json | 2 +- apps/presentationeditor/main/locale/ko.json | 2 +- apps/presentationeditor/main/locale/lo.json | 2 +- apps/presentationeditor/main/locale/lv.json | 2 +- apps/presentationeditor/main/locale/ms.json | 2 +- apps/presentationeditor/main/locale/nl.json | 2 +- apps/presentationeditor/main/locale/pl.json | 2 +- apps/presentationeditor/main/locale/pt-PT.json | 2 +- apps/presentationeditor/main/locale/pt.json | 2 +- apps/presentationeditor/main/locale/ro.json | 2 +- apps/presentationeditor/main/locale/ru.json | 2 +- apps/presentationeditor/main/locale/sk.json | 2 +- apps/presentationeditor/main/locale/sl.json | 2 +- apps/presentationeditor/main/locale/sv.json | 2 +- apps/presentationeditor/main/locale/tr.json | 2 +- apps/presentationeditor/main/locale/uk.json | 2 +- apps/presentationeditor/main/locale/vi.json | 2 +- apps/presentationeditor/main/locale/zh-TW.json | 2 +- apps/presentationeditor/main/locale/zh.json | 2 +- 79 files changed, 99 insertions(+), 81 deletions(-) diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 92ec5261f..52ca72d75 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -436,7 +436,7 @@ var metrics = new(function() { } })(); -Common.Utils.Metric = _extend_object(Common.Utils.Metric, metrics); +Common.Utils.Metric = _extend_object(metrics, Common.Utils.Metric); Common.Utils.RGBColor = function(colorString) { var r, g, b; @@ -603,8 +603,12 @@ Common.Utils.RGBColor = function(colorString) { } }; -Common.Utils.String = new (function() { +var utilsString = new (function() { return { + textCtrl: 'Ctrl', + textShift: 'Shift', + textAlt: 'Alt', + format: function(format) { var args = _.toArray(arguments).slice(1); if (args.length && typeof args[0] == 'object') @@ -648,7 +652,7 @@ Common.Utils.String = new (function() { return Common.Utils.String.format(template, string.replace(/\+(?=\S)/g, '').replace(/Ctrl|ctrl/g, '⌘').replace(/Alt|alt/g, '⌥').replace(/Shift|shift/g, '⇧')); } - return Common.Utils.String.format(template, string); + return Common.Utils.String.format(template, string.replace(/Ctrl|ctrl/g, this.textCtrl).replace(/Alt|alt/g, this.textAlt).replace(/Shift|shift/g, this.textShift)); }, parseFloat: function(string) { @@ -680,6 +684,8 @@ Common.Utils.String = new (function() { } })(); +Common.Utils.String = _extend_object(utilsString, Common.Utils.String); + Common.Utils.isBrowserSupported = function() { return !((Common.Utils.ieVersion != 0 && Common.Utils.ieVersion < 10.0) || (Common.Utils.safariVersion != 0 && Common.Utils.safariVersion < 5.0) || diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index bb8e521f1..edd05a06c 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -998,7 +998,7 @@ define([ ToolTip = Common.Utils.String.htmlEncode(ToolTip); if (screenTip.tipType !== type || screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 ) { - screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (ToolTip + '
' + me.documentHolder.txtPressLink + '') : ToolTip); + screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (ToolTip + '
' + Common.Utils.String.platformKey('Ctrl', me.documentHolder.txtPressLink) + '') : ToolTip); screenTip.tipLength = ToolTip.length; screenTip.strTip = ToolTip; screenTip.tipType = type; diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 41e2eba48..86905e901 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2876,7 +2876,7 @@ define([ styleText : 'Formatting as Style', saveStyleText : 'Create new style', updateStyleText : 'Update %1 style', - txtPressLink : 'Press CTRL and click link', + txtPressLink : 'Press {0} and click link', selectText : 'Select', insertRowText : 'Insert Row', insertColumnText : 'Insert Column', diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index c018b1eab..1b30cd9ec 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -1569,7 +1569,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Mətnin üstündə xətt", "DE.Views.DocumentHolder.txtOverwriteCells": "Xanaların üzərinə yazın", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mənbə formatını saxlayın", - "DE.Views.DocumentHolder.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin", + "DE.Views.DocumentHolder.txtPressLink": "{0} düyməsinə basıb linkə klikləyin", "DE.Views.DocumentHolder.txtPrintSelection": "Seçimi çap edin", "DE.Views.DocumentHolder.txtRemFractionBar": "Kəsr xəttini silin", "DE.Views.DocumentHolder.txtRemLimit": "Limiti silin", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 019484c50..4dec95a20 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -1501,7 +1501,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Лінія па-над тэкстам", "DE.Views.DocumentHolder.txtOverwriteCells": "Перазапісаць ячэйкі", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Пакінуць зыходнае фарматаванне", - "DE.Views.DocumentHolder.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", + "DE.Views.DocumentHolder.txtPressLink": "Націсніце {0} і пстрыкніце па спасылцы", "DE.Views.DocumentHolder.txtPrintSelection": "Надрукаваць вылучанае", "DE.Views.DocumentHolder.txtRemFractionBar": "Выдаліць рыску дробу", "DE.Views.DocumentHolder.txtRemLimit": "Выдаліць ліміт", diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index f5dc726a2..7f0c0dbaa 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -1272,7 +1272,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Завършете текст", "DE.Views.DocumentHolder.txtOverwriteCells": "Презаписване на клетки", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Запазете форматирането на източника", - "DE.Views.DocumentHolder.txtPressLink": "Натиснете CTRL и кликнете върху връзката", + "DE.Views.DocumentHolder.txtPressLink": "Натиснете {0} и кликнете върху връзката", "DE.Views.DocumentHolder.txtRemFractionBar": "Премахване на фракционната лента", "DE.Views.DocumentHolder.txtRemLimit": "Премахване на ограничението", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Премахване на акцент", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 69ddbae69..20bcdba04 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriu les cel·les", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", - "DE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", + "DE.Views.DocumentHolder.txtPressLink": "Premeu {0} i feu clic a l'enllaç", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", "DE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", "DE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 6af05fb02..f4d6fb513 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Čárka nad textem", "DE.Views.DocumentHolder.txtOverwriteCells": "Přepsat buňky", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", - "DE.Views.DocumentHolder.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", + "DE.Views.DocumentHolder.txtPressLink": "Stiskněte {0} a klikněte na odkaz", "DE.Views.DocumentHolder.txtPrintSelection": "Vytisknout vybrané", "DE.Views.DocumentHolder.txtRemFractionBar": "Odstranit zlomkovou čáru", "DE.Views.DocumentHolder.txtRemLimit": "Odebrat limit", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index ecef6db09..d56c71d49 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -1569,7 +1569,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Linie over tekst", "DE.Views.DocumentHolder.txtOverwriteCells": "Overskriv celler", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behold oprindelig formattering", - "DE.Views.DocumentHolder.txtPressLink": "Tryk CTRL og klik på linket", + "DE.Views.DocumentHolder.txtPressLink": "Tryk {0} og klik på linket", "DE.Views.DocumentHolder.txtPrintSelection": "Printer-valg", "DE.Views.DocumentHolder.txtRemFractionBar": "Fjern fraktionsbar", "DE.Views.DocumentHolder.txtRemLimit": "Slet begrænsning", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index abea14fec..d6c02286f 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -207,6 +207,9 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Strg", + "Common.Utils.String.textShift": "Umschalt", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "Adresse:", "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", @@ -1618,7 +1621,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Balken über dem Text", "DE.Views.DocumentHolder.txtOverwriteCells": "Zellen überschreiben", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten", - "DE.Views.DocumentHolder.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", + "DE.Views.DocumentHolder.txtPressLink": "Drücken Sie {0} und klicken Sie auf den Link", "DE.Views.DocumentHolder.txtPrintSelection": "Auswahl drucken", "DE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen", "DE.Views.DocumentHolder.txtRemLimit": "Grenzwert entfernen", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 65b86fd89..7eb5f8486 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Μπάρα πάνω από κείμενο", "DE.Views.DocumentHolder.txtOverwriteCells": "Αντικατάσταση κελιών", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής", - "DE.Views.DocumentHolder.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", + "DE.Views.DocumentHolder.txtPressLink": "Πατήστε {0} και κάντε κλικ στο σύνδεσμο", "DE.Views.DocumentHolder.txtPrintSelection": "Εκτύπωση Επιλογής", "DE.Views.DocumentHolder.txtRemFractionBar": "Αφαίρεση γραμμής κλάσματος", "DE.Views.DocumentHolder.txtRemLimit": "Αφαίρεση ορίου", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 76ab2592b..eb4275d16 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -211,6 +211,9 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "address: ", "Common.Views.About.txtLicensee": "LICENSEE", "Common.Views.About.txtLicensor": "LICENSOR", @@ -1626,7 +1629,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", - "DE.Views.DocumentHolder.txtPressLink": "Press Ctrl and click link", + "DE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "DE.Views.DocumentHolder.txtPrintSelection": "Print Selection", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index acfa162e7..f2d66d601 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir las celdas", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original", - "DE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace", + "DE.Views.DocumentHolder.txtPressLink": "Pulse {0} y haga clic en el enlace", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "DE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción", "DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 39f92198f..2201e7e5e 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra testuaren gainean", "DE.Views.DocumentHolder.txtOverwriteCells": "Gainidatzi gelaxkak", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantendu jatorrizko formatua", - "DE.Views.DocumentHolder.txtPressLink": "Sakatu Ctrl eta egin klik estekan", + "DE.Views.DocumentHolder.txtPressLink": "Sakatu {0} eta egin klik estekan", "DE.Views.DocumentHolder.txtPrintSelection": "Inprimatu hautapena", "DE.Views.DocumentHolder.txtRemFractionBar": "Kendu frakzio-barra", "DE.Views.DocumentHolder.txtRemLimit": "Kendu muga", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index f4f120ca5..36183c2ba 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -956,7 +956,7 @@ "DE.Views.DocumentHolder.txtMatchBrackets": "Sovita hakasulkeet argumentin korkeuteen", "DE.Views.DocumentHolder.txtMatrixAlign": "Matriisin tasaus", "DE.Views.DocumentHolder.txtOverbar": "Tekstin yläpalkki", - "DE.Views.DocumentHolder.txtPressLink": "Paina CTRL näppäintä ja klikkaa linkkiä", + "DE.Views.DocumentHolder.txtPressLink": "Paina {0} näppäintä ja klikkaa linkkiä", "DE.Views.DocumentHolder.txtRemFractionBar": "Poista murtoluku pylväs", "DE.Views.DocumentHolder.txtRemLimit": "Poista rajoitus", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Poista aksentti kirjain", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 9bdcbaa0d..d28fd860a 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barre au-dessus d'un texte", "DE.Views.DocumentHolder.txtOverwriteCells": "Remplacer les cellules", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source", - "DE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", + "DE.Views.DocumentHolder.txtPressLink": "Appuyez sur {0} et cliquez sur le lien", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimer la sélection", "DE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction", "DE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 984e44efc..fd6215e5c 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir as celdas", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatación original", - "DE.Views.DocumentHolder.txtPressLink": "Prema Ctrl e na ligazón", + "DE.Views.DocumentHolder.txtPressLink": "Prema {0} e na ligazón", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "DE.Views.DocumentHolder.txtRemFractionBar": "Eliminar a barra de fracción", "DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 012046e31..f0f3f8db6 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött", "DE.Views.DocumentHolder.txtOverwriteCells": "Cellák felülírása", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása", - "DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", + "DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a {0} billentyűt és kattintson a hivatkozásra", "DE.Views.DocumentHolder.txtPrintSelection": "Nyomtató kiválasztás", "DE.Views.DocumentHolder.txtRemFractionBar": "Törtjel eltávolítása", "DE.Views.DocumentHolder.txtRemLimit": "Limit eltávolítása", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index cffbc7d96..d3cc4deb0 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Տեքստի վրա գիծ", "DE.Views.DocumentHolder.txtOverwriteCells": "Փոխարինել վանդակների բովանդակությունը", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Պահպանել սկզբնական ձևաչափը", - "DE.Views.DocumentHolder.txtPressLink": "Սեղմել Ctrl և անցնել հղումը", + "DE.Views.DocumentHolder.txtPressLink": "Սեղմել {0} և անցնել հղումը", "DE.Views.DocumentHolder.txtPrintSelection": "Տպել ընտրվածքը", "DE.Views.DocumentHolder.txtRemFractionBar": "Հեռացնել կոտորակի գիծը", "DE.Views.DocumentHolder.txtRemLimit": "Հեռացնել սահմանը", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index db551b104..2d240427b 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -1584,7 +1584,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar di atas teks", "DE.Views.DocumentHolder.txtOverwriteCells": "Tiban sel", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", - "DE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik link", + "DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik link", "DE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan", "DE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", "DE.Views.DocumentHolder.txtRemLimit": "Hilangkan limit", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 22d8d43cd..96682099c 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sopra al testo", "DE.Views.DocumentHolder.txtOverwriteCells": "Sovrascrivi celle", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantieni la formattazione sorgente", - "DE.Views.DocumentHolder.txtPressLink": "Premi CTRL e clicca sul collegamento", + "DE.Views.DocumentHolder.txtPressLink": "Premi {0} e clicca sul collegamento", "DE.Views.DocumentHolder.txtPrintSelection": "Stampa Selezione", "DE.Views.DocumentHolder.txtRemFractionBar": "Rimuovi la barra di frazione", "DE.Views.DocumentHolder.txtRemLimit": "Rimuovi limite", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 9af1424a2..23a40e9de 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "テキストの上のバー", "DE.Views.DocumentHolder.txtOverwriteCells": "セルを上書きする", "DE.Views.DocumentHolder.txtPasteSourceFormat": "元の書式付けを保存する", - "DE.Views.DocumentHolder.txtPressLink": "Ctrlキーを押しながらリンクをクリックしてください", + "DE.Views.DocumentHolder.txtPressLink": "{0}キーを押しながらリンクをクリックしてください", "DE.Views.DocumentHolder.txtPrintSelection": "選択範囲の印刷", "DE.Views.DocumentHolder.txtRemFractionBar": "分数線の削除", "DE.Views.DocumentHolder.txtRemLimit": "制限を削除する", diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index b7543c2c8..621917c9a 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기", "DE.Views.DocumentHolder.txtOverwriteCells": "셀에 덮어쓰기", "DE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요", - "DE.Views.DocumentHolder.txtPressLink": "Ctrl 키를 누르고 링크를 클릭합니다.", + "DE.Views.DocumentHolder.txtPressLink": "{0} 키를 누르고 링크를 클릭합니다.", "DE.Views.DocumentHolder.txtPrintSelection": "선택 항목 인쇄", "DE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거", "DE.Views.DocumentHolder.txtRemLimit": "제한 제거", diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index e3122f883..51f0cbee7 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "ຂີດທັບຕົວໜັງສື", "DE.Views.DocumentHolder.txtOverwriteCells": "ຂຽນທັບແຊວ", "DE.Views.DocumentHolder.txtPasteSourceFormat": "ຮັກສາຮູບແບບແຫຼ່ງຂໍ້ມູນ", - "DE.Views.DocumentHolder.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", + "DE.Views.DocumentHolder.txtPressLink": "ກົດ {0} ແລະກົດລິ້ງ", "DE.Views.DocumentHolder.txtPrintSelection": "ານຄັດເລືອກການພິມ", "DE.Views.DocumentHolder.txtRemFractionBar": "ລຶບແຖບສວ່ນໜຶ່ງອອກ", "DE.Views.DocumentHolder.txtRemLimit": "ເອົາຂໍ້ຈຳກັດອອກ", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index 35882dd72..a99946de3 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -966,7 +966,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Pārrakstīt šūnas", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Atstāt sākotnējo formatējumu", - "DE.Views.DocumentHolder.txtPressLink": "Nospiediet CTRL un noklikšķiniet saiti", + "DE.Views.DocumentHolder.txtPressLink": "Nospiediet {0} un noklikšķiniet saiti", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index c64c5657c..330a312ea 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -1582,7 +1582,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar melepasi teks", "DE.Views.DocumentHolder.txtOverwriteCells": "Tulis Ganti Sel", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Kekalkan sumber pemformatan", - "DE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik pautan", + "DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik pautan", "DE.Views.DocumentHolder.txtPrintSelection": "Pemilihan Cetakan", "DE.Views.DocumentHolder.txtRemFractionBar": "Alih keluar bar pecahan", "DE.Views.DocumentHolder.txtRemLimit": "Alih keluar had", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 9f6b0cb17..7e6b4f61d 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Streep boven tekst", "DE.Views.DocumentHolder.txtOverwriteCells": "Cellen overschrijven", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", - "DE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling", + "DE.Views.DocumentHolder.txtPressLink": "Druk op {0} en klik op koppeling", "DE.Views.DocumentHolder.txtPrintSelection": "Selectie afdrukken", "DE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", "DE.Views.DocumentHolder.txtRemLimit": "Limiet verwijderen", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 57c43b75a..cf41e9243 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -1572,7 +1572,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", "DE.Views.DocumentHolder.txtOverwriteCells": "Wymień zawartość komórki", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Zachowaj formatowanie źródłowe", - "DE.Views.DocumentHolder.txtPressLink": "Naciśnij Ctrl i kliknij w link", + "DE.Views.DocumentHolder.txtPressLink": "Naciśnij {0} i kliknij w link", "DE.Views.DocumentHolder.txtPrintSelection": "Drukuj wybrane", "DE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", "DE.Views.DocumentHolder.txtRemLimit": "Usuń limit", diff --git a/apps/documenteditor/main/locale/pt-PT.json b/apps/documenteditor/main/locale/pt-PT.json index 662dfaa60..36bbe4329 100644 --- a/apps/documenteditor/main/locale/pt-PT.json +++ b/apps/documenteditor/main/locale/pt-PT.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra por cima do texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Substituir células", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", - "DE.Views.DocumentHolder.txtPressLink": "Prima Ctrl e clique na ligação", + "DE.Views.DocumentHolder.txtPressLink": "Prima {0} e clique na ligação", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "DE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", "DE.Views.DocumentHolder.txtRemLimit": "Remover limite", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 51c69b92d..52a005760 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobrescrever células", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação da origem", - "DE.Views.DocumentHolder.txtPressLink": "Pressione CTRL e clique no link", + "DE.Views.DocumentHolder.txtPressLink": "Pressione {0} e clique no link", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "DE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", "DE.Views.DocumentHolder.txtRemLimit": "Remover limite", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 504296b27..1ab03d52e 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -1626,7 +1626,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bară deasupra textului", "DE.Views.DocumentHolder.txtOverwriteCells": "Suprascriere celule", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Păstrare formatare sursă", - "DE.Views.DocumentHolder.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", + "DE.Views.DocumentHolder.txtPressLink": "Apăsați {0} și faceți clic pe linkul", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimare selecție", "DE.Views.DocumentHolder.txtRemFractionBar": "Eliminare bară de fracție", "DE.Views.DocumentHolder.txtRemLimit": "Eliminare limită", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 59c005cdb..1115bed98 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1626,7 +1626,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Черта над текстом", "DE.Views.DocumentHolder.txtOverwriteCells": "Заменить содержимое ячеек", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование", - "DE.Views.DocumentHolder.txtPressLink": "Нажмите Ctrl и щелкните по ссылке", + "DE.Views.DocumentHolder.txtPressLink": "Нажмите {0} и щелкните по ссылке", "DE.Views.DocumentHolder.txtPrintSelection": "Напечатать выделенное", "DE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту", "DE.Views.DocumentHolder.txtRemLimit": "Удалить предел", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index be69cf270..f63430b8c 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -1584,7 +1584,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Čiara nad textom", "DE.Views.DocumentHolder.txtOverwriteCells": "Prepísať bunky", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Uchovať zdrojové formátovanie", - "DE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", + "DE.Views.DocumentHolder.txtPressLink": "Stlačte {0} a kliknite na odkaz", "DE.Views.DocumentHolder.txtPrintSelection": "Výber tlače", "DE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "DE.Views.DocumentHolder.txtRemLimit": "Odstrániť limitu", diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index a6caaaa87..4a53ab72d 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -1083,7 +1083,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ohrani izvorno oblikovanje", - "DE.Views.DocumentHolder.txtPressLink": "Pritisnite CTRL in pritisnite povezavo", + "DE.Views.DocumentHolder.txtPressLink": "Pritisnite {0} in pritisnite povezavo", "DE.Views.DocumentHolder.txtPrintSelection": "Nastisni izbor", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 90c03b301..dd40e5824 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -1584,7 +1584,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Linje ovanför text", "DE.Views.DocumentHolder.txtOverwriteCells": "Skriv över celler", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll källformatering", - "DE.Views.DocumentHolder.txtPressLink": "Tryck på CTRL och klicka på länken", + "DE.Views.DocumentHolder.txtPressLink": "Tryck på {0} och klicka på länken", "DE.Views.DocumentHolder.txtPrintSelection": "Skriv ut markering", "DE.Views.DocumentHolder.txtRemFractionBar": "Ta bort fraktionslinje", "DE.Views.DocumentHolder.txtRemLimit": "Ta bort begränsning", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 7386264cf..8a7f60afd 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Hücrelerin üzerine yaz", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Kaynak biçimlendirmesini koruyun", - "DE.Views.DocumentHolder.txtPressLink": "Ctrl'ye basın ve bağlantıya tıklayın", + "DE.Views.DocumentHolder.txtPressLink": "{0}'ye basın ve bağlantıya tıklayın", "DE.Views.DocumentHolder.txtPrintSelection": "Seçimi Yazdır", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 8fafe542d..d434ab71e 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -1580,7 +1580,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Риска над текстом", "DE.Views.DocumentHolder.txtOverwriteCells": "Перезаписати комірки", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", - "DE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "DE.Views.DocumentHolder.txtPressLink": "Натисніть {0} та клацніть по посиланню", "DE.Views.DocumentHolder.txtPrintSelection": "Надрукувати виділене", "DE.Views.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", "DE.Views.DocumentHolder.txtRemLimit": "Вилучити обмеження", diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index c16aaaf88..2f60b0c02 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -854,7 +854,7 @@ "DE.Views.DocumentHolder.txtMatchBrackets": "Chỉnh dấu ngoặc phù hợp với độ cao đối số", "DE.Views.DocumentHolder.txtMatrixAlign": "Căn chỉnh ma trận", "DE.Views.DocumentHolder.txtOverbar": "Gạch trên văn bản", - "DE.Views.DocumentHolder.txtPressLink": "Ấn CTRL và nhấp vào liên kết", + "DE.Views.DocumentHolder.txtPressLink": "Ấn {0} và nhấp vào liên kết", "DE.Views.DocumentHolder.txtRemFractionBar": "Xóa dấu phân số", "DE.Views.DocumentHolder.txtRemLimit": "Xóa giới hạn", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Xóa ký tự dấu phụ", diff --git a/apps/documenteditor/main/locale/zh-TW.json b/apps/documenteditor/main/locale/zh-TW.json index f47995b9e..ada8f16d1 100644 --- a/apps/documenteditor/main/locale/zh-TW.json +++ b/apps/documenteditor/main/locale/zh-TW.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "槓覆蓋文字", "DE.Views.DocumentHolder.txtOverwriteCells": "覆蓋儲存格", "DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "DE.Views.DocumentHolder.txtPressLink": "按Ctrl並單擊連結", + "DE.Views.DocumentHolder.txtPressLink": "按{0}並單擊連結", "DE.Views.DocumentHolder.txtPrintSelection": "列印選擇", "DE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", "DE.Views.DocumentHolder.txtRemLimit": "取消限制", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index cc163eb67..8f87062c3 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "文本上一条", "DE.Views.DocumentHolder.txtOverwriteCells": "覆盖单元格", "DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "DE.Views.DocumentHolder.txtPressLink": "按CTRL并单击链接", + "DE.Views.DocumentHolder.txtPressLink": "按{0}并单击链接", "DE.Views.DocumentHolder.txtPrintSelection": "打印选择", "DE.Views.DocumentHolder.txtRemFractionBar": "去除分数吧", "DE.Views.DocumentHolder.txtRemLimit": "删除限制", diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js index e4988371d..e684c1287 100644 --- a/apps/presentationeditor/main/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js @@ -829,7 +829,7 @@ define([ ToolTip = ToolTip.substr(0, 256) + '...'; if (screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 ) { - screenTip.toolTip.setTitle(ToolTip + (me.isPreviewVisible ? '' : '
' + me.documentHolder.txtPressLink + '')); + screenTip.toolTip.setTitle(ToolTip + (me.isPreviewVisible ? '' : '
' + Common.Utils.String.platformKey('Ctrl', me.documentHolder.txtPressLink) + '')); screenTip.tipLength = ToolTip.length; screenTip.strTip = ToolTip; recalc = true; diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index ebb431b4a..44fdb2786 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -2269,7 +2269,7 @@ define([ hyperlinkText : 'Hyperlink', editHyperlinkText : 'Edit Hyperlink', removeHyperlinkText : 'Remove Hyperlink', - txtPressLink : 'Press CTRL and click link', + txtPressLink : 'Press {0} and click link', selectText : 'Select', insertRowText : 'Insert Row', insertColumnText : 'Insert Column', diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index f21aeaf3d..0d386d7a3 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -1256,7 +1256,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Təyinat mövzusundan istifadə edin", "PE.Views.DocumentHolder.txtPastePicture": "Şəkil", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mənbə formatını saxlayın", - "PE.Views.DocumentHolder.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin", + "PE.Views.DocumentHolder.txtPressLink": "{0} düyməsinə basıb linkə klikləyin", "PE.Views.DocumentHolder.txtPreview": "Slaydı başladın", "PE.Views.DocumentHolder.txtPrintSelection": "Seçimi çap edin", "PE.Views.DocumentHolder.txtRemFractionBar": "Kəsr xəttini silin", diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index 097de55d8..f420ff8c3 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -1229,7 +1229,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Выкарыстоўваць канцавую тэму", "PE.Views.DocumentHolder.txtPastePicture": "Малюнак", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Пакінуць зыходнае фарматаванне", - "PE.Views.DocumentHolder.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", + "PE.Views.DocumentHolder.txtPressLink": "Націсніце {0} і пстрыкніце па спасылцы", "PE.Views.DocumentHolder.txtPreview": "Распачаць слайд-шоу", "PE.Views.DocumentHolder.txtPrintSelection": "Надрукаваць вылучанае", "PE.Views.DocumentHolder.txtRemFractionBar": "Выдаліць рыску дробу", diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index c228f1005..b3a0fcada 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -1072,7 +1072,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Използвайте целевата тема", "PE.Views.DocumentHolder.txtPastePicture": "Снимка", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Запазете форматирането на източника", - "PE.Views.DocumentHolder.txtPressLink": "Натиснете CTRL и кликнете върху връзката", + "PE.Views.DocumentHolder.txtPressLink": "Натиснете {0} и кликнете върху връзката", "PE.Views.DocumentHolder.txtPreview": "Започнете слайдшоуто", "PE.Views.DocumentHolder.txtRemFractionBar": "Премахване на фракционната лента", "PE.Views.DocumentHolder.txtRemLimit": "Премахване на ограничението", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 325a3381e..0a43e242d 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Fes servir el tema de destinació", "PE.Views.DocumentHolder.txtPastePicture": "Imatge", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", - "PE.Views.DocumentHolder.txtPressLink": "Prem CTRL i clica a l'enllaç", + "PE.Views.DocumentHolder.txtPressLink": "Prem {0} i clica a l'enllaç", "PE.Views.DocumentHolder.txtPreview": "Inicia la presentació de diapositives", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", "PE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 4b5313b92..f12659f8b 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový vzhledu prostředí", "PE.Views.DocumentHolder.txtPastePicture": "Obrázek", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", - "PE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz", + "PE.Views.DocumentHolder.txtPressLink": "Stikněte {0} a klikněte na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustit prezentaci", "PE.Views.DocumentHolder.txtPrintSelection": "Vytisknout vybrané", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstranit zlomkovou čáru", diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index 0b6c12005..65c5270c3 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -1254,7 +1254,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Brug destinations tema", "PE.Views.DocumentHolder.txtPastePicture": "Billede", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behold oprindelig formatering", - "PE.Views.DocumentHolder.txtPressLink": "Tryk CTRL og klik på linket", + "PE.Views.DocumentHolder.txtPressLink": "Tryk {0} og klik på linket", "PE.Views.DocumentHolder.txtPreview": "Start diasshow", "PE.Views.DocumentHolder.txtPrintSelection": "Printer-valg", "PE.Views.DocumentHolder.txtRemFractionBar": "Fjern fraktionsbar", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index a92441f9d..0573af4ad 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -294,6 +294,9 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Strg", + "Common.Utils.String.textShift": "Umschalt", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "Adresse: ", "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", @@ -1536,7 +1539,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Zieldesign verwenden", "PE.Views.DocumentHolder.txtPastePicture": "Bild", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten", - "PE.Views.DocumentHolder.txtPressLink": "Drücken Sie auf die STRG-Taste und klicken Sie auf den Link", + "PE.Views.DocumentHolder.txtPressLink": "Drücken Sie auf die {0}-Taste und klicken Sie auf den Link", "PE.Views.DocumentHolder.txtPreview": "Vorschau starten", "PE.Views.DocumentHolder.txtPrintSelection": "Auswahl drucken", "PE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 06276115a..32d7da4f9 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Χρήση θέματος προορισμού", "PE.Views.DocumentHolder.txtPastePicture": "Εικόνα", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής", - "PE.Views.DocumentHolder.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", + "PE.Views.DocumentHolder.txtPressLink": "Πατήστε {0} και κάντε κλικ στο σύνδεσμο", "PE.Views.DocumentHolder.txtPreview": "Εκκίνηση παρουσίασης", "PE.Views.DocumentHolder.txtPrintSelection": "Εκτύπωση Επιλογής", "PE.Views.DocumentHolder.txtRemFractionBar": "Αφαίρεση γραμμής κλάσματος", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index a6224767f..79183af7e 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -298,6 +298,9 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "address: ", "Common.Views.About.txtLicensee": "LICENSEE", "Common.Views.About.txtLicensor": "LICENSOR", @@ -1544,7 +1547,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use destination theme", "PE.Views.DocumentHolder.txtPastePicture": "Picture", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", - "PE.Views.DocumentHolder.txtPressLink": "Press Ctrl and click link", + "PE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "PE.Views.DocumentHolder.txtPreview": "Start slideshow", "PE.Views.DocumentHolder.txtPrintSelection": "Print Selection", "PE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 5d7a8c0b7..5695fc706 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use el tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imagen", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original", - "PE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace", + "PE.Views.DocumentHolder.txtPressLink": "Pulse {0} y haga clic en el enlace", "PE.Views.DocumentHolder.txtPreview": "Iniciar presentación", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "PE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción", diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json index ff5229a4f..f91c1d005 100644 --- a/apps/presentationeditor/main/locale/eu.json +++ b/apps/presentationeditor/main/locale/eu.json @@ -1536,7 +1536,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Erabili helburuko gaia", "PE.Views.DocumentHolder.txtPastePicture": "Irudia", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantendu jatorrizko formatua", - "PE.Views.DocumentHolder.txtPressLink": "Sakatu Ctrl eta egin klik estekan", + "PE.Views.DocumentHolder.txtPressLink": "Sakatu {0} eta egin klik estekan", "PE.Views.DocumentHolder.txtPreview": "Aurkezpena hasi", "PE.Views.DocumentHolder.txtPrintSelection": "Inprimatu hautapena", "PE.Views.DocumentHolder.txtRemFractionBar": "Kendu frakzio-barra", diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index 877281a4c..a84a7609c 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -830,7 +830,7 @@ "PE.Views.DocumentHolder.txtNewSlide": "Uusi dia", "PE.Views.DocumentHolder.txtOverbar": "Tekstin yläpalkki", "PE.Views.DocumentHolder.txtPastePicture": "Kuva", - "PE.Views.DocumentHolder.txtPressLink": "Paina CTRL näppäintä ja klikkaa linkkiä", + "PE.Views.DocumentHolder.txtPressLink": "Paina {0} näppäintä ja klikkaa linkkiä", "PE.Views.DocumentHolder.txtPreview": "Aloita Diaesitys", "PE.Views.DocumentHolder.txtRemFractionBar": "Poista murtoluku pylväs", "PE.Views.DocumentHolder.txtRemLimit": "Poista rajoitus", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 62971c10e..0dd2e484e 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Utiliser le thème de destination", "PE.Views.DocumentHolder.txtPastePicture": "Image", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source", - "PE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", + "PE.Views.DocumentHolder.txtPressLink": "Appuyez sur {0} et cliquez sur le lien", "PE.Views.DocumentHolder.txtPreview": "Démarrer le diaporama", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimer la sélection", "PE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index cc70610b3..7d6b495bd 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -1536,7 +1536,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use o tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imaxe", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatación original", - "PE.Views.DocumentHolder.txtPressLink": "Prema Ctrl e na ligazón", + "PE.Views.DocumentHolder.txtPressLink": "Prema {0} e na ligazón", "PE.Views.DocumentHolder.txtPreview": "Iniciar presentación", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "PE.Views.DocumentHolder.txtRemFractionBar": "Eliminar a barra de fracción", diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index 78bd2b90b..e6f301429 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -1293,7 +1293,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Cél téma használata", "PE.Views.DocumentHolder.txtPastePicture": "Kép", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása", - "PE.Views.DocumentHolder.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", + "PE.Views.DocumentHolder.txtPressLink": "Nyomja meg a {0} billentyűt és kattintson a hivatkozásra", "PE.Views.DocumentHolder.txtPreview": "Diavetítés elindítása", "PE.Views.DocumentHolder.txtPrintSelection": "Nyomtató kiválasztás", "PE.Views.DocumentHolder.txtRemFractionBar": "Törtjel eltávolítása", diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index 26272880d..f0d1b393a 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Օգտագործել նպատակակետի ոճը", "PE.Views.DocumentHolder.txtPastePicture": "Նկար", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Պահպանել աղբյուրի ձևաչափը", - "PE.Views.DocumentHolder.txtPressLink": "Սեղմել Ctrl և անցնել հղումը", + "PE.Views.DocumentHolder.txtPressLink": "Սեղմել {0} և անցնել հղումը", "PE.Views.DocumentHolder.txtPreview": "Սկսել պատկերահանդեսը", "PE.Views.DocumentHolder.txtPrintSelection": "Տպել ընտրվածքը", "PE.Views.DocumentHolder.txtRemFractionBar": "Հեռացնել կոտորակի գիծը", diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index 5916b4f0e..a5a7a9583 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -1479,7 +1479,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Gunakan tema destinasi", "PE.Views.DocumentHolder.txtPastePicture": "Gambar", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", - "PE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik link", + "PE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik link", "PE.Views.DocumentHolder.txtPreview": "Mulai slideshow", "PE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan", "PE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index d9a98adc8..17a662d76 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Usa tema di destinazione", "PE.Views.DocumentHolder.txtPastePicture": "Immagine", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantieni la formattazione sorgente", - "PE.Views.DocumentHolder.txtPressLink": "Premi CTRL e clicca sul collegamento", + "PE.Views.DocumentHolder.txtPressLink": "Premi {0} e clicca sul collegamento", "PE.Views.DocumentHolder.txtPreview": "Avvia presentazione", "PE.Views.DocumentHolder.txtPrintSelection": "Stampa Selezione", "PE.Views.DocumentHolder.txtRemFractionBar": "Rimuovi la barra di frazione", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 090b12876..e90507939 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -1536,7 +1536,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "宛先テーマを使用する", "PE.Views.DocumentHolder.txtPastePicture": "画像", "PE.Views.DocumentHolder.txtPasteSourceFormat": "元の書式付けを保存する", - "PE.Views.DocumentHolder.txtPressLink": "CTRLを押してリンクをクリックしてください。", + "PE.Views.DocumentHolder.txtPressLink": "{0}を押してリンクをクリックしてください。", "PE.Views.DocumentHolder.txtPreview": "スライドショーの開始", "PE.Views.DocumentHolder.txtPrintSelection": "選択範囲の印刷", "PE.Views.DocumentHolder.txtRemFractionBar": "分数線の削除", diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index be65671ea..1616ba0ce 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -1495,7 +1495,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "목적 테마를 사용하기", "PE.Views.DocumentHolder.txtPastePicture": "그림", "PE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요", - "PE.Views.DocumentHolder.txtPressLink": "Ctrl 키를 누르고 링크를 클릭합니다.", + "PE.Views.DocumentHolder.txtPressLink": "{0} 키를 누르고 링크를 클릭합니다.", "PE.Views.DocumentHolder.txtPreview": "슬라이드 쇼 시작", "PE.Views.DocumentHolder.txtPrintSelection": "선택 항목 인쇄", "PE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거", diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 91ec52946..bbf6f6d8c 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -1494,7 +1494,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "ໃຊ້ຫົວຂໍ້ເປົ້າໝາຍ", "PE.Views.DocumentHolder.txtPastePicture": "ຮູບພາບ", "PE.Views.DocumentHolder.txtPasteSourceFormat": "ຈັດຮູບແບບແຫຼ່ງທີ່ມາ", - "PE.Views.DocumentHolder.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", + "PE.Views.DocumentHolder.txtPressLink": "ກົດ {0} ແລະກົດລິ້ງ", "PE.Views.DocumentHolder.txtPreview": "ເລີ່ມສະໄລ້", "PE.Views.DocumentHolder.txtPrintSelection": "ານຄັດເລືອກການພິມ", "PE.Views.DocumentHolder.txtRemFractionBar": "ລຶບແຖບສວ່ນໜຶ່ງອອກ", diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index 9b6c7286d..0418daa5e 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -845,7 +845,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Izmantot galamērķa dizainu", "PE.Views.DocumentHolder.txtPastePicture": "Attēls", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Atstāt sākotnējo formatējumu", - "PE.Views.DocumentHolder.txtPressLink": "Press CTRL and click link", + "PE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "PE.Views.DocumentHolder.txtPreview": "Preview", "PE.Views.DocumentHolder.txtRemFractionBar": "Noņemt dalījuma joslu", "PE.Views.DocumentHolder.txtRemLimit": "Noņemt limitu", diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index 20227c091..fb214a07b 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -1489,7 +1489,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Guna tema destinasi", "PE.Views.DocumentHolder.txtPastePicture": "Gambar", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Kekalkan sumber pemformatan", - "PE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik pautan", + "PE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik pautan", "PE.Views.DocumentHolder.txtPreview": "Mulakan persembahan slaid", "PE.Views.DocumentHolder.txtPrintSelection": "Pemilihan Cetakan", "PE.Views.DocumentHolder.txtRemFractionBar": "Alih keluar bar pecahan", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index de92559fb..b6b065dbc 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -1383,7 +1383,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Gebruik doel thema", "PE.Views.DocumentHolder.txtPastePicture": "Afbeelding", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", - "PE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling", + "PE.Views.DocumentHolder.txtPressLink": "Druk op {0} en klik op koppeling", "PE.Views.DocumentHolder.txtPreview": "Diavoorstelling starten", "PE.Views.DocumentHolder.txtPrintSelection": "Selectie afdrukken", "PE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 738f53146..83db2e124 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -899,7 +899,7 @@ "PE.Views.DocumentHolder.txtNewSlide": "Nowy slajd", "PE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Zachowaj formatowanie źródłowe", - "PE.Views.DocumentHolder.txtPressLink": "Naciśnij CTRL i kliknij link", + "PE.Views.DocumentHolder.txtPressLink": "Naciśnij {0} i kliknij link", "PE.Views.DocumentHolder.txtPreview": "Rozpocznij pokaz slajdów", "PE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", "PE.Views.DocumentHolder.txtRemLimit": "Usuń limit", diff --git a/apps/presentationeditor/main/locale/pt-PT.json b/apps/presentationeditor/main/locale/pt-PT.json index bf8600b73..4c521f806 100644 --- a/apps/presentationeditor/main/locale/pt-PT.json +++ b/apps/presentationeditor/main/locale/pt-PT.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilizar tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imagem", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", - "PE.Views.DocumentHolder.txtPressLink": "Prima Ctrl e clique na ligação", + "PE.Views.DocumentHolder.txtPressLink": "Prima {0} e clique na ligação", "PE.Views.DocumentHolder.txtPreview": "Iniciar apresentação", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "PE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 30e3173af..bc7e80cb0 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -1495,7 +1495,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use o tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imagem", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", - "PE.Views.DocumentHolder.txtPressLink": "Pressione CTRL e clique no link", + "PE.Views.DocumentHolder.txtPressLink": "Pressione {0} e clique no link", "PE.Views.DocumentHolder.txtPreview": "Pré-visualizar", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "PE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index fd0335122..748b9e715 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -1544,7 +1544,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilizare temă destinație", "PE.Views.DocumentHolder.txtPastePicture": "Imagine", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Păstrare formatare sursă", - "PE.Views.DocumentHolder.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", + "PE.Views.DocumentHolder.txtPressLink": "Apăsați {0} și faceți clic pe linkul", "PE.Views.DocumentHolder.txtPreview": "Pornire expunere diapozitive", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimare selecție", "PE.Views.DocumentHolder.txtRemFractionBar": "Eliminare bară de fracție", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 060f6c7bf..591e009d1 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -1544,7 +1544,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Использовать конечную тему", "PE.Views.DocumentHolder.txtPastePicture": "Изображение", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование", - "PE.Views.DocumentHolder.txtPressLink": "Нажмите Ctrl и щелкните по ссылке", + "PE.Views.DocumentHolder.txtPressLink": "Нажмите {0} и щелкните по ссылке", "PE.Views.DocumentHolder.txtPreview": "Начать показ слайдов", "PE.Views.DocumentHolder.txtPrintSelection": "Напечатать выделенное", "PE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту", diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index fd2eb0f2c..8964f037c 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -1479,7 +1479,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Použiť cieľový vzhľad ", "PE.Views.DocumentHolder.txtPastePicture": "Obrázok", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Uchovať zdrojové formátovanie", - "PE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", + "PE.Views.DocumentHolder.txtPressLink": "Stlačte {0} a kliknite na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustiť prezentáciu", "PE.Views.DocumentHolder.txtPrintSelection": "Vytlačiť výber", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 799af2d3f..db694a0ed 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -657,7 +657,7 @@ "PE.Views.DocumentHolder.txtKeepTextOnly": "Ohrani le besedilo", "PE.Views.DocumentHolder.txtNewSlide": "Nov diapozitiv", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ohrani izvorno oblikovanje", - "PE.Views.DocumentHolder.txtPressLink": "Pritisnite CTRL in pritisnite povezavo", + "PE.Views.DocumentHolder.txtPressLink": "Pritisnite {0} in pritisnite povezavo", "PE.Views.DocumentHolder.txtPreview": "Predogled", "PE.Views.DocumentHolder.txtSelectAll": "Izberi vse", "PE.Views.DocumentHolder.txtSlide": "Diapozitiv", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 6d75f6e1e..fdf9af863 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -1477,7 +1477,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Använd destinationstema", "PE.Views.DocumentHolder.txtPastePicture": "Bild", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll ursprungsformatering", - "PE.Views.DocumentHolder.txtPressLink": "Tryck CTRL och klicka på länken", + "PE.Views.DocumentHolder.txtPressLink": "Tryck {0} och klicka på länken", "PE.Views.DocumentHolder.txtPreview": "Starta visning", "PE.Views.DocumentHolder.txtPrintSelection": "Skriv ut markering", "PE.Views.DocumentHolder.txtRemFractionBar": "Ta bort fraktionslinje", diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 702c11e7c..aab87018c 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -1425,7 +1425,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Hedef temayı kullan", "PE.Views.DocumentHolder.txtPastePicture": "Resim", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Kaynak biçimlendirmesini koruyun", - "PE.Views.DocumentHolder.txtPressLink": "CTRL'ye basın ve bağlantıya tıklayın", + "PE.Views.DocumentHolder.txtPressLink": "{0}'ye basın ve bağlantıya tıklayın", "PE.Views.DocumentHolder.txtPreview": "Önizleme", "PE.Views.DocumentHolder.txtPrintSelection": "Seçimi Yazdır", "PE.Views.DocumentHolder.txtRemFractionBar": "Kesir barını kaldır", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 4fa798ed3..e83eb0cc5 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -1477,7 +1477,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Використовувати кінцеву тему", "PE.Views.DocumentHolder.txtPastePicture": "Зображення", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", - "PE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "PE.Views.DocumentHolder.txtPressLink": "Натисніть {0} та клацніть по посиланню", "PE.Views.DocumentHolder.txtPreview": "Розпочати слайдшоу", "PE.Views.DocumentHolder.txtPrintSelection": "Надрукувати виділене", "PE.Views.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index 63c3a62a1..c334050e7 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -748,7 +748,7 @@ "PE.Views.DocumentHolder.txtMatrixAlign": "Căn chỉnh ma trận", "PE.Views.DocumentHolder.txtNewSlide": "Slide mới", "PE.Views.DocumentHolder.txtOverbar": "Gạch trên văn bản", - "PE.Views.DocumentHolder.txtPressLink": "Ấn CTRL và nhấp vào liên kết", + "PE.Views.DocumentHolder.txtPressLink": "Ấn {0} và nhấp vào liên kết", "PE.Views.DocumentHolder.txtPreview": "Bắt đầu trình chiếu", "PE.Views.DocumentHolder.txtRemFractionBar": "Xóa dấu phân số", "PE.Views.DocumentHolder.txtRemLimit": "Xóa giới hạn", diff --git a/apps/presentationeditor/main/locale/zh-TW.json b/apps/presentationeditor/main/locale/zh-TW.json index e47b13911..f015f7cb3 100644 --- a/apps/presentationeditor/main/locale/zh-TW.json +++ b/apps/presentationeditor/main/locale/zh-TW.json @@ -1495,7 +1495,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "使用目標主題", "PE.Views.DocumentHolder.txtPastePicture": "圖片", "PE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "PE.Views.DocumentHolder.txtPressLink": "按Ctrl並單擊連結", + "PE.Views.DocumentHolder.txtPressLink": "按{0}並單擊連結", "PE.Views.DocumentHolder.txtPreview": "開始投影片放映", "PE.Views.DocumentHolder.txtPrintSelection": "列印選擇", "PE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 9803f5e3e..129bc7ba2 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "使用目标主题", "PE.Views.DocumentHolder.txtPastePicture": "图片", "PE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "PE.Views.DocumentHolder.txtPressLink": "按CTRL并单击链接", + "PE.Views.DocumentHolder.txtPressLink": "按{0}并单击链接", "PE.Views.DocumentHolder.txtPreview": "开始幻灯片放映", "PE.Views.DocumentHolder.txtPrintSelection": "打印选择", "PE.Views.DocumentHolder.txtRemFractionBar": "删除分数栏", From bd35c960e56eb8c1903fabeda86dacad9b88dc33 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sun, 26 Jun 2022 17:51:56 +0300 Subject: [PATCH 020/285] [Embed] Fix tooltips with special keys on Win/Mac, fix translation --- apps/common/embed/lib/util/utils.js | 9 ++++++++- apps/documenteditor/embed/js/ApplicationController.js | 7 ++++--- apps/documenteditor/embed/locale/az.json | 2 +- apps/documenteditor/embed/locale/be.json | 2 +- apps/documenteditor/embed/locale/ca.json | 2 +- apps/documenteditor/embed/locale/cs.json | 2 +- apps/documenteditor/embed/locale/da.json | 2 +- apps/documenteditor/embed/locale/de.json | 3 ++- apps/documenteditor/embed/locale/el.json | 2 +- apps/documenteditor/embed/locale/en.json | 3 ++- apps/documenteditor/embed/locale/es.json | 2 +- apps/documenteditor/embed/locale/eu.json | 2 +- apps/documenteditor/embed/locale/fr.json | 2 +- apps/documenteditor/embed/locale/gl.json | 2 +- apps/documenteditor/embed/locale/hu.json | 2 +- apps/documenteditor/embed/locale/hy.json | 2 +- apps/documenteditor/embed/locale/id.json | 2 +- apps/documenteditor/embed/locale/it.json | 2 +- apps/documenteditor/embed/locale/ja.json | 2 +- apps/documenteditor/embed/locale/ko.json | 2 +- apps/documenteditor/embed/locale/lo.json | 2 +- apps/documenteditor/embed/locale/ms.json | 2 +- apps/documenteditor/embed/locale/nl.json | 2 +- apps/documenteditor/embed/locale/pl.json | 2 +- apps/documenteditor/embed/locale/pt-PT.json | 2 +- apps/documenteditor/embed/locale/pt.json | 2 +- apps/documenteditor/embed/locale/ro.json | 2 +- apps/documenteditor/embed/locale/ru.json | 2 +- apps/documenteditor/embed/locale/sk.json | 2 +- apps/documenteditor/embed/locale/sv.json | 2 +- apps/documenteditor/embed/locale/tr.json | 2 +- apps/documenteditor/embed/locale/uk.json | 2 +- apps/documenteditor/embed/locale/zh-TW.json | 2 +- apps/documenteditor/embed/locale/zh.json | 2 +- 34 files changed, 46 insertions(+), 36 deletions(-) diff --git a/apps/common/embed/lib/util/utils.js b/apps/common/embed/lib/util/utils.js index 2d275b85e..955320044 100644 --- a/apps/common/embed/lib/util/utils.js +++ b/apps/common/embed/lib/util/utils.js @@ -36,6 +36,11 @@ !common.utils && (common.utils = {}); common.utils = new(function(){ + var userAgent = navigator.userAgent.toLowerCase(), + check = function(regex){ + return regex.test(userAgent); + }, + isMac = check(/macintosh|mac os x/); return { openLink: function(url) { if (url) { @@ -100,7 +105,9 @@ return prop; } } - } + }, + + isMac : isMac }; })(); }(); diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index 2df136dcf..c12e28f0b 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -229,7 +229,7 @@ DE.ApplicationController = new(function(){ if (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Form) { // hyperlink me.isHideBodyTip = false; - var str = (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? me.txtPressLink : data.get_FormHelpText(); + var str = (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (me.txtPressLink.replace('%1', common.utils.isMac ? '⌘' : me.textCtrl)) : data.get_FormHelpText(); if (str.length>500) str = str.substr(0, 500) + '...'; str = common.utils.htmlEncode(str); @@ -957,9 +957,10 @@ DE.ApplicationController = new(function(){ textGotIt: 'Got it', errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", txtEmpty: '(Empty)', - txtPressLink: 'Press Ctrl and click link', + txtPressLink: 'Press %1 and click link', errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.', errorTokenExpire: 'The document security token has expired.
Please contact your Document Server administrator.', - openErrorText: 'An error has occurred while opening the file' + openErrorText: 'An error has occurred while opening the file', + textCtrl: 'Ctrl' } })(); \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/az.json b/apps/documenteditor/embed/locale/az.json index 102ac25d9..b4cd5b050 100644 --- a/apps/documenteditor/embed/locale/az.json +++ b/apps/documenteditor/embed/locale/az.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": " Forma uğurla təqdim edildi
İpucunu bağlamaq üçün bura klikləyin", "DE.ApplicationController.txtClose": "Bağla", "DE.ApplicationController.txtEmpty": "(Boşdur)", - "DE.ApplicationController.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin", + "DE.ApplicationController.txtPressLink": "%1 düyməsinə basıb linkə klikləyin", "DE.ApplicationController.unknownErrorText": "Naməlum xəta.", "DE.ApplicationController.unsupportedBrowserErrorText": "Brauzeriniz dəstəklənmir.", "DE.ApplicationController.waitText": "Zəhmət olmasa, gözləyin...", diff --git a/apps/documenteditor/embed/locale/be.json b/apps/documenteditor/embed/locale/be.json index 2ff4487d9..f5a0614ab 100644 --- a/apps/documenteditor/embed/locale/be.json +++ b/apps/documenteditor/embed/locale/be.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Форма паспяхова адпраўленая
Пстрыкніце, каб закрыць падказку", "DE.ApplicationController.txtClose": "Закрыць", "DE.ApplicationController.txtEmpty": "(Пуста)", - "DE.ApplicationController.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", + "DE.ApplicationController.txtPressLink": "Націсніце %1 і пстрыкніце па спасылцы", "DE.ApplicationController.unknownErrorText": "Невядомая памылка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", "DE.ApplicationController.waitText": "Калі ласка, пачакайце...", diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index 4de89cce2..eb776ebd6 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Feu clic per a tancar el consell", "DE.ApplicationController.txtClose": "Tanca", "DE.ApplicationController.txtEmpty": "(Buit)", - "DE.ApplicationController.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", + "DE.ApplicationController.txtPressLink": "Premeu %1 i feu clic a l'enllaç", "DE.ApplicationController.unknownErrorText": "Error desconegut.", "DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "DE.ApplicationController.waitText": "Espereu...", diff --git a/apps/documenteditor/embed/locale/cs.json b/apps/documenteditor/embed/locale/cs.json index 08caee964..b99ec26c2 100644 --- a/apps/documenteditor/embed/locale/cs.json +++ b/apps/documenteditor/embed/locale/cs.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formulář úspěšně uložen.
Klikněte pro zavření nápovědy.", "DE.ApplicationController.txtClose": "Zavřít", "DE.ApplicationController.txtEmpty": "(Prázdné)", - "DE.ApplicationController.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", + "DE.ApplicationController.txtPressLink": "Stiskněte %1 a klikněte na odkaz", "DE.ApplicationController.unknownErrorText": "Neznámá chyba.", "DE.ApplicationController.unsupportedBrowserErrorText": "Vámi používaný webový prohlížeč není podporován.", "DE.ApplicationController.waitText": "Čekejte prosím…", diff --git a/apps/documenteditor/embed/locale/da.json b/apps/documenteditor/embed/locale/da.json index 923e64bdf..92df1ff24 100644 --- a/apps/documenteditor/embed/locale/da.json +++ b/apps/documenteditor/embed/locale/da.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "\nFormularen blev indsendt
Klik for at lukke tippet", "DE.ApplicationController.txtClose": "Luk", "DE.ApplicationController.txtEmpty": "(Tom)", - "DE.ApplicationController.txtPressLink": "Tryk CTRL og klik på linket", + "DE.ApplicationController.txtPressLink": "Tryk %1 og klik på linket", "DE.ApplicationController.unknownErrorText": "Ukendt fejl.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din browser understøttes ikke.", "DE.ApplicationController.waitText": "Vent venligst...", diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json index 42b3d8e9e..4579692cd 100644 --- a/apps/documenteditor/embed/locale/de.json +++ b/apps/documenteditor/embed/locale/de.json @@ -36,7 +36,8 @@ "DE.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.txtClose": "Schließen", "DE.ApplicationController.txtEmpty": "(Leer)", - "DE.ApplicationController.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", + "DE.ApplicationController.textCtrl": "STRG", + "DE.ApplicationController.txtPressLink": "Drücken Sie %1 und klicken Sie auf den Link", "DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", "DE.ApplicationController.waitText": "Bitte warten...", diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index 4ceaa6c99..ce18851e5 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.txtClose": "Κλείσιμο", "DE.ApplicationController.txtEmpty": "(Κενό)", - "DE.ApplicationController.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", + "DE.ApplicationController.txtPressLink": "Πατήστε %1 και κάντε κλικ στο σύνδεσμο", "DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "DE.ApplicationController.waitText": "Παρακαλούμε, περιμένετε...", diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index 9c31b4cae..dd724b80c 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -36,10 +36,11 @@ "DE.ApplicationController.textSubmited": "Form submitted successfully
Click to close the tip", "DE.ApplicationController.txtClose": "Close", "DE.ApplicationController.txtEmpty": "(Empty)", - "DE.ApplicationController.txtPressLink": "Press Ctrl and click link", + "DE.ApplicationController.txtPressLink": "Press %1 and click link", "DE.ApplicationController.unknownErrorText": "Unknown error.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.waitText": "Please, wait...", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationView.txtDownload": "Download", "DE.ApplicationView.txtDownloadDocx": "Download as docx", "DE.ApplicationView.txtDownloadPdf": "Download as pdf", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index f0ec7d77e..2f0d39214 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formulario enviado con éxito.
Haga clic para cerrar el consejo", "DE.ApplicationController.txtClose": "Cerrar", "DE.ApplicationController.txtEmpty": "(Vacío)", - "DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace", + "DE.ApplicationController.txtPressLink": "Pulse %1 y haga clic en el enlace", "DE.ApplicationController.unknownErrorText": "Error desconocido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", "DE.ApplicationController.waitText": "Espere...", diff --git a/apps/documenteditor/embed/locale/eu.json b/apps/documenteditor/embed/locale/eu.json index e4b978316..dba982000 100644 --- a/apps/documenteditor/embed/locale/eu.json +++ b/apps/documenteditor/embed/locale/eu.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formularioa behar bezala bidali da
Egin klik argibidea ixteko", "DE.ApplicationController.txtClose": "Itxi", "DE.ApplicationController.txtEmpty": "(Hutsik)", - "DE.ApplicationController.txtPressLink": "Sakatu Ctrl eta egin klik estekan", + "DE.ApplicationController.txtPressLink": "Sakatu %1 eta egin klik estekan", "DE.ApplicationController.unknownErrorText": "Errore ezezaguna.", "DE.ApplicationController.unsupportedBrowserErrorText": "Zure nabigatzaileak ez du euskarririk.", "DE.ApplicationController.waitText": "Mesedez, itxaron...", diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 6fa476184..dd1128a48 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
Cliquez ici pour fermer l'astuce", "DE.ApplicationController.txtClose": "Fermer", "DE.ApplicationController.txtEmpty": "(Vide)", - "DE.ApplicationController.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", + "DE.ApplicationController.txtPressLink": "Appuyez sur %1 et cliquez sur le lien", "DE.ApplicationController.unknownErrorText": "Erreur inconnue.", "DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "DE.ApplicationController.waitText": "Veuillez patienter...", diff --git a/apps/documenteditor/embed/locale/gl.json b/apps/documenteditor/embed/locale/gl.json index f35f59e4e..eefe8bd45 100644 --- a/apps/documenteditor/embed/locale/gl.json +++ b/apps/documenteditor/embed/locale/gl.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
Prema para pechar o consello", "DE.ApplicationController.txtClose": "Pechar", "DE.ApplicationController.txtEmpty": "(Vacío)", - "DE.ApplicationController.txtPressLink": "Prema Ctrl e na ligazón", + "DE.ApplicationController.txtPressLink": "Prema %1 e na ligazón", "DE.ApplicationController.unknownErrorText": "Erro descoñecido.", "DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador non é compatible.", "DE.ApplicationController.waitText": "Agarde...", diff --git a/apps/documenteditor/embed/locale/hu.json b/apps/documenteditor/embed/locale/hu.json index 93d8935e2..43909098d 100644 --- a/apps/documenteditor/embed/locale/hu.json +++ b/apps/documenteditor/embed/locale/hu.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Az űrlap sikeresen elküldve
Kattintson a tipp bezárásához", "DE.ApplicationController.txtClose": "Bezárás", "DE.ApplicationController.txtEmpty": "(Üres)", - "DE.ApplicationController.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", + "DE.ApplicationController.txtPressLink": "Nyomja meg a %1 billentyűt és kattintson a hivatkozásra", "DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.", "DE.ApplicationController.unsupportedBrowserErrorText": "A böngészője nem támogatott.", "DE.ApplicationController.waitText": "Kérjük, várjon...", diff --git a/apps/documenteditor/embed/locale/hy.json b/apps/documenteditor/embed/locale/hy.json index 17bae834f..c6e1fdd2d 100644 --- a/apps/documenteditor/embed/locale/hy.json +++ b/apps/documenteditor/embed/locale/hy.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Ձևը հաջողությամբ ուղարկվեց
Սեղմեք՝ հուշակը փակելու համար", "DE.ApplicationController.txtClose": "Փակել", "DE.ApplicationController.txtEmpty": "(Դատարկ)", - "DE.ApplicationController.txtPressLink": "Սեղմել Ctrl և անցնել հղումը", + "DE.ApplicationController.txtPressLink": "Սեղմել %1 և անցնել հղումը", "DE.ApplicationController.unknownErrorText": "Անհայտ սխալ։", "DE.ApplicationController.unsupportedBrowserErrorText": "Ձեր դիտարկիչը չի աջակցվում։", "DE.ApplicationController.waitText": "Խնդրում ենք սպասել...", diff --git a/apps/documenteditor/embed/locale/id.json b/apps/documenteditor/embed/locale/id.json index b4b385c09..315592123 100644 --- a/apps/documenteditor/embed/locale/id.json +++ b/apps/documenteditor/embed/locale/id.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Form berhasil disubmit
Klik untuk menutup tips", "DE.ApplicationController.txtClose": "Tutup", "DE.ApplicationController.txtEmpty": "(Kosong)", - "DE.ApplicationController.txtPressLink": "Tekan CTRL dan klik tautan", + "DE.ApplicationController.txtPressLink": "Tekan %1 dan klik tautan", "DE.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui", "DE.ApplicationController.unsupportedBrowserErrorText": "Peramban kamu tidak didukung", "DE.ApplicationController.waitText": "Silahkan menunggu", diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index 121c411e0..fc99b25db 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Modulo è stato inviato con successo
Clicca su per chiudere la notifica
", "DE.ApplicationController.txtClose": "Chiudi", "DE.ApplicationController.txtEmpty": "(Vuoto)", - "DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento", + "DE.ApplicationController.txtPressLink": "Premi %1 e clicca sul collegamento", "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", "DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.ApplicationController.waitText": "Per favore, attendi...", diff --git a/apps/documenteditor/embed/locale/ja.json b/apps/documenteditor/embed/locale/ja.json index 672097a79..2a751c81c 100644 --- a/apps/documenteditor/embed/locale/ja.json +++ b/apps/documenteditor/embed/locale/ja.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "フォームが正常に送信されました。
クリックしてヒントを閉じます。", "DE.ApplicationController.txtClose": "閉じる", "DE.ApplicationController.txtEmpty": "(空)", - "DE.ApplicationController.txtPressLink": "リンクをクリックしてCTRLを押してください", + "DE.ApplicationController.txtPressLink": "リンクをクリックして%1を押してください", "DE.ApplicationController.unknownErrorText": "不明なエラー", "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。", "DE.ApplicationController.waitText": "少々お待ちください...", diff --git a/apps/documenteditor/embed/locale/ko.json b/apps/documenteditor/embed/locale/ko.json index d809061d8..30fb5b085 100644 --- a/apps/documenteditor/embed/locale/ko.json +++ b/apps/documenteditor/embed/locale/ko.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "양식이 성공적으로 전송되었습니다.
여기를 클릭하여 프롬프트를 닫으십시오", "DE.ApplicationController.txtClose": "닫기", "DE.ApplicationController.txtEmpty": "(없음)", - "DE.ApplicationController.txtPressLink": "CTRL 키를 누른 상태에서 링크 클릭", + "DE.ApplicationController.txtPressLink": "%1 키를 누른 상태에서 링크 클릭", "DE.ApplicationController.unknownErrorText": "알 수없는 오류.", "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", "DE.ApplicationController.waitText": "잠시만 기다려주세요...", diff --git a/apps/documenteditor/embed/locale/lo.json b/apps/documenteditor/embed/locale/lo.json index 39b90c380..a6a99ede2 100644 --- a/apps/documenteditor/embed/locale/lo.json +++ b/apps/documenteditor/embed/locale/lo.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": " ແບບຟອມທີ່ສົ່ງມາແລ້ວ", "DE.ApplicationController.txtClose": " ປິດ", "DE.ApplicationController.txtEmpty": "(ຫວ່າງເປົ່າ)", - "DE.ApplicationController.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", + "DE.ApplicationController.txtPressLink": "ກົດ %1 ແລະກົດລິ້ງ", "DE.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "DE.ApplicationController.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", "DE.ApplicationController.waitText": "ກະລຸນາລໍຖ້າ...", diff --git a/apps/documenteditor/embed/locale/ms.json b/apps/documenteditor/embed/locale/ms.json index 23302a0e0..96f96d031 100644 --- a/apps/documenteditor/embed/locale/ms.json +++ b/apps/documenteditor/embed/locale/ms.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Borang telah berjaya dihantar
Klik untuk menutup petua", "DE.ApplicationController.txtClose": "Tutup", "DE.ApplicationController.txtEmpty": "(Kosong)", - "DE.ApplicationController.txtPressLink": "Tekan Ctrl dan klik pautan", + "DE.ApplicationController.txtPressLink": "Tekan %1 dan klik pautan", "DE.ApplicationController.unknownErrorText": "Ralat tidak diketahui.", "DE.ApplicationController.unsupportedBrowserErrorText": "Pelayar anda tidak disokong.", "DE.ApplicationController.waitText": "Sila, tunggu…", diff --git a/apps/documenteditor/embed/locale/nl.json b/apps/documenteditor/embed/locale/nl.json index 5b0aac2cd..2300047bc 100644 --- a/apps/documenteditor/embed/locale/nl.json +++ b/apps/documenteditor/embed/locale/nl.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formulier succesvol ingediend
Klik om de tip te sluiten", "DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.txtEmpty": "(Leeg)", - "DE.ApplicationController.txtPressLink": "Druk op Ctrl en klik op de koppeling", + "DE.ApplicationController.txtPressLink": "Druk op %1 en klik op de koppeling", "DE.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "DE.ApplicationController.waitText": "Een moment geduld", diff --git a/apps/documenteditor/embed/locale/pl.json b/apps/documenteditor/embed/locale/pl.json index 851eba42b..a2c718f9c 100644 --- a/apps/documenteditor/embed/locale/pl.json +++ b/apps/documenteditor/embed/locale/pl.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "
Formularz załączony poprawnie
Kliknij aby zamknąć podpowiedź.", "DE.ApplicationController.txtClose": "Zamknij", "DE.ApplicationController.txtEmpty": "(Pusty)", - "DE.ApplicationController.txtPressLink": "Naciśnij Ctrl i kliknij w link", + "DE.ApplicationController.txtPressLink": "Naciśnij %1 i kliknij w link", "DE.ApplicationController.unknownErrorText": "Nieznany błąd.", "DE.ApplicationController.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", "DE.ApplicationController.waitText": "Proszę czekać...", diff --git a/apps/documenteditor/embed/locale/pt-PT.json b/apps/documenteditor/embed/locale/pt-PT.json index a95a91031..696fef90c 100644 --- a/apps/documenteditor/embed/locale/pt-PT.json +++ b/apps/documenteditor/embed/locale/pt-PT.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formulário submetido com sucesso
Clique para fechar a dica", "DE.ApplicationController.txtClose": "Fechar", "DE.ApplicationController.txtEmpty": "(Vazio)", - "DE.ApplicationController.txtPressLink": "Prima Ctrl e clique na ligação", + "DE.ApplicationController.txtPressLink": "Prima %1 e clique na ligação", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.", "DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", "DE.ApplicationController.waitText": "Aguarde…", diff --git a/apps/documenteditor/embed/locale/pt.json b/apps/documenteditor/embed/locale/pt.json index 0b96466e3..45d89d760 100644 --- a/apps/documenteditor/embed/locale/pt.json +++ b/apps/documenteditor/embed/locale/pt.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Formulário apresentado com sucesso>br>Click para fechar a ponta", "DE.ApplicationController.txtClose": "Fechar", "DE.ApplicationController.txtEmpty": "(Vazio)", - "DE.ApplicationController.txtPressLink": "Pressione CTRL e clique no link", + "DE.ApplicationController.txtPressLink": "Pressione %1 e clique no link", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Seu navegador não é suportado.", "DE.ApplicationController.waitText": "Aguarde...", diff --git a/apps/documenteditor/embed/locale/ro.json b/apps/documenteditor/embed/locale/ro.json index 8fbcb222a..b38863621 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Formularul a fost remis cu succes
Faceţi clic pentru a închide sfatul", "DE.ApplicationController.txtClose": "Închidere", "DE.ApplicationController.txtEmpty": "(Gol)", - "DE.ApplicationController.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", + "DE.ApplicationController.txtPressLink": "Apăsați %1 și faceți clic pe linkul", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...", diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index 9fc2e9e88..048897f24 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Форма успешно отправлена
Нажмите, чтобы закрыть подсказку", "DE.ApplicationController.txtClose": "Закрыть", "DE.ApplicationController.txtEmpty": "(Пусто)", - "DE.ApplicationController.txtPressLink": "Нажмите CTRL и щелкните по ссылке", + "DE.ApplicationController.txtPressLink": "Нажмите %1 и щелкните по ссылке", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.ApplicationController.waitText": "Пожалуйста, подождите...", diff --git a/apps/documenteditor/embed/locale/sk.json b/apps/documenteditor/embed/locale/sk.json index 5c02cafbf..19af03679 100644 --- a/apps/documenteditor/embed/locale/sk.json +++ b/apps/documenteditor/embed/locale/sk.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Formulár bol úspešne predložený
Kliknite, aby ste tip zatvorili", "DE.ApplicationController.txtClose": "Zatvoriť", "DE.ApplicationController.txtEmpty": "(Prázdne)", - "DE.ApplicationController.txtPressLink": "Stlačte CTRL a kliknite na odkaz", + "DE.ApplicationController.txtPressLink": "Stlačte %1 a kliknite na odkaz", "DE.ApplicationController.unknownErrorText": "Neznáma chyba.", "DE.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "DE.ApplicationController.waitText": "Prosím čakajte...", diff --git a/apps/documenteditor/embed/locale/sv.json b/apps/documenteditor/embed/locale/sv.json index 2dcf45ae4..bdc39927a 100644 --- a/apps/documenteditor/embed/locale/sv.json +++ b/apps/documenteditor/embed/locale/sv.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", "DE.ApplicationController.txtClose": "Stäng", "DE.ApplicationController.txtEmpty": "(Tom)", - "DE.ApplicationController.txtPressLink": "Tryck på CTRL och klicka på länken", + "DE.ApplicationController.txtPressLink": "Tryck på %1 och klicka på länken", "DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.ApplicationController.waitText": "Vänligen vänta...", diff --git a/apps/documenteditor/embed/locale/tr.json b/apps/documenteditor/embed/locale/tr.json index 00ba75b72..2b1ad6983 100644 --- a/apps/documenteditor/embed/locale/tr.json +++ b/apps/documenteditor/embed/locale/tr.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "Form başarılı bir şekilde kaydedildi
İpucunu kapatmak için tıklayın", "DE.ApplicationController.txtClose": "Kapat", "DE.ApplicationController.txtEmpty": "(Boş)", - "DE.ApplicationController.txtPressLink": "CTRL'ye basın ve bağlantıya tıklayın", + "DE.ApplicationController.txtPressLink": "%1'ye basın ve bağlantıya tıklayın", "DE.ApplicationController.unknownErrorText": "Bilinmeyen hata.", "DE.ApplicationController.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.", "DE.ApplicationController.waitText": "Lütfen bekleyin...", diff --git a/apps/documenteditor/embed/locale/uk.json b/apps/documenteditor/embed/locale/uk.json index 1059fa8d8..99a2cef54 100644 --- a/apps/documenteditor/embed/locale/uk.json +++ b/apps/documenteditor/embed/locale/uk.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "Форму успішно відправлено
Натисніть, щоб закрити підказку", "DE.ApplicationController.txtClose": "Закрити", "DE.ApplicationController.txtEmpty": "(Пусто)", - "DE.ApplicationController.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "DE.ApplicationController.txtPressLink": "Натисніть %1 та клацніть по посиланню", "DE.ApplicationController.unknownErrorText": "Невідома помилка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не підтримується", "DE.ApplicationController.waitText": "Будь ласка, зачекайте...", diff --git a/apps/documenteditor/embed/locale/zh-TW.json b/apps/documenteditor/embed/locale/zh-TW.json index 93c1190e1..4e60eb5b6 100644 --- a/apps/documenteditor/embed/locale/zh-TW.json +++ b/apps/documenteditor/embed/locale/zh-TW.json @@ -35,7 +35,7 @@ "DE.ApplicationController.textSubmited": "表格傳送成功
點此關閉提示", "DE.ApplicationController.txtClose": "結束", "DE.ApplicationController.txtEmpty": "(空)", - "DE.ApplicationController.txtPressLink": "按Ctrl並點擊連結", + "DE.ApplicationController.txtPressLink": "按%1並點擊連結", "DE.ApplicationController.unknownErrorText": "未知錯誤。", "DE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器", "DE.ApplicationController.waitText": "請耐心等待...", diff --git a/apps/documenteditor/embed/locale/zh.json b/apps/documenteditor/embed/locale/zh.json index 35e83d0e9..7cb7bfbd7 100644 --- a/apps/documenteditor/embed/locale/zh.json +++ b/apps/documenteditor/embed/locale/zh.json @@ -36,7 +36,7 @@ "DE.ApplicationController.textSubmited": "表单提交成功
点击以关闭提示", "DE.ApplicationController.txtClose": "关闭", "DE.ApplicationController.txtEmpty": "(空)", - "DE.ApplicationController.txtPressLink": "按CTRL并单击链接", + "DE.ApplicationController.txtPressLink": "按%1并单击链接", "DE.ApplicationController.unknownErrorText": "未知错误。", "DE.ApplicationController.unsupportedBrowserErrorText": "您的浏览器不受支持", "DE.ApplicationController.waitText": "请稍候...", From a57b309b16b415aecf941284e1094838590954a4 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sun, 26 Jun 2022 18:18:33 +0300 Subject: [PATCH 021/285] Fix translation --- apps/documenteditor/main/app/view/FileMenuPanels.js | 7 ------- apps/documenteditor/main/locale/en.json | 12 ++++++------ .../main/app/view/FileMenuPanels.js | 3 --- apps/presentationeditor/main/locale/en.json | 6 +++--- .../main/app/view/FileMenuPanels.js | 3 --- apps/spreadsheeteditor/main/locale/en.json | 4 ++-- 6 files changed, 11 insertions(+), 24 deletions(-) diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 5b51fec86..995843171 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -966,10 +966,8 @@ define([ txtAll: 'View All', txtNone: 'View Nothing', txtLast: 'View Last', - txtLiveComment: 'Live Commenting', /** coauthoring end **/ okButtonText: 'Apply', - txtInput: 'Alternate Input', txtWin: 'as Windows', txtMac: 'as OS X', txtNative: 'Native', @@ -979,9 +977,7 @@ define([ txtPt: 'Point', textAutoSave: 'Autosave', txtSpellCheck: 'Spell Checking', - strSpellCheckMode: 'Turn on spell checking option', textAlignGuides: 'Alignment Guides', - strAlignGuides: 'Turn on alignment guides', strCoAuthMode: 'Co-editing mode', strFast: 'Fast', strStrict: 'Strict', @@ -990,8 +986,6 @@ define([ txtFitPage: 'Fit to Page', txtFitWidth: 'Fit to Width', textForceSave: 'Save to Server', - strForcesave: 'Always save to server (otherwise save to server on document close)', - textCompatible: 'Compatibility', textOldVersions: 'Make the files compatible with older MS Word versions when saved as DOCX', txtCacheMode: 'Default cache mode', strMacrosSettings: 'Macros Settings', @@ -1001,7 +995,6 @@ define([ txtWarnMacrosDesc: 'Disable all macros with notification', txtRunMacrosDesc: 'Enable all macros without notification', txtStopMacrosDesc: 'Disable all macros without notification', - strPaste: 'Cut, copy and paste', strPasteButton: 'Show Paste Options button when content is pasted', txtProofing: 'Proofing', strTheme: 'Theme', diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index eb4275d16..23184e7ff 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1770,11 +1770,11 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Some of the digital signatures in the document are invalid or could not be verified. The document is protected from editing.", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", "DE.Views.FileMenuPanels.Settings.okButtonText": "Apply", - "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", + "del_DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing Mode", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "Font Hinting", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Add version to storage after clicking Save or Ctrl+S", + "del_DE.Views.FileMenuPanels.Settings.strForcesave": "Add version to storage after clicking Save or Ctrl+S", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros Settings", @@ -1782,7 +1782,7 @@ "DE.Views.FileMenuPanels.Settings.strShowChanges": "Real-time Collaboration Changes", "DE.Views.FileMenuPanels.Settings.strShowComments": "Show comments in text", "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Show resolved comments", - "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Turn on spell checking option", + "del_DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Turn on spell checking option", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", "DE.Views.FileMenuPanels.Settings.strTheme": "Interface theme", "DE.Views.FileMenuPanels.Settings.strUnit": "Unit of Measurement", @@ -1794,7 +1794,7 @@ "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides", "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Autorecover", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Autosave", - "DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibility", + "del_DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibility", "DE.Views.FileMenuPanels.Settings.textDisabled": "Disabled", "DE.Views.FileMenuPanels.Settings.textForceSave": "Saving intermediate versions", "DE.Views.FileMenuPanels.Settings.textMinute": "Every Minute", @@ -1813,9 +1813,9 @@ "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width", "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyphs", "DE.Views.FileMenuPanels.Settings.txtInch": "Inch", - "DE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", + "del_DE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", "DE.Views.FileMenuPanels.Settings.txtLast": "View Last", - "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Commenting Display", + "del_DE.Views.FileMenuPanels.Settings.txtLiveComment": "Commenting Display", "DE.Views.FileMenuPanels.Settings.txtMac": "as OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Native", "DE.Views.FileMenuPanels.Settings.txtNone": "View None", diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index a7760095a..a7c4b6e0b 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -748,7 +748,6 @@ define([ strZoom: 'Default Zoom Value', okButtonText: 'Apply', txtFitSlide: 'Fit to Slide', - txtInput: 'Alternate Input', txtWin: 'as Windows', txtMac: 'as OS X', txtNative: 'Native', @@ -767,7 +766,6 @@ define([ txtInch: 'Inch', txtFitWidth: 'Fit to Width', textForceSave: 'Save to Server', - strForcesave: 'Always save to server (otherwise save to server on document close)', txtSpellCheck: 'Spell Checking', txtCacheMode: 'Default cache mode', strMacrosSettings: 'Macros Settings', @@ -777,7 +775,6 @@ define([ txtWarnMacrosDesc: 'Disable all macros with notification', txtRunMacrosDesc: 'Enable all macros without notification', txtStopMacrosDesc: 'Disable all macros without notification', - strPaste: 'Cut, copy and paste', strPasteButton: 'Show Paste Options button when content is pasted', txtProofing: 'Proofing', strTheme: 'Theme', diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 79183af7e..a86df3a4a 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -1643,11 +1643,11 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing Mode", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", "PE.Views.FileMenuPanels.Settings.strFontRender": "Font Hinting", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Add version to storage after clicking Save or Ctrl+S", + "del_PE.Views.FileMenuPanels.Settings.strForcesave": "Add version to storage after clicking Save or Ctrl+S", "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros Settings", - "PE.Views.FileMenuPanels.Settings.strPaste": "Cut, copy and paste", + "del_PE.Views.FileMenuPanels.Settings.strPaste": "Cut, copy and paste", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Show the Paste Options button when the content is pasted", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strTheme": "Interface theme", @@ -1674,7 +1674,7 @@ "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width", "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyphs", "PE.Views.FileMenuPanels.Settings.txtInch": "Inch", - "PE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", + "del_PE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", "PE.Views.FileMenuPanels.Settings.txtLast": "View Last", "PE.Views.FileMenuPanels.Settings.txtMac": "as OS X", "PE.Views.FileMenuPanels.Settings.txtNative": "Native", diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index be17ac93a..9374f7df0 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1056,7 +1056,6 @@ define([ strUnit: 'Unit of Measurement', txtCm: 'Centimeter', txtPt: 'Point', - strAutosave: 'Turn on autosave', textAutoSave: 'Autosave', txtEn: 'English', txtDe: 'Deutsch', @@ -1082,7 +1081,6 @@ define([ textAutoRecover: 'Autorecover', txtInch: 'Inch', textForceSave: 'Save to Server', - strForcesave: 'Always save to server (otherwise save to server on document close)', textRefStyle: 'Reference Style', strUseSeparatorsBasedOnRegionalSettings: 'Use separators based on regional settings', strDecimalSeparator: 'Decimal separator', @@ -1095,7 +1093,6 @@ define([ txtWarnMacrosDesc: 'Disable all macros with notification', txtRunMacrosDesc: 'Enable all macros without notification', txtStopMacrosDesc: 'Disable all macros without notification', - strPaste: 'Cut, copy and paste', strTheme: 'Theme', txtThemeLight: 'Light', txtThemeDark: 'Dark', diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index b982a65f1..3e2899751 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2126,13 +2126,13 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Dictionary language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Font Hinting", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Add version to storage after clicking Save or Ctrl+S", + "del_SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Add version to storage after clicking Save or Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignore words with numbers", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macros Settings", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cut, copy and paste", + "del_SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cut, copy and paste", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Show the Paste Options button when the content is pasted", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "R1C1 reference style", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", From 12002da31f993c301889b591e3f15eb19760feab Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 27 Jun 2022 00:57:41 +0300 Subject: [PATCH 022/285] [SSE] Fix bug 57792 --- apps/spreadsheeteditor/main/app/view/LeftMenu.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/spreadsheeteditor/main/app/view/LeftMenu.js b/apps/spreadsheeteditor/main/app/view/LeftMenu.js index 46052302c..4d07dc04b 100644 --- a/apps/spreadsheeteditor/main/app/view/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/view/LeftMenu.js @@ -216,6 +216,7 @@ define([ if (this.panelSearch) { if (this.btnSearchBar.pressed) { this.panelSearch.show(); + this.panelSearch.focus(); } else { this.panelSearch.hide(); } From e00199071ec350e824ac8659980fe59622498b12 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 27 Jun 2022 01:44:32 +0300 Subject: [PATCH 023/285] [DE PE mobile] Fix bug 57806 --- .../mobile/src/controller/Search.jsx | 15 ++++++++++++--- .../mobile/src/controller/Search.jsx | 15 ++++++++++++--- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index 4e95b4684..e47467400 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -108,10 +108,13 @@ const Search = withTranslation()(props => { f7.popover.close('.document-menu.modal-in', false); if (params.find && params.find.length) { + var options = new AscCommon.CSearchSettings(); + options.put_Text(params.find); + options.put_MatchCase(params.caseSensitive); if (params.highlight) api.asc_selectSearchingResults(true); - api.asc_findText(params.find, params.forward, params.caseSensitive, function (resultCount) { + api.asc_findText(options, params.forward, function (resultCount) { !resultCount && f7.dialog.alert(null, _t.textNoTextFound); }); } @@ -127,7 +130,10 @@ const Search = withTranslation()(props => { const api = Common.EditorApi.get(); if (params.find && params.find.length) { - api.asc_replaceText(params.find, params.replace || '', false, params.caseSensitive, params.highlight); + var options = new AscCommon.CSearchSettings(); + options.put_Text(params.find); + options.put_MatchCase(params.caseSensitive); + api.asc_replaceText(options, params.replace || '', false); } } @@ -135,7 +141,10 @@ const Search = withTranslation()(props => { const api = Common.EditorApi.get(); if (params.find && params.find.length) { - api.asc_replaceText(params.find, params.replace || '', true, params.caseSensitive, params.highlight); + var options = new AscCommon.CSearchSettings(); + options.put_Text(params.find); + options.put_MatchCase(params.caseSensitive); + api.asc_replaceText(options, params.replace || '', true); } } diff --git a/apps/presentationeditor/mobile/src/controller/Search.jsx b/apps/presentationeditor/mobile/src/controller/Search.jsx index c3c254ac3..069e69893 100644 --- a/apps/presentationeditor/mobile/src/controller/Search.jsx +++ b/apps/presentationeditor/mobile/src/controller/Search.jsx @@ -88,7 +88,10 @@ const Search = withTranslation()(props => { f7.popover.close('.document-menu.modal-in', false); if (params.find && params.find.length) { - api.asc_findText(params.find, params.forward, params.caseSensitive, function(resultCount) { + var options = new AscCommon.CSearchSettings(); + options.put_Text(params.find); + options.put_MatchCase(params.caseSensitive); + api.asc_findText(options, params.forward, function(resultCount) { !resultCount && f7.dialog.alert(null, _t.textNoTextFound); }); @@ -105,7 +108,10 @@ const Search = withTranslation()(props => { const api = Common.EditorApi.get(); if (params.find && params.find.length) { - api.asc_replaceText(params.find, params.replace || '', false, params.caseSensitive); + var options = new AscCommon.CSearchSettings(); + options.put_Text(params.find); + options.put_MatchCase(params.caseSensitive); + api.asc_replaceText(options, params.replace || '', false); } } @@ -113,7 +119,10 @@ const Search = withTranslation()(props => { const api = Common.EditorApi.get(); if (params.find && params.find.length) { - api.asc_replaceText(params.find, params.replace || '', true, params.caseSensitive); + var options = new AscCommon.CSearchSettings(); + options.put_Text(params.find); + options.put_MatchCase(params.caseSensitive); + api.asc_replaceText(options, params.replace || '', true); } } From 02d81d88d3b63658adcb99534adc1d30a60f510f Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 27 Jun 2022 11:41:34 +0300 Subject: [PATCH 024/285] [PE] Bug 57795, 57797 --- .../main/app/controller/Search.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js index cde4704a9..1c8d11973 100644 --- a/apps/presentationeditor/main/app/controller/Search.js +++ b/apps/presentationeditor/main/app/controller/Search.js @@ -97,6 +97,7 @@ define([ this.api.asc_registerCallback('asc_onEndTextAroundSearch', _.bind(this.onEndTextAroundSearch, this)); this.api.asc_registerCallback('asc_onGetTextAroundSearchPack', _.bind(this.onApiGetTextAroundSearch, this)); this.api.asc_registerCallback('asc_onRemoveTextAroundSearch', _.bind(this.onApiRemoveTextAroundSearch, this)); + this.api.asc_registerCallback('asc_onSearchEnd', _.bind(this.onApiSearchEnd, this)); } return this; }, @@ -198,7 +199,7 @@ define([ searchSettings.put_MatchCase(this._state.matchCase); searchSettings.put_WholeWords(this._state.matchWord); if (!this.api.asc_replaceText(searchSettings, textReplace, false)) { - this.allResultsWasRemoved(); + this.removeResultItems(); } } }, @@ -211,14 +212,14 @@ define([ searchSettings.put_WholeWords(this._state.matchWord); this.api.asc_replaceText(searchSettings, textReplace, true); - this.allResultsWasRemoved(); + this.removeResultItems(); } }, - allResultsWasRemoved: function () { + removeResultItems: function (type) { this.resultItems = []; this.hideResults(); - this.view.updateResultsNumber(undefined, 0); + this.view.updateResultsNumber(type, 0); // type === undefined, count === 0 -> no matches this.view.disableReplaceButtons(true); this._state.currentResult = 0; this._state.resultsNumber = 0; @@ -373,6 +374,10 @@ define([ this.hideResults(); }, + onApiSearchEnd: function () { + this.removeResultItems('stop'); + }, + notcriticalErrorTitle: 'Warning', warnReplaceString: '{0} is not a valid special character for the Replace With box.' From d4df9cfe48cced235f43525bd7566dfc70ae82d4 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 27 Jun 2022 12:27:54 +0300 Subject: [PATCH 025/285] [SSE] Fix translation --- apps/spreadsheeteditor/main/locale/de.json | 3 +++ apps/spreadsheeteditor/main/locale/en.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 2a7776ed7..5f02bae41 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -152,6 +152,9 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Strg", + "Common.Utils.String.textShift": "Umschalt", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "Adresse: ", "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 3e2899751..0222e24f0 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -152,6 +152,9 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "address: ", "Common.Views.About.txtLicensee": "LICENSEE", "Common.Views.About.txtLicensor": "LICENSOR", From 31ba6dde662e23a7dcc6f92848c0a434f9575ee0 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 27 Jun 2022 15:56:14 +0300 Subject: [PATCH 026/285] [SSE] Fix replacing empty cells --- apps/common/main/lib/view/SearchPanel.js | 2 +- .../main/app/controller/Search.js | 42 +++++++++---------- 2 files changed, 21 insertions(+), 23 deletions(-) diff --git a/apps/common/main/lib/view/SearchPanel.js b/apps/common/main/lib/view/SearchPanel.js index a4711695e..91e565310 100644 --- a/apps/common/main/lib/view/SearchPanel.js +++ b/apps/common/main/lib/view/SearchPanel.js @@ -331,7 +331,7 @@ define([ (!count ? this.textNoMatches : Common.Utils.String.format(this.textSearchResults, current + 1, count))); } this.$reaultsNumber.text(text); - this.disableReplaceButtons(!count); + !window.SSE && this.disableReplaceButtons(!count); }, onClickClosePanel: function() { diff --git a/apps/spreadsheeteditor/main/app/controller/Search.js b/apps/spreadsheeteditor/main/app/controller/Search.js index 7aa8e1300..4f3aa42ca 100644 --- a/apps/spreadsheeteditor/main/app/controller/Search.js +++ b/apps/spreadsheeteditor/main/app/controller/Search.js @@ -225,10 +225,10 @@ define([ if (me.view.$el.is(':visible')) { me.api.asc_StartTextAroundSearch(); } - me.view.disableReplaceButtons(false); + //me.view.disableReplaceButtons(false); } else if (me._state.newSearchText === '') { me.view.updateResultsNumber('no-results'); - me.view.disableReplaceButtons(true); + //me.view.disableReplaceButtons(true); } clearInterval(me.searchTimer); me.searchTimer = undefined; @@ -265,7 +265,7 @@ define([ if (!this.api.asc_findText(options)) { this.resultItems = []; this.view.updateResultsNumber(undefined, 0); - this.view.disableReplaceButtons(true); + //this.view.disableReplaceButtons(true); this._state.currentResult = 0; this._state.resultsNumber = 0; this.view.disableNavButtons(); @@ -275,23 +275,21 @@ define([ }, onQueryReplace: function(textSearch, textReplace) { - if (textSearch !== '') { - this.api.isReplaceAll = false; - var options = new Asc.asc_CFindOptions(); - options.asc_setFindWhat(textSearch); - options.asc_setReplaceWith(textReplace); - options.asc_setIsMatchCase(this._state.matchCase); - options.asc_setIsWholeCell(this._state.matchWord); - options.asc_setScanOnOnlySheet(this._state.withinSheet); - if (this._state.withinSheet === Asc.c_oAscSearchBy.Range) { - options.asc_setSpecificRange(this._state.selectedRange); - } - options.asc_setScanByRows(this._state.searchByRows); - options.asc_setLookIn(this._state.lookIn ? Asc.c_oAscFindLookIn.Formulas : Asc.c_oAscFindLookIn.Value); - options.asc_setIsReplaceAll(false); - - this.api.asc_replaceText(options); + this.api.isReplaceAll = false; + var options = new Asc.asc_CFindOptions(); + options.asc_setFindWhat(textSearch); + options.asc_setReplaceWith(textReplace); + options.asc_setIsMatchCase(this._state.matchCase); + options.asc_setIsWholeCell(this._state.matchWord); + options.asc_setScanOnOnlySheet(this._state.withinSheet); + if (this._state.withinSheet === Asc.c_oAscSearchBy.Range) { + options.asc_setSpecificRange(this._state.selectedRange); } + options.asc_setScanByRows(this._state.searchByRows); + options.asc_setLookIn(this._state.lookIn ? Asc.c_oAscFindLookIn.Formulas : Asc.c_oAscFindLookIn.Value); + options.asc_setIsReplaceAll(false); + + this.api.asc_replaceText(options); }, onQueryReplaceAll: function(textSearch, textReplace) { @@ -348,7 +346,7 @@ define([ this.resultItems = []; this.hideResults(); this.view.updateResultsNumber(undefined, 0); - this.view.disableReplaceButtons(true); + //this.view.disableReplaceButtons(true); this._state.currentResult = 0; this._state.resultsNumber = 0; this.view.disableNavButtons(); @@ -495,13 +493,13 @@ define([ this.hideResults(); if (text && text !== '' && text === this._state.searchText) { // search was made - this.view.disableReplaceButtons(false); + //this.view.disableReplaceButtons(false); this.api.asc_StartTextAroundSearch(); } else if (text && text !== '') { // search wasn't made this.onInputSearchChange(text); } else { this.resultItems = []; - this.view.disableReplaceButtons(true); + //this.view.disableReplaceButtons(true); this.view.clearResultsNumber(); } this.view.disableNavButtons(this._state.currentResult, this._state.resultsNumber); From e2889c06c30b2fb9dcce73bb10f199d30e15d9b2 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 27 Jun 2022 20:31:43 +0300 Subject: [PATCH 027/285] [SSE] Bug 57795, 57797 --- .../main/app/controller/Search.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Search.js b/apps/spreadsheeteditor/main/app/controller/Search.js index 4f3aa42ca..ff01f85d0 100644 --- a/apps/spreadsheeteditor/main/app/controller/Search.js +++ b/apps/spreadsheeteditor/main/app/controller/Search.js @@ -105,6 +105,7 @@ define([ this.api.asc_registerCallback('asc_onEndTextAroundSearch', _.bind(this.onEndTextAroundSearch, this)); this.api.asc_registerCallback('asc_onGetTextAroundSearchPack', _.bind(this.onApiGetTextAroundSearch, this)); this.api.asc_registerCallback('asc_onRemoveTextAroundSearch', _.bind(this.onApiRemoveTextAroundSearch, this)); + this.api.asc_registerCallback('asc_onSearchEnd', _.bind(this.onApiSearchEnd, this)); } return this; }, @@ -314,9 +315,9 @@ define([ var me = this; if (this.api.isReplaceAll) { if (!found) { - this.allResultsWasRemoved(); + this.removeResultItems(); } else { - !(found-replaced) && this.allResultsWasRemoved(); + !(found-replaced) && this.removeResultItems(); Common.UI.info({ msg: !(found-replaced) ? Common.Utils.String.format(this.textReplaceSuccess,replaced) : Common.Utils.String.format(this.textReplaceSkipped,found-replaced), callback: function() { @@ -337,15 +338,15 @@ define([ options.asc_setScanByRows(this._state.searchByRows); options.asc_setLookIn(this._state.lookInFormulas ? Asc.c_oAscFindLookIn.Formulas : Asc.c_oAscFindLookIn.Value); if (!this.api.asc_findText(options)) { - this.allResultsWasRemoved(); + this.removeResultItems(); } } }, - allResultsWasRemoved: function () { + removeResultItems: function (type) { this.resultItems = []; this.hideResults(); - this.view.updateResultsNumber(undefined, 0); + this.view.updateResultsNumber(type, 0); // type === undefined, count === 0 -> no matches //this.view.disableReplaceButtons(true); this._state.currentResult = 0; this._state.resultsNumber = 0; @@ -541,6 +542,10 @@ define([ } }, + onApiSearchEnd: function () { + this.removeResultItems('stop'); + }, + textNoTextFound: 'The data you have been searching for could not be found. Please adjust your search options.', textReplaceSuccess: 'Search has been done. {0} occurrences have been replaced', textReplaceSkipped: 'The replacement has been made. {0} occurrences were skipped.', From f7de33d2c8be9861545dd57dfa9d79428c9e684c Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 28 Jun 2022 10:18:17 +0300 Subject: [PATCH 028/285] [SSE] Fix Bug 57805 --- apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index f9e264924..4b1ccb4bb 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -123,8 +123,7 @@ const PageTabColor = inject("storePalette")(observer(props => { const changeColor = (color, effectId, effectValue) => { if (color !== 'empty') { if (effectId !== undefined ) { - const newColor = {color: color, effectId: effectId, effectValue: effectValue}; - sheets.changeTabColor(newColor); + sheets.changeTabColor(color); props.onSetWorkSheetColor(color); } else { sheets.changeTabColor(color); From 59ee428d0c4470ee7155686e071829014469f89e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 28 Jun 2022 21:31:03 +0300 Subject: [PATCH 029/285] [DE mobile] Fix Bug 57846 --- apps/documenteditor/mobile/locale/az.json | 3 ++- apps/documenteditor/mobile/locale/be.json | 3 ++- apps/documenteditor/mobile/locale/bg.json | 3 ++- apps/documenteditor/mobile/locale/ca.json | 3 ++- apps/documenteditor/mobile/locale/cs.json | 3 ++- apps/documenteditor/mobile/locale/da.json | 3 ++- apps/documenteditor/mobile/locale/de.json | 3 ++- apps/documenteditor/mobile/locale/el.json | 3 ++- apps/documenteditor/mobile/locale/en.json | 3 ++- apps/documenteditor/mobile/locale/es.json | 3 ++- apps/documenteditor/mobile/locale/eu.json | 3 ++- apps/documenteditor/mobile/locale/fi.json | 3 ++- apps/documenteditor/mobile/locale/fr.json | 3 ++- apps/documenteditor/mobile/locale/gl.json | 3 ++- apps/documenteditor/mobile/locale/hu.json | 3 ++- apps/documenteditor/mobile/locale/hy.json | 3 ++- apps/documenteditor/mobile/locale/id.json | 3 ++- apps/documenteditor/mobile/locale/it.json | 3 ++- apps/documenteditor/mobile/locale/ja.json | 3 ++- apps/documenteditor/mobile/locale/ko.json | 3 ++- apps/documenteditor/mobile/locale/lo.json | 3 ++- apps/documenteditor/mobile/locale/lv.json | 3 ++- apps/documenteditor/mobile/locale/ms.json | 3 ++- apps/documenteditor/mobile/locale/nb.json | 3 ++- apps/documenteditor/mobile/locale/nl.json | 3 ++- apps/documenteditor/mobile/locale/pl.json | 3 ++- apps/documenteditor/mobile/locale/pt-PT.json | 3 ++- apps/documenteditor/mobile/locale/pt.json | 3 ++- apps/documenteditor/mobile/locale/ro.json | 3 ++- apps/documenteditor/mobile/locale/ru.json | 3 ++- apps/documenteditor/mobile/locale/sk.json | 3 ++- apps/documenteditor/mobile/locale/sl.json | 3 ++- apps/documenteditor/mobile/locale/sv.json | 3 ++- apps/documenteditor/mobile/locale/tr.json | 3 ++- apps/documenteditor/mobile/locale/uk.json | 3 ++- apps/documenteditor/mobile/locale/vi.json | 3 ++- apps/documenteditor/mobile/locale/zh-TW.json | 3 ++- apps/documenteditor/mobile/locale/zh.json | 3 ++- 38 files changed, 76 insertions(+), 38 deletions(-) diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index d58d881bc..aedd74a94 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -513,7 +513,8 @@ "X Axis": "X Oxu XAS", "Y Axis": "Y Oxu", "Your text here": "Mətniniz buradadır", - "Zero Divide": "Sıfra Bölünmə" + "Zero Divide": "Sıfra Bölünmə", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonim", "textBuyNow": "Veb sayta daxil olun", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index f060031e7..78cb59e70 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -510,7 +510,8 @@ "Type equation here": "Type equation here", "X Axis": "X Axis XAS", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Ананімны карыстальнік", "textBuyNow": "Наведаць сайт", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 0321f8e47..878744de1 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -513,7 +513,8 @@ "X Axis": "Eix X XAS", "Y Axis": "Eix Y", "Your text here": "El teu text aquí", - "Zero Divide": "Divideix per zero" + "Zero Divide": "Divideix per zero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anònim", "textBuyNow": "Visita el Lloc Web", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 3e7119eb9..a4c6958e9 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -513,7 +513,8 @@ "X Axis": "Osa X (XAS)", "Y Axis": "Osa Y", "Your text here": "Zde napište text", - "Zero Divide": "Dělení nulou" + "Zero Divide": "Dělení nulou", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymní", "textBuyNow": "Navštívit webovou stránku", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index cfc6d1dfc..c49598cee 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -513,7 +513,8 @@ "X Axis": "Achse X (XAS)", "Y Axis": "Achse Y", "Your text here": "Text hier eingeben", - "Zero Divide": "Nullteilung" + "Zero Divide": "Nullteilung", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonym", "textBuyNow": "Webseite besuchen", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index fe166ceaa..0e552cdfd 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -513,7 +513,8 @@ "X Axis": "Άξονας Χ XAS", "Y Axis": "Άξονας Υ", "Your text here": "Το κείμενό σας εδώ", - "Zero Divide": "Μηδενική Διαίρεση" + "Zero Divide": "Μηδενική Διαίρεση", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Ανώνυμος", "textBuyNow": "Επισκεφθείτε την ιστοσελίδα", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index c7799330d..bb4846ea0 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -513,7 +513,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 8effdba59..a83b9943f 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -513,7 +513,8 @@ "X Axis": "Eje X XAS", "Y Axis": "Eje Y", "Your text here": "Su texto aquí", - "Zero Divide": "División por cero" + "Zero Divide": "División por cero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar sitio web", diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json index d0d29b646..ab8c970c3 100644 --- a/apps/documenteditor/mobile/locale/eu.json +++ b/apps/documenteditor/mobile/locale/eu.json @@ -513,7 +513,8 @@ "X Axis": "X ardatza XAS", "Y Axis": "Y ardatza", "Your text here": "Zure testua hemen", - "Zero Divide": "Zatitzailea zero" + "Zero Divide": "Zatitzailea zero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonimoa", "textBuyNow": "Bisitatu webgunea", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index e17fba7c1..2df047afb 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -513,7 +513,8 @@ "X Axis": "Axe X (XAS)", "Y Axis": "Axe Y", "Your text here": "Votre texte ici", - "Zero Divide": "Division par Zéro" + "Zero Divide": "Division par Zéro", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonyme", "textBuyNow": "Visiter le site web", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index 7fbb8234c..32ea1a4e2 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -513,7 +513,8 @@ "X Axis": "Eixo X XAS", "Y Axis": "Eixo Y", "Your text here": "O teu texto aquí", - "Zero Divide": "División por cero" + "Zero Divide": "División por cero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar sitio web", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 62e0e0610..eddf306f6 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -513,7 +513,8 @@ "X Axis": "X tengely XAS", "Y Axis": "Y tengely", "Your text here": "Írja a szöveget ide", - "Zero Divide": "Nullával osztás" + "Zero Divide": "Nullával osztás", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Névtelen", "textBuyNow": "Weboldal megnyitása", diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json index 2590428d9..9b09da647 100644 --- a/apps/documenteditor/mobile/locale/hy.json +++ b/apps/documenteditor/mobile/locale/hy.json @@ -513,7 +513,8 @@ "X Axis": "X առանցքի XAS", "Y Axis": "Y առանցք", "Your text here": "Ձեր տեքստը այստեղ", - "Zero Divide": "Բաժանում զրոյի վրա" + "Zero Divide": "Բաժանում զրոյի վրա", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Անանուն", "textBuyNow": "Այցելել կայք", diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json index e6f0e90f7..a797b3596 100644 --- a/apps/documenteditor/mobile/locale/id.json +++ b/apps/documenteditor/mobile/locale/id.json @@ -513,7 +513,8 @@ "X Axis": "XAS Sumbu X", "Y Axis": "Sumbu Y", "Your text here": "Teks Anda di sini", - "Zero Divide": "Pembagi Nol" + "Zero Divide": "Pembagi Nol", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonim", "textBuyNow": "Kunjungi website", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 73e09d377..719edbbe3 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -513,7 +513,8 @@ "X Axis": "Asse X (XAS)", "Y Axis": "Asse Y", "Your text here": "Il tuo testo qui", - "Zero Divide": "Dividere per zero" + "Zero Divide": "Dividere per zero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonimo", "textBuyNow": "Visitare il sito web", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 70a31013f..e8a1f9c42 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -513,7 +513,8 @@ "X Axis": "x軸XAS", "Y Axis": "Y 軸", "Your text here": "あなたのテキスはここにあります", - "Zero Divide": "ゼロ除算" + "Zero Divide": "ゼロ除算", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "匿名者", "textBuyNow": "ウェブサイトを訪問する", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 3155b17d5..f227bfdb4 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -513,7 +513,8 @@ "X Axis": "X 축 XAS", "Y Axis": "Y 축", "Your text here": "여기에 귀하의 텍스트를 입력하여 주십시오", - "Zero Divide": "0으로 나누기" + "Zero Divide": "0으로 나누기", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "익명", "textBuyNow": "웹 사이트 방문", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 636d28ed9..7ff7cb001 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -513,7 +513,8 @@ "X Axis": "ແກນ X (XAS)", "Y Axis": "ແກນ Y", "Your text here": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້", - "Zero Divide": "ສູນແບ່ງ" + "Zero Divide": "ສູນແບ່ງ", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "ບໍ່ລະບຸຊື່", "textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index a5ac44475..689e6485c 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -513,7 +513,8 @@ "X Axis": "XAS Paksi X", "Y Axis": "Paksi X", "Your text here": "Teks anda di sini", - "Zero Divide": "Bahagi Sifar" + "Zero Divide": "Bahagi Sifar", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Tanpa Nama", "textBuyNow": "Lihat laman web", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 1441b1807..a075676b1 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -513,7 +513,8 @@ "X Axis": "X-as XAS", "Y Axis": "Y-as", "Your text here": "Hier tekst invoeren", - "Zero Divide": "Nul Delen" + "Zero Divide": "Nul Delen", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anoniem", "textBuyNow": "Website bezoeken", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/pt-PT.json b/apps/documenteditor/mobile/locale/pt-PT.json index 469cd8e68..59c2820da 100644 --- a/apps/documenteditor/mobile/locale/pt-PT.json +++ b/apps/documenteditor/mobile/locale/pt-PT.json @@ -513,7 +513,8 @@ "X Axis": "Eixo X", "Y Axis": "Eixo Y", "Your text here": "O seu texto aqui", - "Zero Divide": "Divisão por zero" + "Zero Divide": "Divisão por zero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar website", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 9c6f04300..4951411e3 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -513,7 +513,8 @@ "X Axis": "X Eixo XAS", "Y Axis": "Eixo Y", "Your text here": "Seu texto aqui", - "Zero Divide": "Divisão por zero" + "Zero Divide": "Divisão por zero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anônimo", "textBuyNow": "Visitar site", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index f48512ab8..c238c98eb 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -513,7 +513,8 @@ "X Axis": "Axă X (XAS)", "Y Axis": "Axa Y", "Your text here": "Textul dvs. aici", - "Zero Divide": "Împărțirea cu zero" + "Zero Divide": "Împărțirea cu zero", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonim", "textBuyNow": "Vizitarea site-ul Web", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index bd9dbfd87..adc524995 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -513,7 +513,8 @@ "X Axis": "Ось X (XAS)", "Y Axis": "Ось Y", "Your text here": "Введите ваш текст", - "Zero Divide": "Деление на ноль" + "Zero Divide": "Деление на ноль", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Анонимный пользователь", "textBuyNow": "Перейти на сайт", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index d8e0ae7b4..e6d0facb2 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -513,7 +513,8 @@ "X Axis": "Os X (XAS)", "Y Axis": "Os Y", "Your text here": "Tu napíšte svoj text", - "Zero Divide": "Delenie nulou" + "Zero Divide": "Delenie nulou", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymný", "textBuyNow": "Navštíviť webovú stránku", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 2c0ca473f..59216da58 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -513,7 +513,8 @@ "X Axis": "X Ekseni XAS", "Y Axis": "Y Ekseni", "Your text here": "Metni buraya giriniz", - "Zero Divide": "sıfır bölme" + "Zero Divide": "sıfır bölme", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonim", "textBuyNow": "Websitesini ziyaret edin", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index fe8c14f98..26325b3fc 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -513,7 +513,8 @@ "X Axis": "Вісь X (XAS)", "Y Axis": "Вісь Y", "Your text here": "Введіть ваш текст", - "Zero Divide": "Ділення на нуль" + "Zero Divide": "Ділення на нуль", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Анонімний користувач", "textBuyNow": "Перейти на сайт", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 138efd223..8096f4209 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -514,7 +514,8 @@ "X Axis": "X Axis XAS", "Y Axis": "Y Axis", "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Zero Divide": "Zero Divide", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", diff --git a/apps/documenteditor/mobile/locale/zh-TW.json b/apps/documenteditor/mobile/locale/zh-TW.json index f7aa4b1c1..1107a6947 100644 --- a/apps/documenteditor/mobile/locale/zh-TW.json +++ b/apps/documenteditor/mobile/locale/zh-TW.json @@ -513,7 +513,8 @@ "X Axis": "X 軸 XAS", "Y Axis": "Y軸", "Your text here": "在這輸入文字", - "Zero Divide": "零分度" + "Zero Divide": "零分度", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "匿名", "textBuyNow": "瀏覽網站", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 3d050b743..454c455c0 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -513,7 +513,8 @@ "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", "Your text here": "你的文本在此", - "Zero Divide": "除数为零" + "Zero Divide": "除数为零", + "No table of contents entries found.": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents." }, "textAnonymous": "匿名", "textBuyNow": "访问网站", From ea3165e491a75ee81ed1ffc8384da075ab7d0869 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 28 Jun 2022 23:23:39 +0300 Subject: [PATCH 030/285] Fix Bug 57828 --- apps/common/main/lib/component/Window.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/Window.js b/apps/common/main/lib/component/Window.js index 302e98995..2778c1cf0 100644 --- a/apps/common/main/lib/component/Window.js +++ b/apps/common/main/lib/component/Window.js @@ -490,7 +490,8 @@ define([ if (options.width=='auto') { text_cnt.height(Math.max(text.height(), icon_height) + ((check.length>0) ? (check.height() + parseInt(check.css('margin-top'))) : 0)); body.height(parseInt(text_cnt.css('height')) + parseInt(footer.css('height'))); - window.setSize(text.position().left + text.width() + parseInt(text_cnt.css('padding-right')), + var span_el = check.find('span'); + window.setSize(Math.max(text.width(), span_el.length>0 ? span_el.position().left + span_el.width() : 0) + text.position().left + parseInt(text_cnt.css('padding-right')), parseInt(body.css('height')) + parseInt(header.css('height'))); } else { text.css('white-space', 'normal'); From 793f350a071e991aa822665f58a18955a3d3ac13 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 29 Jun 2022 12:37:51 +0300 Subject: [PATCH 031/285] [DE] Add cut and select all buttons to the toolbar --- .../main/app/controller/Toolbar.js | 22 ++++++++++---- .../main/app/template/Toolbar.template | 8 +++++ apps/documenteditor/main/app/view/Toolbar.js | 29 ++++++++++++++++++- apps/documenteditor/main/index.html | 16 ++++++++-- apps/documenteditor/main/index.html.deploy | 14 +++++++-- apps/documenteditor/main/locale/en.json | 2 ++ 6 files changed, 79 insertions(+), 12 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 0dff9909e..7c40e248d 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -268,8 +268,10 @@ define([ toolbar.btnUndo.on('disabled', _.bind(this.onBtnChangeState, this, 'undo:disabled')); toolbar.btnRedo.on('click', _.bind(this.onRedo, this)); toolbar.btnRedo.on('disabled', _.bind(this.onBtnChangeState, this, 'redo:disabled')); - toolbar.btnCopy.on('click', _.bind(this.onCopyPaste, this, true)); - toolbar.btnPaste.on('click', _.bind(this.onCopyPaste, this, false)); + toolbar.btnCopy.on('click', _.bind(this.onCopyPaste, this, 'copy')); + toolbar.btnPaste.on('click', _.bind(this.onCopyPaste, this, 'paste')); + toolbar.btnCut.on('click', _.bind(this.onCopyPaste, this, 'cut')); + toolbar.btnSelectAll.on('click', _.bind(this.onSelectAll, this)); toolbar.btnIncFontSize.on('click', _.bind(this.onIncrease, this)); toolbar.btnDecFontSize.on('click', _.bind(this.onDecrease, this)); toolbar.mnuChangeCase.on('item:click', _.bind(this.onChangeCase, this)); @@ -515,7 +517,7 @@ define([ onApiCanCopyCut: function(can) { if (this._state.can_copycut !== can) { - this.toolbar.lockToolbar(Common.enumLock.copyLock, !can, {array: [this.toolbar.btnCopy]}); + this.toolbar.lockToolbar(Common.enumLock.copyLock, !can, {array: [this.toolbar.btnCopy, this.toolbar.btnCut]}); this._state.can_copycut = can; } }, @@ -1101,10 +1103,10 @@ define([ Common.component.Analytics.trackEvent('ToolBar', 'Redo'); }, - onCopyPaste: function(copy, e) { + onCopyPaste: function(type, e) { var me = this; if (me.api) { - var res = (copy) ? me.api.Copy() : me.api.Paste(); + var res = (type === 'cut') ? me.api.Cut() : ((type === 'copy') ? me.api.Copy() : me.api.Paste()); if (!res) { if (!Common.localStorage.getBool("de-hide-copywarning")) { (new Common.Views.CopyWarningDialog({ @@ -1120,6 +1122,14 @@ define([ Common.NotificationCenter.trigger('edit:complete', me.toolbar); }, + onSelectAll: function(e) { + if (this.api) + this.api.asc_EditSelectAll(); + + Common.NotificationCenter.trigger('edit:complete', this.toolbar); + Common.component.Analytics.trackEvent('ToolBar', 'Select All'); + }, + onIncrease: function(e) { if (this.api) this.api.FontSizeIn(); @@ -2883,7 +2893,7 @@ define([ this.toolbar.lockToolbar(Common.enumLock.disableOnStart, false); this.toolbar.lockToolbar(Common.enumLock.undoLock, this._state.can_undo!==true, {array: [this.toolbar.btnUndo]}); this.toolbar.lockToolbar(Common.enumLock.redoLock, this._state.can_redo!==true, {array: [this.toolbar.btnRedo]}); - this.toolbar.lockToolbar(Common.enumLock.copyLock, this._state.can_copycut!==true, {array: [this.toolbar.btnCopy]}); + this.toolbar.lockToolbar(Common.enumLock.copyLock, this._state.can_copycut!==true, {array: [this.toolbar.btnCopy, this.toolbar.btnCut]}); this.toolbar.lockToolbar(Common.enumLock.mmergeLock, !!this._state.mmdisable, {array: [this.toolbar.btnMailRecepients]}); if (!this._state.mmdisable) { this.toolbar.mnuMailRecepients.items[2].setVisible(this.toolbar.mode.fileChoiceUrl || this.toolbar.mode.canRequestMailMergeRecipients); diff --git a/apps/documenteditor/main/app/template/Toolbar.template b/apps/documenteditor/main/app/template/Toolbar.template index 74b46dfcc..593bd1710 100644 --- a/apps/documenteditor/main/app/template/Toolbar.template +++ b/apps/documenteditor/main/app/template/Toolbar.template @@ -25,6 +25,14 @@ +
+
+ +
+
+ +
+
diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index 843c688f9..4d543ef61 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -255,6 +255,27 @@ define([ }); this.paragraphControls.push(this.btnPaste); + this.btnCut = new Common.UI.Button({ + id: 'id-toolbar-btn-cut', + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-cut', + lock: [_set.copyLock, _set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + dataHint: '1', + dataHintDirection: 'top', + dataHintTitle: 'X' + }); + this.paragraphControls.push(this.btnCut); + + this.btnSelectAll = new Common.UI.Button({ + id: 'id-toolbar-btn-select-all', + cls: 'btn-toolbar', + iconCls: 'toolbar__icon select-all', + lock: [_set.viewFormMode, _set.disableOnStart], + dataHint: '1', + dataHintDirection: 'bottom' + }); + this.toolbarControls.push(this.btnSelectAll); + this.btnIncFontSize = new Common.UI.Button({ id: 'id-toolbar-btn-incfont', cls: 'btn-toolbar', @@ -1652,6 +1673,8 @@ define([ _injectComponent('#slot-btn-redo', this.btnRedo); _injectComponent('#slot-btn-copy', this.btnCopy); _injectComponent('#slot-btn-paste', this.btnPaste); + _injectComponent('#slot-btn-cut', this.btnCut); + _injectComponent('#slot-btn-select-all', this.btnSelectAll); _injectComponent('#slot-btn-incfont', this.btnIncFontSize); _injectComponent('#slot-btn-decfont', this.btnDecFontSize); _injectComponent('#slot-btn-bold', this.btnBold); @@ -1952,6 +1975,8 @@ define([ this.btnRedo.updateHint(this.tipRedo + Common.Utils.String.platformKey('Ctrl+Y')); this.btnCopy.updateHint(this.tipCopy + Common.Utils.String.platformKey('Ctrl+C')); this.btnPaste.updateHint(this.tipPaste + Common.Utils.String.platformKey('Ctrl+V')); + this.btnCut.updateHint(this.tipCut + Common.Utils.String.platformKey('Ctrl+X')); + this.btnSelectAll.updateHint(this.tipSelectAll + Common.Utils.String.platformKey('Ctrl+A')); this.btnIncFontSize.updateHint(this.tipIncFont + Common.Utils.String.platformKey('Ctrl+]')); this.btnDecFontSize.updateHint(this.tipDecFont + Common.Utils.String.platformKey('Ctrl+[')); this.btnBold.updateHint(this.textBold + Common.Utils.String.platformKey('Ctrl+B')); @@ -2837,7 +2862,9 @@ define([ textTabView: 'View', mniRemoveHeader: 'Remove Header', mniRemoveFooter: 'Remove Footer', - mniInsertSSE: 'Insert Spreadsheet' + mniInsertSSE: 'Insert Spreadsheet', + tipSelectAll: 'Select all', + tipCut: 'Cut' } })(), DE.Views.Toolbar || {})); }); diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index d5d34d2b4..6b57c5161 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -139,7 +139,7 @@ right: 0; top: 0; bottom: 0; - left: 525px; + left: 587px; width: inherit; height: 44px; } @@ -272,8 +272,8 @@